This file contains 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
#000000 | |
#000f17 | |
#001e1c | |
#002b00 | |
#0037ca | |
#004473 | |
#005160 | |
#005e53 | |
#006b3d | |
#007800 |
This file contains 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 | |
DAYS_SINCE_LAST_CHANGE=14 # If a project hasn't been touched in this long its node_modules will be deleted | |
SEARCH_PATH="./Git" # Update this to the path where your code is stored | |
TOTAL_BYTES_REMOVED=0 | |
Mb=1000000 | |
Kb=1000 | |
node_modules=$(find $SEARCH_PATH -name "node_modules" -type d -prune) |
This file contains 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
TabTimerState | |
NotStarted | |
tabActivated -> SetTimer | |
TabTimerTicking | |
tabDeactivated -> TimerPaused | |
timerExpired -> TimerWaitingToReset | |
timerReset -> TabTimerTicking | |
deactivateTimers -> NotStarted | |
TimerPaused | |
tabActivated -> TabTimerTicking |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am zephraph on github. | |
* I am zephraph (https://keybase.io/zephraph) on keybase. | |
* I have a public key ASD1RxP1w5y9jQgHhB6PxWD5KmyzeRSyO0CG2C4gMdiAFQo | |
To claim this, I am signing this object: |
This file contains 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/python | |
# This file should live at ~/.git/hooks | |
import os | |
from subprocess import call | |
if "git/work" in cwd: | |
print "Using work account" | |
call("git config user.name <Your name>", shell=True) |
This file contains 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
const streamify = (tree) => | |
pipe( | |
keys, | |
filter(key => tree.hasOwnProperty(key)), | |
map(key => ({ | |
[`${key}$`]: typeof tree[key] === 'function' && typeof tree[key].then === 'function' | |
? (...args) => K.fromPromise(tree[key].apply(null, args)) | |
: typeof tree[key] === 'object' | |
? streamify(tree[key]) | |
: tree[key] |
This file contains 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
<div class="capsule"> | |
<header class="capsule__header"> | |
<h1 class="capsule__headline">What We're Loving Now</h1> | |
<a class="capsule__cta" href="#">See More!</a> | |
<p class="capsule__description">A few of the things we like</p> | |
</header> | |
<section class="capsule__content"> | |
This file contains 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
<div class="capsule"> | |
<header class="capsule__header"> | |
<h1 class="capsule__headline">What We're Loving Now</h1> | |
<a class="capsule__cta" href="#">See More!</a> | |
<p class="capsule__description">A few of the things we like</p> | |
</header> | |
<section class="capsule__content"> | |
This file contains 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
<div class="EditorialPromo EditorialPromo--3up"> | |
<header class="Header"> | |
<h1 class="Header-headline">What We're Loving Now</h1> | |
<a class="Header-cta" href="#">See More!</a> | |
<p class="Header-description">A few of the things we like</p> | |
</header> | |
<ul class="MediaList"> | |
This file contains 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
<div class="EditorialPromo"> | |
<header class="EditorialPromo-headline"> | |
Editorial Promo | |
</header> | |
</div> |