Viewing profile — enobayram
enobayram
HN member- Joined
- Sun, Aug 11, 2019, 5:21 AM UTC
- HN karma
- 2
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About enobayram
No profile information was provided.
Recent public activity
-
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…
-
comment
Comment #20666408
here's ho I'd write it: getSocketAPIPort :: Int -> IO Int getSocketAPIPort defaultPort = readWithDefault lookupEnv "socketPort" where readWithDefault mbPort = fromMaybe defaultPort…