Skip to content

Instantly share code, notes, and snippets.

Resurrection Remix ROM
Source Code: http://github.com/ResurrectionRemix
Website: http://www.resurrectionremix.com
For extended changelog, track github activities
The Changelog
# Resurrection Remix Lollipop 5.1.1 - v5.5.4
@learningjs
learningjs / introrx.md
Created October 2, 2015 00:35 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
int[][] result;
float t, c;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
float ease(float p, float g) {
if (p < 0.5)
return 0.5 * pow(2*p, g);
@learningjs
learningjs / sketch.js
Created December 2, 2015 14:40
p5xjs interactive wave
//https://twitter.com/aatishb/status/671905190367338496
//http://www.princeton.edu/~aatishb/processing/wavemaker/
//http://www.princeton.edu/~aatishb/processing/wavemaker/sketch.js
var x, y;
var t = 0;
var phase;
var signx,signy;
@learningjs
learningjs / d3.sankey.js
Created December 6, 2015 14:50 — forked from emeeks/d3.sankey.js
Sankey Particles III
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;
@learningjs
learningjs / README.md
Created December 6, 2015 14:51 — forked from mbostock/.block
Wave Motion

A recreation of a lovely GIF by Dave Whyte. As the Exploratorium explains, “Wave motion at the surface of water is made up of small circular motions of parcels of water.”

Folder Structure

Motivations

  • Clear feature ownership
  • Module usage predictibility (refactoring, maintainence, you know what's shared, what's not, prevents accidental regressions, avoids huge directories of not-actually-reusable modules, etc)
//http://www.mybridge.co/view/8462
//Find the important things in complex debugging
console.todo = function( msg){
console.log( '%c %s %s %s ', 'color: yellow; background-color: black;', '--', msg, '--');
}
console.important = function( msg){
console.log( '%c%s %s %s', 'color: brown; font-weight: bold; text-decoration: underline;', '--', msg, '--');
}
console.todo("This is something that's need to be fixed");
console.important('This is an important message');
@learningjs
learningjs / config
Created December 13, 2015 01:46
i3wm config
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout somewhen, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
@learningjs
learningjs / 12-days.js
Created December 28, 2015 04:03 — forked from addyosmani/12-days.js
12 Days of Christmas in ES2015 - paste this into your DevTools console!
// adapted from https://tonicdev.com/n3dst4/twelve-days-of-emoji
// full credit to n3dst4. I just rewrote this to be browser developer tools friendly.
const pressies = [
"🐦🍐🌳",
"🐢🐦",
"🇫🇷🐔",
"📞🐦",
"💛💍",
"🐦🍳 ",
"🐦🏊",