Live data from Hacker News

Viewing profile — felipehummel

felipehummel

HN member
Joined
Sun, Apr 10, 2011, 5:32 AM UTC
HN karma
198
Public activity
41 items

About felipehummel

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #44735110

    That's the best and succinct description of using ChatGPT for this kind of things: it's a floor raiser, not a ceiling raiser.

  3. story
  4. story
  5. comment
    Comment #14752355

    That's no true at all. The syntax is pretty similar with few key differences. The idea is for dotty to become Scala 3.0. But, in the meantime, the next Scala 2.* versions will pave…

  6. story
  7. story
  8. comment
    Comment #8814583

    You may try out using Scala as script language like this: "scala myScript.scala". The first startup times are slower, and even after that it may be slower than Python/Ruby but it s…

  9. comment
    Comment #7625353

    Although named arguments are good, you won't use it in all function calls.

  10. comment
    Comment #7498926

    Can you elaborate on this: "and to handle all cases..".

  11. comment
    Comment #7343707

    From my brazilian perspective it's very strange to read this. In Brazil, vacation is mandatory by law. Any employee has 30 days of vacation by year. But the moment the employee goe…

  12. comment
    Comment #6681941

    Not really a natural law, but medicine from time to time finds out that working too much or sleeping less or not having time for pleasure/fun/family hurts your health.

  13. comment
    Comment #6679619

    You can actually make it automatically convert in both directions with just an import. But it is good practice to do it explicitly. In my opinion, for a typesafe language, this is …

  14. comment
    Comment #6679618

    You can actually make it automatically convert in both directions with just an import. But it is good practice to do it explicitly. In my opinion, for a typesafe language, this is …

  15. comment
    Comment #6543462

    I think "distributed" in this context is about multiple machines/servers. Not multiple plataforms.

  16. comment
    Comment #6180859

    A few suggestions: you could remove this kind of idiom: .map( result = { ... }) In the blocking commands example the snippet resembles the Javascript callback hell when it could be…

  17. story
  18. comment
    Comment #6128046

    Chrome in OS X here and it all seems fine.

  19. comment
    Comment #5623336

    Comparing Pattern matching to "ifs and elses" shows that, saddly, he didn't really understand its power. Also, his opinion on Options seems to forget its advantage that the compile…

  20. comment
    Comment #5088724

    I didn't understand what it is supposed to do.

  21. comment
    Comment #5010859

    It hasn't been a real problem for me. But I cant say the same for every kind of program developed in Scala. I'm not saying that it is not a problem and I dont recognize it. Its jus…

  22. comment
    Comment #5010760

    How many times you do full recompile during a day? I'm curious because in my workflow I rarely do full recompile.

  23. comment
    Comment #5008420

    Just use sbt ~compile. It will compile every time a file changes (only what is needed) . I've been using Scala full time for a year now, and I've never been bothered by compiling t…

  24. comment
    Comment #4939854

    One simple example of Scala power is the greatness of the Future pattern (scala, akka, finagle/twitter and other implementations). You can still have the exact same Futures functio…

  25. comment
    Comment #4939764

    Scala compilation is indeed slow (although I think C++ is worse). But I always have a "sbt ~compile" running, compiling every file as they change. So the compilation time is pretty…