Viewing profile — felipehummel
felipehummel
HN member- Joined
- Sun, Apr 10, 2011, 5:32 AM UTC
- HN karma
- 198
- Public activity
- 41 items
- HN profile
- View on Hacker News ↗
About felipehummel
No profile information was provided.
Recent public activity
- story
-
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.
- story
- story
-
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…
- story
- story
-
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…
-
comment
Comment #7625353
Although named arguments are good, you won't use it in all function calls.
-
comment
Comment #7498926
Can you elaborate on this: "and to handle all cases..".
-
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…
-
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.
-
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 …
-
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 …
-
comment
Comment #6543462
I think "distributed" in this context is about multiple machines/servers. Not multiple plataforms.
-
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…
- story
-
comment
Comment #6128046
Chrome in OS X here and it all seems fine.
-
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…
-
comment
Comment #5088724
I didn't understand what it is supposed to do.
-
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…
-
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.
-
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…
-
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…
-
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…