- Bill Callahan - Dream River
Standout track: Small Plane
- Daft Punk - Random Access Memories
Standout track: Get Lucky
- David Bowie - The Next Day
Standout track: Where Are We Now?
- Arctic Monkeys - AM
Standout track: R U Mine?
- John Grant - Pale Green Ghosts
Standout track: Glacier
- Deerhunter - Monomania
Standout track: Monomania
- Mark Kozelek & Jimmy Lavalle - Perils From The Sea
Standout track: Gustavo
- Vampire Weekend - Modern Vampires Of The City
Standout track: Step
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
Frances ha | |
the worlds end | |
the broken circle breakdown | |
the bling ring | |
pain and gain | |
the great beauty | |
(kate) blue jasmine | |
nebraska | |
beyond the hills | |
the great gatsby |
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
// | |
// Expand various image providers, without having a lot of duplicate code. | |
// | |
// Install by hand, like an animal, or use [gasoline](https://github.com/pjaspers/gasoline) | |
// | |
Campfire.UniversalImageExpander = Class.create({ | |
initialize: function(chat) { | |
this.chat = chat; | |
this.services = { | |
dribbble: /^https?:\/\/[www.]?dribbble.com\/shots\/([A-Za-z0-9]+)/, |
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
Geachte, | |
De bedragen die u in rekening worden gebracht zijn helemaal niet | |
willekeurig, het feit dat u in de complexe regelgeving a.h.w. door de | |
bomen het bos niet meer ziet, draagt uiteraard wel bij tot het gevoel | |
van schijnbare willekeur. Ik probeer even wat licht in de duisternis | |
te werpen. | |
Zodra uw pakket de EU binnenkomt, rust er een belastingschuld op de | |
goederen. Hoe die schuld er precies uit ziet, waaruit die is |
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
#!/bin/bash | |
D=/Applications/Xcode.app/Contents/Developer/Library/Frameworks | |
OBJC=`awk '/^__OBJC__/ {print NR + 1; exit 0; }' $0` | |
RUBIES=`awk '/^__RUBY__/ {print NR + 1; exit 0; }' $0` | |
APP=`tail -n+$RUBIES $0` | |
# I moved the actual tests to another file | |
cat tests.x > /tmp/YOLOtests.m |
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
000787466 @bramus | |
006904094 @inferis | |
008093150 @tomklaasen | |
010686174 @to1ne | |
011006380 @tijs | |
023055424 @crahan | |
063846821 @junkiesxl | |
075540649 @maxvoltar | |
084511154 @atog | |
102812969 @nilo |
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 ruby | |
require "yaml" | |
require "pathname" | |
banner = <<BANNER | |
Looks for a config/database.yml file and supplies the command to get a | |
database dump/import. (mysql or postgres) | |
dumper <rails_env> |
I hereby claim:
- I am pjapsers on github.
- I am pjaspers (https://keybase.io/pjaspers) on keybase.
- I have a public key whose fingerprint is 55A7 095C 045A 5B11 76F5 9875 1FA2 68F4 5359 D229
To claim this, I am signing this object:
I hereby claim:
- I am pjaspers on github.
- I am pjaspers (https://keybase.io/pjaspers) on keybase.
- I have a public key whose fingerprint is 55A7 095C 045A 5B11 76F5 9875 1FA2 68F4 5359 D229
To claim this, I am signing this object:
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
import UIKit | |
class ATPLogoView: UIView { | |
override func drawRect(dirtyRect: CGRect) { | |
let fontName = "MyriadPro-Semibold" | |
let title = "Accidental Tech Podcast" | |
let initials = "ATP" | |
let rect = CGRectMake(CGPointZero.x, CGPointZero.y, self.bounds.size.height, self.bounds.size.width) | |
let w = rect.size.width | |
let offsetY = w * -0.07 |