####lsauer.com
###Overview of all chrome://
pages.
- List by calling
chrome://about/
- Following is a direct dump from the 'about' page for reference
###List of Pages as per v20.xxx
{ | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": ["react"], | |
"ecmaFeatures": { |
####lsauer.com
###Overview of all chrome://
pages.
chrome://about/
###List of Pages as per v20.xxx
// easing functions http://goo.gl/5HLl8 | |
Math.easeInOutQuad = function (t, b, c, d) { | |
t /= d/2; | |
if (t < 1) { | |
return c/2*t*t + b | |
} | |
t--; | |
return -c/2 * (t*(t-2) - 1) + b; | |
}; |
//Creational Pattern Javascript | |
//three ways to create properties | |
var object = {}; | |
var object = Object.create(null); | |
var object = new Object(); | |
//create properties | |
object.prop1 = 'Value'; | |
object['prop2'] = 'Value3'; | |
var defineProp = function(object, prop, config){ | |
var con = {}; |
#: Title : default template | |
#: Author : francisco.marcos<fmarcos83@gmail.com> | |
#: Description : Default template for a programming bash shell | |
#: Include in your .bashrc config | |
#colours | |
function template(){ | |
local black="\033[0;30m" | |
local blue="\033[0;34m" | |
local green="\033[0;32m" |
use strict; | |
use warnings; | |
use Text::TabularDisplay; | |
use List::Util qw(sum); | |
my $start = 30_000 || $ARGV[0]; | |
my $end = 100_000 || $ARGV[1]; | |
my $step = 1_000 || $ARGV[2]; | |
my @data; |
/** | |
* A little experiment to continue | |
*/ | |
class DirectorySelfIterator | |
{ | |
private $_children = null; | |
private $_dir = null; | |
private $_handle = null; | |
private $_path = null; |