Skip to content

Instantly share code, notes, and snippets.

View film42's full-sized avatar
✔️
Verified

Garrett Thornburg film42

✔️
Verified
View GitHub Profile
@film42
film42 / http_get.go
Created October 30, 2012 17:42 — forked from ijt/http_get.go
Example of using http.Get in go (golang)
package main
import (
"fmt"
"http"
"io/ioutil"
"os"
)
func main() {
@film42
film42 / app.js
Last active December 20, 2015 04:08
var App = Ember.Application.create({
});
App.ThoughtsController = Ember.ArrayController.extend({
init: function () {
var that = this;
setInterval(function() {
that.set("content", App.Thought.find({hack:"hack"}));