Skip to content

Instantly share code, notes, and snippets.

View dylanpyle's full-sized avatar
🏔️

Dylan Pyle dylanpyle

🏔️
View GitHub Profile
@dylanpyle
dylanpyle / gist:4438054
Last active February 25, 2024 19:52
Want to start or build a fashion brand? Visit https://ca.la
["0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
@dylanpyle
dylanpyle / queue.js
Created March 18, 2013 20:24
Backbone.Sync with request queueing.
(function(){
var originalSync = Backbone.sync,
requestQueue = [];
var processQueue = function(){
var req = requestQueue.shift();
if (!req) return;
var sync = originalSync.call(Backbone, req.method, req.model, req.options);
sync.done(processQueue);
@dylanpyle
dylanpyle / scale.sh
Last active December 21, 2015 03:59
#!/bin/bash
echo -n "Source file pattern (e.g. ~/photos/*.jpg): "
read source_pattern
echo -n "Destination path: "
read destination
destination=`eval echo $destination` # Expand to absolute path
echo -n "Desired scale (e.g. 1920x1080): "
ffmpeg -r 30 -qscale 0 -start_number 10 -i G0016%03d.jpg ~/timelapse.mp4
<!doctype html>
<html>
<head>
<style>
html {
overflow-x: hidden !important;
}
body {
font-size: 18px;
overflow-x: hidden !important;

Keybase proof

I hereby claim:

  • I am dylanpyle on github.
  • I am pyle (https://keybase.io/pyle) on keybase.
  • I have a public key whose fingerprint is A1B1 E9B0 1C14 65B4 966A 35B8 9F6C 3CEE 32B1 B367

To claim this, I am signing this object:

{
"0 year old": [
"virgin",
"baby",
"games",
"doing gymnastics",
"virgin cast",
"tantrum"
],
"1 year old": [
$ go run test.go
laHquq
$ ruby test.rb
laHquq
$ node test.js
laHquq
$ cat test.go
coffee> ({ a: 1, b: 2, c: 3}).should.have.properties({ a: 1, b: 2 })
(success)
coffee> ({ a: 1, b: 2, c: 3}).should.have.properties({ a: 1, b: 3 })
AssertionError: expected { a: 1, b: 2, c: 3 } to have property b of 3 (got 2)
coffee> ({ a: 1, b: 2, c: 3}).should.have.containEql({ a: 1, b: 2 })
(success)
coffee> ({ a: 1, b: 2, c: 3}).should.have.containEql({ a: 1, b: 3 })
### Initial situation: branch `develop` has one commit ("Initial Commit")
$ git checkout -b first develop
$ echo 'First content' > README.md
$ git add .
$ git commit -m 'First content'