Skip to content

Instantly share code, notes, and snippets.

View uzysjung's full-sized avatar

Jaehoon Jung uzysjung

View GitHub Profile
@lrdiv
lrdiv / nextlot.scpt
Created December 6, 2015 07:19
Scripting iTerm 2
(* Note: `cdnr` and `cdnem` are custom aliases for this project *)
tell application "iTerm"
(* Creates a new window for our project *)
set newWindow to (create window with default profile)
select first window
tell the current window
(* cd to rails directory and start server *)
activate current session
@firejune
firejune / .eslintrc
Created January 25, 2016 08:31
ESLint
{
/**
* ECMA 요구사항
*/
"ecmaFeatures": {
"jsx": true,
"modules": true,
"experimentalObjectRestSpread": true
},