Skip to content

Instantly share code, notes, and snippets.

@codeursenior
codeursenior / 00.Apprendre NodeJS : Extraits de code
Last active March 19, 2024 07:26
Apprendre NodeJS : Extraits de code
Apprendre NodeJS : Extraits de code
@CaptainVincent
CaptainVincent / README.md
Last active March 19, 2024 07:25
Improve your vscode quickinput-widget

Customize your quickinput-widget

This is a small tool designed to emulate the Sublime style Command Palette as follows.

Screenshot

It requires the use of a specific extension to load the js file from this gist.

I'm using the APC extension, and the usage is as follows.

@cls
cls / dissre.py
Last active March 19, 2024 07:22
Python regular expression bytecode disassembler
import re
import sre_compile
import sre_parse
from sre_constants import *
opcodes = dict((v,k) for (k,v) in OPCODES.items())
atcodes = dict((v,k) for (k,v) in ATCODES.items())
chcodes = dict((v,k) for (k,v) in CHCODES.items())
def print_dis(s, indent):
@amartyadash
amartyadash / ros2_stuff.md
Last active March 19, 2024 07:21
Contains details about ROS2 using docker and ROS1-ROS2 Bridge

ros2_stuff

ROS2 with Docker

Installing Docker

This page has easy to follow instructions to install Docker on Ubuntu or you could take a look at the Docker documentation.

Docker image for ROS2

Installation & Use

Pull the ROS docker image with tag “dashing-desktop”:

Estimation

This document is an attempt to pin down all the things you don't think about when quoting for a project, and hopefully provide a starting point for some kind of framework to make quoting, working and delivering small-medium jobs more predictable and less stressful.

Contents

@Y2Kai
Y2Kai / BOLT.md
Created March 19, 2024 07:13 — forked from the7day/BOLT.md
迅雷BOLT界面引擎索引

boltstack开源项目:


地址:https://github.com/fanfeilong/boltstack

BOLT最常用文档有哪些?


  • 这里是官方整理过的FAQ,可逐条细读。
  • 这里是官方文档,左侧目录树好好利用,最好的办法就是对左侧目录树烂熟于胸,要查相关文档的时候就会很高效快捷。
  • 这里是非官方的文档压缩包,可能会过时(在线文档会及时更新内容),不过需要的同学可以试用。
  • 这里是非官方的思维导图,可以对照上一条的文档目录树,加深对BOLT体系层次结构的理解。
@stevdza-san
stevdza-san / RequestState.kt
Created March 16, 2024 09:28
Useful wrapper class for handling the data in Jetpack Compose
import androidx.compose.animation.AnimatedContent
import androidx.compose.animation.core.tween
import androidx.compose.animation.fadeIn
import androidx.compose.animation.fadeOut
import androidx.compose.animation.togetherWith
import androidx.compose.runtime.Composable
sealed class RequestState<out T> {
data object Idle : RequestState<Nothing>()
data object Loading : RequestState<Nothing>()
@the7day
the7day / BOLT.md
Created September 25, 2015 00:10 — forked from fanfeilong/BOLT.md
迅雷BOLT界面引擎索引

boltstack开源项目:


地址:https://github.com/fanfeilong/boltstack

BOLT最常用文档有哪些?


  • 这里是官方整理过的FAQ,可逐条细读。
  • 这里是官方文档,左侧目录树好好利用,最好的办法就是对左侧目录树烂熟于胸,要查相关文档的时候就会很高效快捷。
  • 这里是非官方的文档压缩包,可能会过时(在线文档会及时更新内容),不过需要的同学可以试用。
  • 这里是非官方的思维导图,可以对照上一条的文档目录树,加深对BOLT体系层次结构的理解。
@lucasalvessouza
lucasalvessouza / install_postaman.sh
Created February 19, 2019 19:47
Install postman fedora
#!/bin/bash
wget https://dl.pstmn.io/download/latest/linux64 -O postman-linux-x64.tar.gz
sudo tar xvzf postman-linux-x64.tar.gz -C /opt
sudo ln -s /opt/Postman/Postman /usr/bin/postman
cat << EOF > ~/.local/share/applications/postman2.desktop
[Desktop Entry]
Name=Postman
GenericName=API Client