Skip to content

Instantly share code, notes, and snippets.

View micklinISgood's full-sized avatar

Mick Lin micklinISgood

  • Columbia University
View GitHub Profile

TimeLine

3/2 Mailed out by using USPS Priority Mail Express 1 day.

3/10 USCIS do_not_reply email for tracking number.

4/6 USCIS produced card.

4/17 USCIS mailed card.

{
"name":"Mick",
"title": "RD",
"reports" : ["123","234"]
}
@micklinISgood
micklinISgood / parseChar.cpp
Last active March 31, 2017 17:50
parseChar
#include<iostream>
using namespace std;
int main(){
char c;
c |= 1<<2;
c |= 1<<5;
//010 0100 $
/**
Binary Oct Dec Hex Glyph
010 0100 044 36 24 $
@micklinISgood
micklinISgood / launch_sublime_from_terminal.markdown
Created September 20, 2016 01:44 — forked from artero/launch_sublime_from_terminal.markdown
Launch Sublime Text 2 from the Mac OS X Terminal

Launch Sublime Text 2 from the Mac OS X Terminal

Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.

open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl

You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html

Installation