- We've got some components
A,BandCwhich provide different slots.const A = { template: `<div><slot name="a">Default A Content</slot></div>` }
const B = {
| const Benchmark = require('benchmark') | |
| const co = require('co') | |
| const bluebird = require('bluebird') | |
| const suite = new Benchmark.Suite | |
| suite | |
| .add('co generators', { | |
| defer: true, | |
| fn: deferred => { |
| const S = f => g => x => f(x)(g(x)) | |
| const K = x => y => x | |
| const I = S(K)(K) | |
| const B = S(K(S))(K) | |
| const C = S(S(K(B))(S))(K(K)) | |
| const A = S(K(I)) | |
| const T = C(A) | |
| const W = S(S)(K(I)) |
These instructions are based on Mistobaan's gist but expanded and updated to work with the latest tensorflow OSX CUDA PR.
| const I = x => x | |
| const K = x => y => x | |
| const A = f => x => f (x) | |
| const T = x => f => f (x) | |
| const W = f => x => f (x) (x) | |
| const C = f => y => x => f (x) (y) | |
| const B = f => g => x => f (g (x)) | |
| const S = f => g => x => f (x) (g (x)) | |
| const S_ = f => g => x => f (g (x)) (x) | |
| const S2 = f => g => h => x => f (g (x)) (h (x)) |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| //Regular Expressions List | |
| //Short Tutorial | |
| \ // the escape character - used to find an instance of a metacharacter like a period, brackets, etc. | |
| . // match any character except newline | |
| x // match any instance of x | |
| ^x // match any character except x | |
| [x] // match any instance of x in the bracketed range - [abxyz] will match any instance of a, b, x, y, or z | |
| | // an OR operator - [x|y] will match an instance of x or y |