This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Book: | |
| Computer Science: A Structured Programming Approach Using C (2nd Edition) | |
| Amazon: | |
| http://www.amazon.com/gp/product/0534374824/ref=ox_sc_act_title_1?ie=UTF8&m=A26J6JNN8TGTL9 | |
| Class: | |
| http://www.postech.ac.kr/class/cs101/html/index.html | |
| Lectures: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Intro to C: | |
| http://www.cprogramming.com/tutorial/c/lesson1.html | |
| C references: | |
| http://www.cplusplus.com/reference/clibrary/ | |
| http://www.acm.uiuc.edu/webmonkeys/book/c_guide/ | |
| The GNU C Library: | |
| http://www.gnu.org/software/libc/manual/html_node/index.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //WINDOWS INSTALLER | |
| http://code.google.com/p/go/downloads/list?q=OpSys-Windows+Type%3DInstaller | |
| //PACKAGES:FMT | |
| http://golang.org/pkg/fmt/ | |
| //RELEASE HISTORY | |
| http://golang.org/doc/devel/release.html | |
| //GROUPS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** Taken From: http://golang.org/cmd/go/ **/ | |
| //COMMANDS | |
| build compile packages and dependencies | |
| clean remove object files | |
| doc run godoc on package sources | |
| env print Go environment information | |
| fix run go tool fix on packages | |
| fmt run gofmt on package sources | |
| get download and install packages and dependencies |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //https://groups.google.com/forum/?fromgroups#!topic/golang-nuts/S9AO_kHktiY | |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "bufio" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //EXIT | |
| function Outro(dfd){ | |
| var box = $("#services"); | |
| //FOR EACH CHILD | |
| box.children().each(function(i){ | |
| $(this).delay(i*160).animate({marginTop: 150,opacity: 0}, 500,function(){ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //ENTER | |
| function Intro(){ | |
| console.log('HOMEPAGE INTRO!!!'); | |
| $('#content').animate({opacity: 1},1000,function(){ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.usasumo.com | |
| http://www.americansumo.org | |
| http://www.sumodan.com | |
| http://www.illinoissumo.com | |
| http://www.robothon.org/robothon/sumo.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //LINKS | |
| https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go | |
| https://developers.google.com/appengine/docs/go/gettingstarted/helloworld | |
| https://developers.google.com/appengine/docs/go/gettingstarted/uploading | |
| //ENV VARIABLES | |
| export GOROOT=$HOME/opt/go | |
| export GOPATH=$HOME/Desktop/GO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //YAML | |
| https://developers.google.com/appengine/docs/python/config/appconfig | |
| //STATIC FILES | |
| https://developers.google.com/appengine/docs/python/config/appconfig#Static_File_Handlers | |
| //ENVIRONMENT | |
| https://developers.google.com/appengine/docs/go/reference | |
| https://developers.google.com/appengine/docs/go/runtime | |
| https://developers.google.com/appengine/docs/go/apis |