(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.
(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.
/* | |
Copyright (c) 2014 Michael Polyak. All Rights Reserved. | |
[email protected] | |
HighSea v2.7.6 | |
*/ | |
if (this.queue === undefined) | |
{ |
/** | |
* NinePatchGroup | |
* | |
* @author Negue | |
* @extends {Phaser.Group} | |
* @param game | |
* @constructor | |
*/ | |
var NinePatchGroup = function (game, x, y, targetWidth, targetHeight, imageKey) { | |
Phaser.Group.call(this, game); |
// ========================================================== | |
// Unit Conversion | |
// ========================================================== | |
// | |
// Functions: | |
// ---------------------------------------------------------- | |
// | |
// NUMBER: | |
// | |
// isNaN($value) - returns true or false if type-of($value)==number |
require 'rubygems' | |
require 'mechanize' | |
FIRST_NAME = 'FIRST_NAME' | |
LAST_NAME = 'LAST_NAME' | |
PHONE = 'PHONE' | |
EMAIL = '[email protected]' | |
PARTY_SIZE = 2 | |
SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
license: mit |
find / -type f -size +20000k -exec ls -lh {} \; 2> /dev/null | awk '{ print $NF ": " $5 }' | sort -nrk 2,2 |