- Martin Fowler: "disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior"
- Opionated developer: renaming source files
- Minimalistic developer: removing source files
- Badass developer: rewriting everything from scratch
- Technical lead: calls it 'improving' instead, to avoid scaring the management
- Project manager: fixing previous mistakes
- Product manager: time when no new features get done
- CEO: slacking
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
var hem = new (require('hem')); | |
var less = require('less'); | |
var fs = require('fs'); | |
var argv = process.argv.slice(2); | |
var path = require('path'); | |
var util = require('util'); | |
hem.compilers.less = function (pathname) { | |
var content, result; | |
content = fs.readFileSync(pathname, 'utf8'); |
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
# factorial | |
$ = (_) -> | |
__ = _ | |
--__ && _ = _ * $ __ | |
_ | |
# each | |
$$ = (_, __) -> |
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
loop alert eval prompt() |
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
function timeit(fn) { | |
console.time(fn.name); | |
fn.apply(null, [].slice.call(arguments, 1).map(function (arg) { | |
if (arg === timeit.done) return function () { console.timeEnd(fn.name); } | |
else return arg; | |
})); | |
} | |
timeit.done = function () {}; |
This Gist: http://is.gd/dokkudjango
DigitalOcean: https://www.digitalocean.com/
Dokku: https://github.com/progrium/dokku
Dokku-Postgres: https://github.com/Kloadut/dokku-pg-plugind
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
import odd from './odd'; | |
export default function even(n) { | |
if (n === 0) { | |
return true; | |
} | |
return !odd(n - 1); | |
} |
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/env babel-node --optional es7.asyncFunctions | |
import fs from 'fs'; | |
import path from 'path'; | |
import fetch from 'isomorphic-fetch'; | |
import { introspectionQuery } from 'graphql/utilities'; | |
const url = 'http://localhost:5000'; |
This is a proposal for a lightning talk at the Reactive 2015 conference.
NOTE: If you like this, star ⭐ the Gist - the amount of stars decides whether it makes the cut!
Relay makes data fetching in React apps simpler, by letting you declare the data needs of your components instead of writing complex imperative code. React, Relay, GraphQL and the other complementary tools are changing how apps are built.
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
[ | |
{ | |
"name": "TvSeason", | |
"kind": "OBJECT", | |
"interfaces": [ | |
"Node" | |
], | |
"fields": [ | |
{ | |
"name": "air_date", |
OlderNewer