Skip to content

Latest commit

 

History

History
67 lines (46 loc) · 1.16 KB

Day7.md

File metadata and controls

67 lines (46 loc) · 1.16 KB

Day 7

Pitch

Something I think will be HUGE over the next 10 years:

Distributed / Parallel Processing

Randoms

Morphisms

Problem - give me all rule names:

thing = {name:"Selection A", groups:[{name:"Group A", rules:[{name:"Rule A"},{name:"Rule b"}]}]};

. . .

[].concat.apply([],sel.groups.map(function(gp){ return !gp.rules ? [] : gp.rules.map(function(rule){ rule.name = gp.name; return rule; }); }))

Compare With

concat . map (map name . rules) $ groups selectionA

Data as it is

Monoids, semigroups, etc

Overview

  • Finish Monads
  • QuickCheck
  • Example Project

Monads

I have new versions of WriterExample and StackExample, lets work through them.

Kitchen Sink

Lets walk through the Example project!

Feedback!!!

Please