Skip to content

Instantly share code, notes, and snippets.

ddoollooodddxxxxddollodxxdllodoooodddoddlcldddddddooddoodddddollllldxxdddooo
xdxxxddddlloxxxxxxxdddxxxxodxdooooddddddoodddddddddddddddddddolloddxxxxxdood
xddddxxddooloooodxxxxdxxxxxxxoloddddddddddddddddddddddddddddddddxxxdoddddodd
ddllooddddolllooxxxxdxxxxdxxddddddddddddddddddxdddxddddddxxdddddxxxdloxxxxxx
lloddddddoodddxxxxxxxxxxxdddddddddddddddddddddddddxxddddxxddddddddddoodxxxxx
ooddolooooodxxxxdoodddddddddddddddddddddddddxdxxxdxxxdddddddddddxdxxoodxxdxd
ddxdolloddoodddddodddddddddoddddddddxdddxxxxxddxxddxxxddxxdddddddddxxxxdddxd
xdxdoloodxdooodddxdddddddddodddxxxdxxdddxdddddddddddddddddddddddddddxxxddddd
dddddxdlloddddxddxdddddddddddddxxxxxxdddxxdddddddddddddddddddddddxdddddddddd
lllodxdllllodxxxddddddddddddddddxxxxdddddddddddddddddddddddddddddddddxxddddd
@w33ble
w33ble / Planning.md
Last active August 29, 2015 14:14
Enhance Planning and Post-mortem Notes

Enhance

Technology

  • Webpack
    • Web Components - webcomponents.js
    • ES6 - 6to5 transpiler
    • Less
  • Page.js
@w33ble
w33ble / book_of_chris.md
Last active August 29, 2015 14:15
The Book of Chris™
  • Templates are not a separation of concerns, it's a separation of technologies
  • Smart people look things up, dumb people make things up

Stuff that happened at work

  • Weekly meeting where we share useful tech & tips
  • Arguing about these buttons is like looking at a witch and arguing about removing a single wart
  • The coffee nap
  • Eventually consistent = eventually messed up
  • "Making Charts and Breaking Hearts!"
@w33ble
w33ble / 1-instructions_1.8.md
Last active August 29, 2015 14:17
Minecraft Mods
@w33ble
w33ble / gist:3124943
Created July 16, 2012 20:48
bashrc with git ps1
WHITE="\[\033[00m\]"
BLACK="\[\033[01;30m\]"
RED="\[\033[0;31m\]"
LIGHT_RED="\[\033[1;31m\]"
GREEN="\[\033[0;32m\]"
LIGHT_GREEN="\[\033[1;32m\]"
YELLOW="\[\033[0;33m\]"
BLUE="\[\033[0;34m\]"
PURPLE="\[\033[0;35m\]"
CYAN="\[\033[0;36m\]"
@w33ble
w33ble / gist:4121706
Created November 20, 2012 22:32
blah
function DatastoreQueuePlugin(config) {
// console.log(config, Y.DataSource.Local.transactions);
this._ds = config.host;
console.log(this._ds, this._ds._queue);
this.transactions = [];
this._ds.on('request', this.add, this);
this._ds.on('response', function(e) {
@w33ble
w33ble / gist:4506327
Created January 10, 2013 22:22
Ooyala import
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:fh="http://purl.org/syndication/history/1.0"
xmlns:ooyala="http://www.ooyala.com/mrss/">
<channel>
<item>
<media:content url="http://media.sheknows.com/videos/mommalogues-hd/[ML]_Most_Beautiful_Age_Cindy_720.mp4" />
<media:title>At what age or stage in your life did you feel the most beautiful and why? - Cindy</media:title>
<media:thumbnail url="http://media.sheknows.com/videos/mommalogues-hd/ml__most_beautiful_cindy_thumb.jpg" />
@w33ble
w33ble / gist:4667960
Created January 29, 2013 21:17
lftp with node's child_process, in coffeescript
cp = require 'child_process'
options = [
'-e', '''"ls
cd dir
ls
bye"'''
'-u', 'username,password',
'hostname'
]
@w33ble
w33ble / 1 - grid.styl
Last active December 12, 2015 08:08
Stylus import workflow
// This is just the stylesheet from semantic.gs, with the body style removed
@w33ble
w33ble / 1.css
Last active December 12, 2015 08:08
Responsive with Stylus
#thing1 {
display: inherit;
background-color: #f00;
}
@media (max-width: 767px) {
#thing1 {
display: none !important;
}
}
#thing2 {