A very comprehensive summary of testing tools for JavaScript.
Category: Lambda
I don’t know Purescript* but I may need to start looking into it to understand these articles.
I don’t know Purescript* but I may need to start looking into it to understand these articles.
Here is the follow up on incrementally updating the DOM using functions. http://blog.functorial.com/posts/2018-04-08-Incrementally-Improving-The-DOM.html
* my impression of it so far is that it’s a simplified Haskell designed for easy JavaScript interoperability.
Designing very large (JavaScript) applications – Malte Ubl – Medium
And apologizes after being caught trying to override the rights of the islanders. Seeing a bit of a pattern here.

And apologizes after being caught trying to override the rights of the islanders. Seeing a bit of a pattern here.
#zuckpologies
Originally shared by ****
Understanding Typescript’s type annotations.
Understanding Typescript’s type annotations.
Lambda calculus expansions are cool.
Lambda calculus expansions are cool.
The reduceRight() array operator can be defined by pattern matching one of these two cases:
[ ].reduceRight(f, acc) → acc
[x, … xs].reduceRight(f, acc) → f(xs.reduceRight(f, acc), x)
i.e. An empty array right reduces simply to the value of its accumulator.
A non-empty array right reduces to its function being applied to a right reduction of its tail with its head being used as the accumulator.
Redux requires a new state to be created on every update of the store.
Redux requires a new state to be created on every update of the store. The usual, cheapest way to do this is by shallow copying the state to create a new state.
Andrea Giammarchi developed a different way in which the new store is prototypically inherited from the previous state. This library is significantly faster than shallow copying, especially when the number of keys in the store grows large. It also has features for managing depth and compressing the state from time to time.
Yet another discussion of monads for JavaScript dimwits.
Yet another discussion of monads for JavaScript dimwits.
It’s interesting to me that idea of “programmable semicolons” makes complete sense to functional programmers (for whom a program is really just one big expression) and basically none to imperative programmers who think in terms of program statements which evolve their computation through variables.
Chainable or composable units of computation are really what this is all about.
Good summary of everything new in JavaScript since “ES6” aka Ecmascript 2015 was released.
Good summary of everything new in JavaScript since “ES6” aka Ecmascript 2015 was released.
O(1): random access to an element in a collection, dependent on indexing

O(1): random access to an element in a collection, dependent on indexing
O(log n): divide and conquer
O(n): list iterations
O(n log n): iterations that use divide and conquer
O(n^2): nested loops on the same collection
O(n!): adding a nested loop for every input you have