Skip to content

Instantly share code, notes, and snippets.

View ivanvanderbyl's full-sized avatar
🏔️

Ivan Vanderbyl ivanvanderbyl

🏔️
View GitHub Profile
@ivanvanderbyl
ivanvanderbyl / Brocfile.js
Created February 4, 2015 20:34
Tomster compatible brocfile
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var app = new EmberApp({
fingerprint: {
prepend: process.env.ASSETS_PREPEND
}
});
@ivanvanderbyl
ivanvanderbyl / styles.css
Created January 2, 2015 17:50
Backlog style sheet
html, body {
padding: 0;
margin: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-webkit-font-smoothing: antialiased;
background-color: #D9D9D9;
color: #2C3E50;
font-family: Roboto, sans-serif;
font-size: 1em;
@ivanvanderbyl
ivanvanderbyl / create_droplet.sh
Last active August 29, 2015 14:08
Launching Docker 1.3 Droplets on DigitalOcean
#!/bin/bash
# Usage:
# bash ./create_droplet.sh 10 MY_TOKEN
MAX_DROPLETS=$1
TOKEN=$2
create_droplet() {
curl -X POST "https://api.digitalocean.com/v2/droplets" \
Wordlist ver 0.732 - EXPECT INCOMPATIBLE CHANGES;
acrobat africa alaska albert albino album
alcohol alex alpha amadeus amanda amazon
america analog animal antenna antonio apollo
april aroma artist aspirin athlete atlas
banana bandit banjo bikini bingo bonus
camera canada carbon casino catalog cinema
citizen cobra comet compact complex context
credit critic crystal culture david delta
dialog diploma doctor domino dragon drama
@ivanvanderbyl
ivanvanderbyl / keybase.md
Created June 24, 2014 15:29
Keybase proof

Keybase proof

I hereby claim:

  • I am ivanvanderbyl on github.
  • I am ivanv (https://keybase.io/ivanv) on keybase.
  • I have a public key whose fingerprint is 2172 C1EB 0089 7CC3 ED35 FC72 510B F7F1 CEEC 1666

To claim this, I am signing this object:

@ivanvanderbyl
ivanvanderbyl / gist:10765053
Last active August 29, 2015 13:59 — forked from tomdale/gist:8176366
Life-changing Room for Rent

Life-changing Room for Rent

Man, doesn't the San Francisco real estate market suck? Everything is tiny and expensive, and if you're new to the city, I bet you're feeling really overwhelmed.

But good news! Available for one lucky person is the opportunity to rent a room in a huge (by SF standards) house in Noe Valley with two of the most awesome housemates you could ask for.

Sound awesome? Let's get down to brass tacks:

  • $1500 per month for rent (not including utilities)
  • Available June 23rd.
  • $950 refundable security deposit.
@ivanvanderbyl
ivanvanderbyl / main.go
Created March 28, 2014 00:05
SSL static file server
package main
import (
"log"
"net/http"
)
func main() {
http.Handle("/versions/", http.StripPrefix("/versions/", http.FileServer(http.Dir("/tmp"))))
log.Printf("About to listen on 10443. Go to https://127.0.0.1:10443/")
@ivanvanderbyl
ivanvanderbyl / gist:8017601
Created December 18, 2013 05:17
LogEntries install log
Ign http://rep.logentries.com raring Release
Ign http://rep.logentries.com raring/main amd64 Packages/DiffIndex
Ign http://rep.logentries.com raring/main i386 Packages/DiffIndex
Hit http://rep.logentries.com raring/main amd64 Packages
Hit http://rep.logentries.com raring/main i386 Packages
Ign http://rep.logentries.com raring/main Translation-en_AU
Ign http://rep.logentries.com raring/main Translation-en
Fetched 490 B in 4min 5s (1 B/s)
Reading package lists... Done
root@zebra-mel-01:/home/deploy#
@ivanvanderbyl
ivanvanderbyl / Gemfile
Last active December 11, 2015 23:38
A simple rake task to update Ember and Ember Data to a build from master. (requires ember-rails)
group :development do
gem "rake-pipeline", :git => "https://github.com/livingsocial/rake-pipeline.git"
gem "rake-pipeline-web-filters", :git => "https://github.com/wycats/rake-pipeline-web-filters.git"
gem 'colored'
end
@ivanvanderbyl
ivanvanderbyl / Apps.md
Last active December 11, 2015 19:09
Kickfolio API V1 documentation

List all Apps GET /api/apps

  • GET /api/apps returns a collection of Apps.

Parameters

  • ids Optional Array: An array of IDs to filter the collection. Designed to work with Ember Data bulk loading.

Response