Live data from Hacker News

Viewing profile — donri

donri

HN member
Joined
Tue, Apr 10, 2012, 8:31 PM UTC
HN karma
13
Public activity
9 items

About donri

No profile information was provided.

Recent public activity

  1. comment
    Comment #6801142

    HAppS is dead, long live Happstack! What you're talking about was the HAppS-State component of the HAppS application server, a project which is in deed not active anymore. Happstac…

  2. comment
    Comment #5726378

    You probably meant set -U because you probably don't want to export fish_greeting to child processes. fish_greeting is already universal though and you don't need the empty string …

  3. comment
    Comment #5726340

    Possibly a historical artifact; fish was created in a time when the controversies surrounding lilo were fresh in memory and lilo was still boss. Actually there is a channel on free…

  4. comment
    Comment #5726282

    Thing is in fish functions and completions load lazily as needed, and basically every customization is done with functions. Startup is pretty much instant regardless of configurati…

  5. comment
    Comment #5726272

    I think `-c` skips loading configuration. Launching a prompt will be much slower. In fish almost everything is a function and functions are loaded lazily.

  6. comment
    Comment #5726215

    This should be the translation: for d in * test -d $d or continue begin cd $d time-consuming-task-1 time-consuming-task-2 end & end However it errors; seems you can't do `end &`. P…

  7. comment
    Comment #5726148

    2.0 is not in distributions yet, you probably got the version from 2009. Find your distribution here: http://fishshell.com/files/2.0.0/linux/ And as others have also said, fish kno…

  8. comment
    Comment #5150428

    Almost every exception a Python program ever throws is or can be made a type error (or otherwise statically caught) in Haskell and similar languages. A type error is not the same t…

  9. comment
    Comment #3824348

    I would say that Snap is more like Pyramid and Happstack... not quite like anything else. Snap has snaplets, Pyramid has components. Happstack on the other hand ... invented type-s…