Skip to content

Instantly share code, notes, and snippets.

View klrkdekira's full-sized avatar

Chee Leong klrkdekira

View GitHub Profile
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"sync"
)
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
type RobinHood struct {
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
func main() {
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"sync"
)
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
func main() {
package main
import (
"fmt"
"runtime"
"sync"
)
func main() {
package main
import (
"fmt"
"sync"
)
package main
import (
"fmt"
"time"
)
func main() {
for i := 1; i <= 100; i++ {
go fizzbuzz(i)
package main
import (
"fmt"
)
@klrkdekira
klrkdekira / gist:4257faa58b03fb2edf59
Created June 16, 2014 07:38
AngularJS JQuery Hackish Example
$("button").click(function () {
// Do something here
$scope.$apply();
});