Y Not? - Adventures in Functional Programming
Recorded at:
Ah yes the dreaded Y-Combinator...
by
Faisal Waris
Note in ML style languages (including F#) the y-combinator is defined as:
let rec y f x = f (y f) x
let factorial = y (fun f -> function 0 -> 1 | n -> n * f(n - 1))
Also, ML/OCaml/F# are typed so cannot directly express y-combinator unless the 'rec' (means recursive) keyword is used.
Interestingly, "Y Combinator" (ycombinator.com) is the name of a venture capital firm (which was most likely founded by LISP maniacs)
Live coding video
by
Dave Kincaid
Re: Live coding video
by
Kris K
Re: Live coding video
by
Andrey Paramonov
Re: Live coding video
by
Dave Kincaid
Re: Live coding video
by
Kjetil Valstadsve
www.crestron.com/resources/product_and_programm...
www.blackmagicdesign.com/products/h264prorecord...
You probably need hardware for this, because you can't trust screencast software to run reliably - in a live setting - on all the different laptops that go through a conference like this.
I've been pestering @strangeloop_stl on twitter about this a bit, and they seem amenable to a little pressure on this point :-)
Video download please
by
Olumide Olumide
Re: Live coding video
by
Floyd Marinescu
Right now we publish an average of 13 conf presentations a week for free that we have filmed from over 35 conferences that we partnered with. Any tweaks to the model, increasing the size or bandwidth of the video window on the site, increasing the personnel at these events to manage screen capture devices or 2nd camera's, can increase costs so significantly that we would then have to film and publish less videos.
So as a result we've kept things simple, following the 80/20 rule so we can get more videos out and thus more value to the community.
We know demo's are a problem. However we are listening and this issue isn't being dismissed. It is something I hope we can solve next year.
Floyd
InfoQ Co-founder & CEO
Re: Live coding video
by
Dave Kincaid
www.confreaks.com/videos/1287-rubyconf2012-y-no...




Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think