- ironman 1
- ironman 2 - introduces tony stark's dad
- captain america - tony stark's dad has a small role
- thor - talks about the tesseract (weapon) and introduces loki
- avengers - talks about the tesseract and loki. introduces shield
- ironman 3 - tony stark has trama from the avengers fight
- captain american 2 - involves shield alot
- guardians of the galexy - has very little to do with the other movies
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
# Usage: git push origin master --yolo | |
# | |
# Because you only live once | |
function git { | |
local GIT_CMD=`whereis git` | |
for x in $@; do | |
if [[ "$x" == "--yolo" ]]; then | |
GIT_CMD="$GIT_CMD --force" |
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
// this will only affect the input fields that exist in the html prior to this code running. | |
// if your application.js file exists in the <head> tag all of your input fields come after | |
// this code runs so it doesn't see any input fields | |
$("input").on("focus", function(){ | |
console.log("at=first event=focus") | |
}); | |
// similar to at=first but uses $(document) instead of $("input") | |
$(document).on("focus", "input", function(){ | |
console.log("at=second event=focus") |
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
package bdd_test | |
import ( | |
"testing" | |
. "github.com/daneharrigan/bdd" | |
) | |
func TestSpecs(t *testing.T) { | |
defer Runner(t) |
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
(function(){ | |
var scripts = Ember.$("script[type='text/x-handlebars'][src]") | |
scripts.each(function(_, script){ | |
Ember.$.ajax({ | |
async: false, | |
url: script.src, | |
dataType: "html" | |
}).done(function(html){ | |
var name = script.getAttribute("data-template-name") || "application"; | |
Ember.TEMPLATES[name] = Ember.Handlebars.compile(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
{"V":"3","W":"1","D":"0"} | |
{"V":"5","W":"1","D":"0"} | |
{"V":"13","W":"1","D":"0"} | |
{"V":"12","W":"1","D":"0"} | |
{"V":"2","W":"1","D":"0"} | |
{"V":"6","W":"1","D":"0"} | |
{"V":"4","W":"1","D":"0"} | |
{"V":"3","W":"1","D":"0"} | |
{"V":"14","W":"1","D":"0"} | |
{"V":"7","W":"1","D":"0"} |
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
#!/usr/bin/env perl | |
# | |
# Usage: echo "key=value" | kgrep key | |
# | |
while($line = <STDIN>) { | |
if($line =~ m/($ARGV[0]+=[^\s]*)/) { | |
print "$1\n"; | |
} |
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
package main | |
import ( | |
"bytes" | |
"flag" | |
"fmt" | |
"github.com/bmizerany/aws4" | |
"io/ioutil" | |
"log" | |
"net/http" |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"time" | |
) | |
func main() { | |
count := 0 |
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
--- | |
:backtrace: false | |
:benchmark: false | |
:bulk_threshold: 1000 | |
:sources: | |
- http://rubygems.org | |
- https://heroku-internal-gems.s3.amazonaws.com/19786ce1b01a785a53f2d48d1a3d878f203bb360eb63bc29/ | |
- https://heroku-internal-gems.s3.amazonaws.com/19786ce1b01a785a53f2d48d1a3d878f203bb360eb63bc29/ | |
- https://heroku-internal-gems.s3.amazonaws.com/19786ce1b01a785a53f2d48d1a3d878f203bb360eb63bc29/ | |
- https://heroku-internal-gems.s3.amazonaws.com/19786ce1b01a785a53f2d48d1a3d878f203bb360eb63bc29/ |