dmjio's comments

dmjio | 11 years ago | on: Hacker News API doesn't obey RFC 4627

The RFC says all JSON text must be an array or object, null is a value. JSON text is made up of JSON values.

per the RFC,

"JSON can represent four primitive types (strings, numbers, booleans, and null) and two structured types (objects and arrays)."

"An object is an unordered collection of zero or more name/value pairs, where a name is a string and a value is a string, number, boolean, null, object, or array."

dmjio | 12 years ago | on: Stripe Checkout

If you put $0.00 as the amount it changes the button text to say "add card"

dmjio | 12 years ago | on: Haskell vs. C

To show that haskell and C can achieve equivalent performance on certain numeric calculations.

dmjio | 12 years ago | on: Haskell vs. C

I believe it is called stream-fusion. The intermediate data-structures are optimized away (since they're unboxed), allowing for faster operations.
page 2