Skip to content

Instantly share code, notes, and snippets.

@jafstar
jafstar / cbook.txt
Created June 10, 2012 23:42
Computer Science: A Structured Programming Approach Using C (2nd Edition)
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:
@jafstar
jafstar / learnC.txt
Created June 10, 2012 23:51
Learn C pt1
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
//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
@jafstar
jafstar / GoCheat.txt
Created June 19, 2012 03:09
Go Cheat Sheet
/** 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
@jafstar
jafstar / gohello.go
Created June 19, 2012 03:50
Go - Hello World
//https://groups.google.com/forum/?fromgroups#!topic/golang-nuts/S9AO_kHktiY
package main
import (
"fmt"
"os"
"bufio"
)
@jafstar
jafstar / outro.js
Created June 21, 2012 02:24
Limelight Outro v1
//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(){
@jafstar
jafstar / Intro.js
Created June 21, 2012 02:25
Limelight Intro v1
//ENTER
function Intro(){
console.log('HOMEPAGE INTRO!!!');
$('#content').animate({opacity: 1},1000,function(){
@jafstar
jafstar / sumo.txt
Created June 25, 2012 02:51
Sumo Links
http://www.usasumo.com
http://www.americansumo.org
http://www.sumodan.com
http://www.illinoissumo.com
http://www.robothon.org/robothon/sumo.php
@jafstar
jafstar / HelloGo.txt
Last active February 4, 2018 16:08
Hello Go
//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
@jafstar
jafstar / goAppEngine.txt
Created June 26, 2012 08:24
Go App Engine
//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