(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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 |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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); |
//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; |
d3.sankey = function() { | |
var sankey = {}, | |
nodeWidth = 24, | |
nodePadding = 8, | |
size = [1, 1], | |
nodes = [], | |
links = []; | |
sankey.nodeWidth = function(_) { | |
if (!arguments.length) return nodeWidth; |
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.”
//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'); |
# 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! |
// 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 = [ | |
"🐦🍐🌳", | |
"🐢🐦", | |
"🇫🇷🐔", | |
"📞🐦", | |
"💛💍", | |
"🐦🍳 ", | |
"🐦🏊", |