Live data from Hacker News

Viewing profile — enobayram

enobayram

HN member
Joined
Sun, Aug 11, 2019, 5:21 AM UTC
HN karma
2
Public activity
2 items

About enobayram

No profile information was provided.

Recent public activity

  1. comment
    Comment #20666454

    Though I should add that it's in general against the Haskell spirit to write code against needlessly specific types and to combine unrelated functionality. So, I'd first look for a…

  2. comment
    Comment #20666408

    here's ho I'd write it: getSocketAPIPort :: Int -> IO Int getSocketAPIPort defaultPort = readWithDefault lookupEnv "socketPort" where readWithDefault mbPort = fromMaybe defaultPort…