Skip to content

Instantly share code, notes, and snippets.

View kanokkorn's full-sized avatar
💤
Sleeping

kanokkorn kanokkorn

💤
Sleeping
View GitHub Profile
@kanokkorn
kanokkorn / gist:44174792cda99c1f2281535446acdec8
Last active December 29, 2016 06:44 — forked from chrismeyersfsu/gist:3270358
Arduino Poor man's oscilloscope
#define ANALOG_IN 0
void setup() {
Serial.begin(115200);
}
void loop() {
int val = analogRead(ANALOG_IN);
Serial.write( 0xff );
Serial.write( (val >> 8) & 0xff );
@kanokkorn
kanokkorn / tmux-cheatsheet.markdown
Created November 30, 2018 07:49 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname