Viewing profile — brentshields
brentshields
HN member- Joined
- Fri, Apr 05, 2013, 1:26 PM UTC
- HN karma
- 56
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About brentshields
No profile information was provided.
Recent public activity
-
comment
Comment #22469971
Own Up | https://www.ownup.com | Boston or REMOTE (US) | Senior Software Engineer Own Up helps people save money on their mortgage when purchasing or refinancing a home. We're a ~5…
-
comment
Comment #9476241
"So, any minor divergence in features of Clang and Visual C++ will cause you as a developer to have to worry about these compiler differences or limit you to using the smallest sub…
-
comment
Comment #9474462
Regarding bluffing: I've seen it happen where the company has asked for a pay stub as part of the final paperwork to confirm that the stated current salary was legit. So yeah that …
-
comment
Comment #7497893
You can use GADTs for this. For example: data Showable where Showable :: Show a => a -> Showable This allows you to create a polymorphic container like [Showable 5, Showable "hello…
-
comment
Comment #7378634
It's an oversimplification, but the basic philosophical difference from my point of view is that Haskell values correctness above all and Clojure is above all pragmatic. I think al…
-
comment
Comment #7378263
As someone who knew Haskell first and then learned Clojure, I can tell you that this assumption is incorrect. It's so completely philosophically opposite from Haskell in so many wa…
-
comment
Comment #7378031
Nice writeup. There's an error in one of the examples though: (map :name people) evaluates to a lazy sequence, not a vector.