it's ok providers outside config? config(($provide,$compileProvider) => { $provide.value('$compileProvider',$compileProvider) }); @teropa
1
Аневризма retweeted
A guide to changing git commits: github.com/RichardLitt/docs/…
3
7
#generator #functions are the most misunderstood feature in #ES6 but it is the most powerful in this version #javascript
'for of' wasn't meant to iterate over 'values' instead of 'keys' like 'for in' 'for of' is intended for looping #iterators #javascript #ES6
"It'll take 5 years to people understand that virtual DOM and JSON is the way" #reactjs #falcorjs #virtualDOM #virtualJSON
"It took 30 years to people realize that functional programming works" - douglas crockford #javascript #functionalprogramming #wasm #nasm
Аневризма retweeted
What’s new in Chromium 49 and Opera 36 opr.as/1WtlUaz #WebDev #Tools
1
1
Аневризма retweeted
Functional Programming for JavaScript People bit.ly/1Xv7UNy #JavaScript #Programming
1
2
#javascript loop and #iterator let iter = obj.iterator(); while(true) { iter.next(); if (iter.done) break; func(iter.value); }
#javascript #es6 #iterator let obj.iterator = () => ({next: () => ({value, done})});
#javascript is a little schemer - douglas crockford
Аневризма retweeted
RT @PascalPrecht My talk on Angular 2’s change detection is up online! lnkplg.co/WEmPQ
2
#scheme is probably the best implementation of #functions in any language, is a dialect of #lisp which is the syntax-like for #webassembly
if you want to fully understand #webassembly maybe a small checkout to #lisp will be a solid foundation, just the surface... #javascript
what would be the straight forward definition for "macros" in programming @_ericelliott
1
(module (export $add 'add' $add) (func $add (param $x i32) (param $y i32) (result i32) i32.add((get_local $x) (get_local $y)) ) )
#webassembly becomes the safe native format for the #web
Аневризма retweeted
How to create simple Basic64 authorization lnkplg.co/dA1XK
3
9