Live data from Hacker News

Viewing profile — fholm

fholm

HN member
Joined
Sun, Mar 20, 2011, 3:38 PM UTC
HN karma
74
Public activity
15 items

About fholm

No profile information was provided.

Recent public activity

  1. comment
    Comment #4783225

    The language is F#, basically the code does this: 1) Creates a type which is a discriminated union called Color, that can have three different values (RGB, HSV or CMYK). 2) Defines…

  2. comment
    Comment #4782728

    Again I love my country (Sweden). There are multiple laws in place that forbid companies to force people to work more then X hours per week/month/year. There's several different av…

  3. comment
    Comment #4782591

    You mean like this? :) type Color = RGB of int * int * int | HSV of int * int * int | CMYK of int * int * int * int let toHsv = function | HSV(h, s, v) -> HSV(h, s, v) | RGB(r, g, …

  4. comment
    Comment #3927864

    I'm late to the party, so this is probably not going to be read by anyone, but here's my 0.02$ > Some of the comments in this thread bother me, particularly the 30 days paid vacati…

  5. comment
    Comment #2683449

    Very well put, pretty much agree with it completely.

  6. comment
    Comment #2683307

    I'm not a fan of CoffeScript, it fixes the wrong problems. It's not the syntax that's the REAL issue, it's the fragmentation, lack of module system, etc.

  7. comment
    Comment #2683296

    Yay a dynamic language with a compiler step.

  8. comment
    Comment #2683221

    I would not consider that a dream team considering the languages/libraries they have produced.

  9. comment
    Comment #2683192

    I'm well aware of js.next/harmony/whateveryouwannacallit. Come back to me in 10 years when it's implemented everywhere and everyone that was on an old version of browser X has upgr…

  10. story
  11. comment
    Comment #2646939

    God I love sweden, 100/100 dedicated for 16$/month (~100 SEK)

  12. story
  13. story
  14. story
  15. comment
    Comment #2346478

    I love Pratt parsers (or Top Down Operator Precedence parsers rather), I recently re-wrote the IronJS lexer and parser by hand (from using one generated by ANTLR) using the techniq…