Skip to content

Instantly share code, notes, and snippets.

View jmdfm's full-sized avatar
💭
😺

John McDowall jmdfm

💭
😺
View GitHub Profile
# config/routes.rb
resources :documents do
resources :versions, controller: "documents/versions" do
post :restore, on: :member
end
resource :lock, controller: "documents/locks"
end
""" Usage: python diff.py FILE1 FILE2
A primitive `diff` in 50 lines of Python.
Explained here: http://pynash.org/2013/02/26/diff-in-50-lines.html
"""
def longest_matching_slice(a, a0, a1, b, b0, b1):
sa, sb, n = a0, b0, 0
runs = {}
@jmdfm
jmdfm / introrx.md
Last active August 29, 2015 14:07 — forked from staltz/introrx.md

The introduction to Reactive Programming you've been missing

(by @andrestaltz)

So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).

Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:

Rx.Observable.prototype.flatMapLatest(selector, [thisArg])

Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.

#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
@jmdfm
jmdfm / gist:a347fdba12a7032f116e
Last active August 29, 2015 14:14
Ember-CLI Build Failed Bug
If you've just made a new Ember-CLI project and run `ember test` or `ember serve` you're going to
see this error message:
version: 0.1.11
Could not find watchman, falling back to NodeWatcher for file system events
Build failed.
Cannot call method 'slice' of null
TypeError: Cannot call method 'slice' of null
at version (/Users/jmd/code/projects/ember-cli-6to5/node_modules/ember-cli-app-version/node_modules/git-repo-version/index.js:15:42)
at Class.module.exports.config (/Users/jmd/code/projects/ember-cli-6to5/node_modules/ember-cli-app-version/index.js:10:46)
@jmdfm
jmdfm / gist:0a69281a6a37e84f8b69
Created April 1, 2015 22:12
This media query kills Safari dead.
This is valid as far as I can see, but Safari will stop parsing any CSS afterwards
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 200dpi), only screen and (min-resolution: 1.25dppx) {
-webkit-font-smoothing: subpixel-antialiased;
}
@jmdfm
jmdfm / Makefile
Last active August 29, 2015 14:18 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
# author: tmwhere.com
# --- third party dependencies
PIXI = require('pixi.dev')
_ = require('lodash')
noise = require('perlin').noise
Quadtree = require('quadtree').Quadtree
seedrandom = require('seedrandom')
# ---
@jmdfm
jmdfm / .vimrc
Created October 31, 2015 02:05 — forked from pushcx/.vimrc
My config file
" preliminaries {{{
" vim: foldmethod=marker
set nocompatible " real ultimate power
let mapleader=","
call pathogen#infect()
syntax on
filetype plugin indent on
@jmdfm
jmdfm / renderDoctor.js
Created October 4, 2016 19:18 — forked from timhwang21/renderDoctor.js
Diagnose inefficient renders by identifying "changed" props that are actually equal
import React from "react";
import { isEqual } from "underscore";
/**
* HOC for diagnosing unnecessary renders and identifying faulty selectors
*
* Adds a logger function to a component that lists all changed props
* Also checks if changed props are deeply equal
*
* Usage: Decorate the component you are investigating with renderDoctor: