Skip to content

Instantly share code, notes, and snippets.

View awong1900's full-sized avatar
🎯
Focusing

JumpTen awong1900

🎯
Focusing
View GitHub Profile
## USD 格式 特色
@jacobrosenthal
jacobrosenthal / .travis.yml
Created April 1, 2015 07:04
Arduino command line travis testing
# Test build your arduino libraries with travis and the official arduino tool chain
# assumes directory structure
# /NullStream
# NullStream.h
# NullStream.cpp
# examples
# NullStreamExample
# NullStreamExample.ino
@guweigang
guweigang / git_toturial
Last active April 23, 2024 02:55
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "xxx@xxx.com" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global --unset http.proxy # remove proxy configuration on git
git clone git+ssh://git@192.168.53.168/VT.git # clone远程仓库
@bootandy
bootandy / tornado_mongo.py
Last active December 15, 2016 17:49
Very simple sample code of tornado and mongodb
from datetime import datetime
from pymongo.connection import Connection
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define, options