Viewing profile — felipeccastro
felipeccastro
HN member- Joined
- Wed, Aug 19, 2015, 1:06 AM UTC
- HN karma
- 175
- Public activity
- 114 items
- HN profile
- View on Hacker News ↗
About felipeccastro
No profile information was provided.
Recent public activity
-
comment
Comment #46775199
It might be the opposite. Python apps still get written despite the performance hit, because understandability matters more than raw performance in many cases. Now that we’re all c…
-
comment
Comment #45289446
I've used XFCE for a 2011 laptop, it was about as fast as LXDE but better polished. Windows was unusable there, and XFCE made the computer feel brand new. Only the modern websites …
-
comment
Comment #45143291
I have noticed that static type checking often enables people to build systems more over-engineered than they could without it. It's not a coincidence that factory-factory-impl hap…
-
comment
Comment #45102683
The train of thought is “what is everyone using? I’ll use that too”
-
comment
Comment #44941418
It's not just small typos, it's the ability to explore apis, the standard library, go to definition, quickly catch any error at the location it happens, not having to memorize larg…
-
comment
Comment #44939336
I agree with all your points but last I tried, the VS Code LSP was terrible. It’s hard to justify a new language when even the basics of autocomplete, inline errors and go to defin…
-
comment
Comment #44939313
And if keeping in local storage a list of all pages, you can create an index html automatically in a predefined format which makes it more of a database rather than loose documents…
-
comment
Comment #44465144
Not sure why this was downvoted, but I’d be very interested in learning how well does pglite compares to SQLite (pros and cons of each, maturity, etc)
-
comment
Comment #44271175
It is ironic how “rewrite it in Rust” is the solution to make any program fast, except the Rust compiler.
-
comment
Comment #44249721
This. Making something super customizable is a lot harder to implement (code being too generic, hard to reason about and debug) and often presents a worse UX ("why are there so man…
-
comment
Comment #44249662
https://anvil.works/ uses Python
-
comment
Comment #43732349
Yes, but in practice, is the difference significant enough to matter? I’m genuinely looking to see if I’m missing anything when favoring Python type system over Go’s.
-
comment
Comment #43730267
I’m assuming that Python code base didn’t have thorough type hints. What if it had? Would Go still feel safer? I know these aren’t checked in runtime, but Python type system seems …
-
comment
Comment #43723328
I’ve been having a different experience. Asking Claude to fix the bug again and again is annoying, so I’m still working on “pull pieces at a time, understanding each” so I do fix t…
-
comment
Comment #43389833
The language and stdlib feel like a more polished Ruby, though I haven't explored it in deep. The tooling, last I checked, is what's behind - the interpreter didn't work for simple…
- comment
-
comment
Comment #43257322
Yes, I believe so because it uses global type inference. I would gladly add explicit types everywhere instead of this to use Crystal if it had decent tooling, because everything el…
-
comment
Comment #43257216
Hey, just a shoutout that I love this platform, had a lot of fun playing several games with my nephews, high quality games with almost zero ads, kudos!
- comment
-
comment
Comment #42836872
Our team considered Render but dropped for the same reason. We’re looking into Aptible right now, not as well known but seems focused on HIPAA compliance.
-
comment
Comment #41460750
I like it. It’s an elegant solution and you can easily make higher order components from this.
-
comment
Comment #39946385
That's not pedantry, that's clarifying, haven't thought like that before. Thank you.
-
comment
Comment #39014084
I was curious about that as well. Since most services implement an email based Forgot Password feature, and 2FA tokens are also often email based, why isn't magic links the default…
-
comment
Comment #38694883
Yes, with Solargraph. It uses type inference most of the time, and when it can’t guess the type, you can add YARD comments. Intellisense also works well (autocomplete).
-
comment
Comment #37235735
There is often opposition - if the company I work for asks "what should we build the next app on?", React is the default answer that doesn't need convincing anyone, while SSR is mu…