Skip to content

Instantly share code, notes, and snippets.

View Seondong's full-sized avatar

Sundong Kim Seondong

View GitHub Profile
@Seondong
Seondong / index.html
Last active December 30, 2015 02:13
Hello_World
<!DOCTYPE html>
<meta charset="utf-8">
Hello, world!
@Seondong
Seondong / README.md
Last active December 29, 2015 16:59
Force-Directed Graph

Clone of MBostock's gist......

@Seondong
Seondong / doSum.js
Created September 4, 2015 07:05
doSum
/** gist tutorial with sublime text 2
Source: https://medium.com/@cookatrice/sublime-text2%EC%99%80-gist%EB%A1%9C-%EA%B9%94%EB%81%94%ED%95%98%EA%B2%8C-code-snippet%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%B4-%EB%B4%85%EC%8B%9C%EB%8B%A4-2518f23ce606
1. Generate Github token
2. Put your token information on the first parameter in Sublime Text2 -> Packages -> Gist -> Gist.sublime-settings
3. Check your snippet on http://gist.github.com/yourId
4. Can use this snippet by clicking it, and copy Embed URL
4.1. Test at Fiddle (http://fiddle.jshell.net/)
Sublime Command
@Seondong
Seondong / doSum.js
Created September 4, 2015 07:01
doSum
/** gist tutorial with sublime text 2
Source: https://medium.com/@cookatrice/sublime-text2%EC%99%80-gist%EB%A1%9C-%EA%B9%94%EB%81%94%ED%95%98%EA%B2%8C-code-snippet%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%B4-%EB%B4%85%EC%8B%9C%EB%8B%A4-2518f23ce606
1. Generate Github token
2. Put your token information on the first parameter in Sublime Text2 -> Packages -> Gist -> Gist.sublime-settings
3. Check your snippet on http://gist.github.com/yourId
4. Can use this snippet by clicking it, and copy Embed URL
4.1. Test at Fiddle (http://fiddle.jshell.net/)
Sublime Command
@Seondong
Seondong / doSum.js
Created September 4, 2015 07:00
doSum
/** gist tutorial with sublime text 2
Source: https://medium.com/@cookatrice/sublime-text2%EC%99%80-gist%EB%A1%9C-%EA%B9%94%EB%81%94%ED%95%98%EA%B2%8C-code-snippet%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%B4-%EB%B4%85%EC%8B%9C%EB%8B%A4-2518f23ce606
1. Generate Github token
2. Put your token information on the first parameter in Sublime Text2 -> Packages -> Gist -> Gist.sublime-settings
3. Check your snippet on http://gist.github.com/yourId
Sublime Command
1. Package Control: Ctrl + shift + p command
1.1. Syntex: JavaScript (depending on the snippet - easy to see in Sublime)
@Seondong
Seondong / doSum.js
Created September 4, 2015 06:55
doSum
/** gist tutorial with sublime text 2 **/
function doSum(a,b){
return a+b;
}