My all time favorite revenge horror, and one of my all time favorite movies in general.
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
Sign Up | |
Splash Page | |
click sign up -> Phone Number Page | |
click log in -> Login Page | |
Phone Number Page | |
back -> Splash Page | |
Phone Number Input Active* | |
typed -> Phone Number Input Entry |
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
{ | |
"1":"African-American Crime Documentaries", | |
"2":"Scary Cult Movies from the 1980s", | |
"4":"Tearjerkers from the 1970s", | |
"5":"Gay & Lesbian Psychological Movies", | |
"7":"Showbiz Movies based on real life", | |
"10":"Movies starring Pradeep Kumar", | |
"11":"Military Dramas", | |
"15":"Suspenseful British Independent Movies", | |
"16":"Understated Biographical Documentaries", |
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 node | |
var fs = require('fs'); | |
var glob = require("glob"); | |
var browserify = require('browserify'); | |
var watchify = require('watchify'); | |
var watch = require('watch'); | |
var exec = require('child_process').exec; | |
var manifestFilePath = './spec/built/manifest.js'; |
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
var Foo = require('../foo/index.js'); | |
var someClass = new SomeClass({ | |
someMethod: function () { | |
// How do I stub this without requiring it to be set on the prototype? | |
// ex: w/o having it set on someClass.baz = Foo.bar(); | |
var baz = Foo.bar(); | |
if (baz == 'hello') { | |
return 1 | |
} |
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
def sum(a, b): return a + b | |
def stringSum(s): | |
numArray = list(str(s)) | |
return reduce(sum, map(lambda s: int(s), numArray)) | |
print stringSum(2**1000) |
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 clone(obj) { | |
// Handle the 3 simple types, and null or undefined | |
if (null == obj || "object" != typeof obj) return obj; | |
// Handle Date | |
if (obj instanceof Date) { | |
var copy = new Date(); | |
copy.setTime(obj.getTime()); | |
return copy; | |
} |
Apps that aren't included that I suggest checking out and ones I use all the time. Ones with * I use all day.
- iTerm2 *
- Twitter for Mac *
- Spotify *
- Alfred *
- Caffiene
- Monosnap
- Flux (F.lux)
- OneNote
To use (assuming your mapleader is set to ) you would:
- Move to the window to mark for the swap via ctrl-w movement
- Type \mw
- Move to the window you want to swap
- Type \pw
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
$('parent').addEvent('click:relay(#child)', function () { | |
alert('test'); | |
}); | |
$('parent').fireEvent('click', { target: $('child') }); |
NewerOlder