Live data from Hacker News

Viewing profile — verttii

verttii

HN member
Joined
Fri, May 10, 2019, 9:55 PM UTC
HN karma
232
Public activity
194 items

About verttii

No profile information was provided.

Recent public activity

  1. comment
    Comment #22337648

    I had no idea the IT consultant salaries were higher in Stockholm compared to London. What kind of rates would an IT consultant be expected to pull in Sweden?

  2. comment
    Comment #22033972

    Haskell absolutely lacks the soft documentation needed to attract new people. Just about every library could use a "mini tutorial" in their README, at the very least, to allow even…

  3. comment
    Comment #22033947

    Isn't Software Transactional Memory more for concurrency than parallel computing though?

  4. comment
    Comment #22030783

    Interestingly, the docs for Flutter are comprehensive and overall just really excellent. Maybe they shifted focus to that in the past years.

  5. comment
  6. comment
  7. comment
    Comment #22000581

    It's typical in statically typed functional languages to match against Algebraic data type value constructors. These ADTs have a fixed amount of variants, which makes it suitable t…

  8. comment
    Comment #22000521

    It is, from top to bottom.

  9. comment
    Comment #22000514

    You got any links to share on this? I'm doing a bit of academic study on the subject of pattern matching in OOP.

  10. comment
    Comment #22000503

    You mean that guards + destructuring would effectively be the same as pattern matching in function's params? Pattern matching would allow matching against more complex data structu…

  11. comment
    Comment #21987536

    My point was rather that that's where Elixir excels. Throughput is always a compromise with latency in garbage collectors and schedulers. Elixir prioritizes low consistent latency …

  12. comment
    Comment #21984999

    Fair enough, I should've put it more general like "distributed computing". Something that does networking stuff and prioritizes low latency instead of high throughput.

  13. comment
    Comment #21984596

    I actually have a similar experience. This is basically due to having no type system, at least the problems we've encountered.

  14. comment
    Comment #21983277

    It really depends where you're coming from. If you're from the enterprise world I'd expect you'll find the ecosystem limited for anything else than web related, maybe even for ente…

  15. comment
    Comment #21970300

    Elchemy too which is based on Elm.

  16. comment
    Comment #21966418

    That was also the first thing I was looking for in the docs. I mean how it ties to the Erlang OTP. It's the reason why anyone would use Erlang's platform after all.

  17. comment
    Comment #21954426

    It takes like a few days to pick up and you can easily be productive from day 1. Dart's been around for some 8 years already, I'd assume Flutter bites the dust sooner than Dart wil…

  18. comment
    Comment #21954354

    Wow this looks interesting, I don't know why it has slipped right past me so far.

  19. comment
    Comment #21954152

    My experience is similar with yours. With React Native I had to fight just about everything on Android just to get everything working bearably. Hell, even some things like the prof…

  20. comment
    Comment #21952783

    My experience with Flutter is that you need a lot less native code than you do with React Native. However, the hands down best part is the tooling. Unlike on react native everythin…

  21. comment
    Comment #21946236

    Is it really? Got no exposure to C++ but the rabbit hole goes pretty deep with Haskell.

  22. comment
    Comment #21912082

    True, but the problem is that any production ready library you come across uses some pretty advanced type magic that you have to learn to understand. At least to some extent. Serva…

  23. comment
    Comment #21912054

    There's also some work pushing Haskell to perform better (more like Elixir) in networking/concurrency applications: http://www.well-typed.com/blog/2019/10/nonmoving-gc-merge/

  24. comment
    Comment #21912044

    I used to have the same wish as you but then I just decided to pick up Haskell. Haskell's hard part really is the type system. It's also what ultimately enables you to write very h…

  25. comment
    Comment #21904830

    As someone mostly writing functional languages I'm always having a hard time writing decent functional code in Python. There's almost no facilities to support modern functional pro…