Slashdot Mirror


User: Timothy+Mallon

Timothy+Mallon's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:no sale, here, then on Inside Apple's iPhone SDK Gag Order · · Score: 1

    I agree with you. I'm not one of their segments and should not have to look at John Mayer to synch my phone.

  2. And don't forget on 20 Features Windows 7 Should Include · · Score: 1

    to redesign the recycle bin icon.

  3. Re:Iterative vs Recursive is an implementation iss on Brendan Eich Discusses the Future of JavaScript · · Score: 1

    That's a good point. I wrote some functions in Haskell to detect irregularities in large text files. I wrote with tail-recursion optimization in mind and got good space and time performance compiling with GHC, which is a *very* smart (and big and slow) compiler. That said, recursion is the natural idiom for a language built around recursively defined data types, which JavaScript isn't.