Skip to content

Instantly share code, notes, and snippets.

View gmmorris's full-sized avatar

Gidi Meir Morris gmmorris

View GitHub Profile
@gmmorris
gmmorris / npm-defaults.sh
Created September 5, 2016 10:18
Set NPM defaults
npm config set init.author.name "Gidi Meir Morris"
npm config set init.author.email [email protected]
npm config set init.author.url http://www.gidi.io
npm config set init.license MIT
@gmmorris
gmmorris / TheMagicalQuestForComponentisation.md
Created November 28, 2016 16:05
The magical quest for Componentisation

The magical quest for Componentisation

I would like, if I may, to ask you an existential question.

What is the core of our job as developers today?

It probably isn't figuring out the next super cool & complex algorithm.

But rather, what our job probably is, is to take an existing abstraction and compose it with a second abstraction in order to form a third abstraction.

@gmmorris
gmmorris / funcitonalComposition.js
Created November 28, 2016 16:20
Snippet for "The magical quest for Componentisation"
const g = () => {}
const f = () => {}
// (g ∘ f )(x) = g(f(x))
const h = (...args) => g(f(...args))
@gmmorris
gmmorris / functionalCompositonWithIndependentArguments.js
Created November 28, 2016 16:24
Snippet for "The magical quest for Componentisation"
// We'll label g() and f() as the `parent` and `child` functions
const parent = () => {}
const child = () => {}
// we'll label the arguments for the composition as `props`
const props = [x, y, z]
// we'll add a little flexability by allowing the parent and child
// to have their own arguments, and leaving it up to the parent to decide
// what to do with the child
const childProps = [a, b, c]
@gmmorris
gmmorris / JSXCompilation.js
Created November 28, 2016 16:26
Snippet for "The magical quest for Componentisation"
// Specifically what might interest you is how the following JSX:
<MyButton color="blue" shadowSize={2}> <Echo value="Click Me" /> </MyButton>
// Compiles to:
React.createElement(
MyButton,
{color: 'blue', shadowSize: 2},
React.createElement( Echo, {value: 'Click Me'} )
@gmmorris
gmmorris / ComponentCompositionRelabeledLikeFunctionalComposition.js
Created November 28, 2016 16:27
Snippet for "The magical quest for Componentisation"
React.createElement(
parent,
props,
React.createElement( child, childProps )
)
@gmmorris
gmmorris / doesntWork.js
Created December 14, 2016 11:34
Flow is failing to infer instanceof checks
/* @flow */
function Children (children : Iterable<any>) {
this.children = Array.from(children)
return this
}
Children.prototype = {
toArray () : any[] {
return this.children
@gmmorris
gmmorris / conditional.js
Created December 15, 2016 09:00
Build a set of if-elseif-else switches using functions
const conditional = () => {
let elseThen = i => i;
const conditions = [];
function cond (val) {
const res = conditions
.find(condPair => condPair.test(val));
return res
? res.then(val)
: elseThen(val);
@gmmorris
gmmorris / diffObjects
Created December 21, 2016 22:06
Diffing of plain objects, assumes lodash
function diffObjects (left, right) {
const leftKeys = Object.keys(left)
const rightKeys = Object.keys(right)
const keyDiff = _.intersection(leftKeys, rightKeys)
.reduce((differentKeys, key) => {
if(_.isPlainObject(left[key]) && _.isPlainObject(right[key])) {
const diff = diffObjects(left[key], right[key])
if(diff !== true) {
differentKeys.push(key)
@gmmorris
gmmorris / gist:0438291a9b31fdd223d44f2c88a5fc7e
Created February 10, 2017 23:30
Roman Numerals converter
const romanNumeral = (char, val) => {
return {
char: char,
val: val,
isBellow: comp => comp > val,
isAbove: comp => comp < val,
is: comp => comp === val,
times: repeat => {
return (new Array(parseInt(repeat))).fill(char).join('')