Live data from Hacker News

Viewing profile — kinjba11

kinjba11

HN member
Joined
Sat, Oct 27, 2018, 1:36 AM UTC
HN karma
273
Public activity
157 items

About kinjba11

No profile information was provided.

Recent public activity

  1. comment
    Comment #49192210

    Either they don't know better (the majority) or they use an alternative keyboard like GBoard

  2. comment
    Comment #48449980

    This reminds me of the concept I learned of recently: that metrics and simplified quantitative information has been digesting the world for a long time. Simplified metrics like 'po…

  3. comment
    Comment #47580080

    Zig plans to make LLVM optional. Rust has Cranelift. Go afaik has no dependencies on the C++ ecosystem including LLVM. Python and some other languages are built with C, not C++. So…

  4. comment
    Comment #46702638

    This reminds me of the "three tribes of programming: mathematical poetry, machine hackery, and business value". I think each SWE gets similar but different feelings of satisfaction…

  5. comment
    Comment #45725712

    Yes, and being incompatible with GPLv3-or-later may be done on purpose to push folks into a commercial license.

  6. comment
    Comment #44260102

    What about restricting yourself is not healthy? When I was a kid, I'd eat Trix cereal. I enjoyed it. Now - I find it sort of gross. It's too sweet. You can reach that same point wi…

  7. comment
    Comment #43044032

    My company recently switched to UHC for 2025. My regular monthly out of network claim was fine with Aetna. With UHC? After I filled out a long form with information in a PDF, they …

  8. comment
    Comment #41812387

    Yep, for expert driven projects, such as Go and C#, it is nearly always a case of "everything is a tradeoff". Another good article for comparing GC between Go and C# https://medium…

  9. comment
    Comment #41702565

    This seems to be endemic to civilization period. Nobody pays attention until the last one breaks, and by then nobody knows how it's done anymore. I'm reminded of the fleet of ships…

  10. comment
    Comment #40778234

    I pay $173 per year for JetBrain's 'All Products Pack'. Considering the salary I make as a software engineer, and the quality of the tools JetBrains provides, this is a great inves…

  11. comment
    Comment #37447534

    It's in their FAQ. > Why not develop Mojo in the open from the beginning? > Mojo is a big project and has several architectural differences from previous languages. We believe a ti…

  12. comment
    Comment #36868309

    Isn't that what this and other papers say - that AMOC is doomed to collapse, it's just a matter of time? I'm not sure I'd equate AMOC collapse to industrial civilization collapsing…

  13. comment
    Comment #35650037

    Not Just Bikes, a YouTuber made a video about increasing vehicle sizes in the US and why you may be interested in https://www.youtube.com/watch?v=jN7mSXMruEo

  14. comment
    Comment #34155232

    I concur very much. HN is the only social media I use these days, after cutting reddit and others nearly a decade ago. I have had to set up blockers for the comments section, to li…

  15. comment
    Comment #34006780

    > or patch the runtime code A huge spike in CPU usage would be treated as a regression in other language runtimes and would likely be addressed. The fact that this is solvable with…

  16. comment
    Comment #33724465

    Go does not have compile-time null safety or sum types :) foo := Foo{"hello"} fooPointer := &foo fooPointer = nil fmt.Println(fooPointer.Bar) > panic: runtime error: invalid memory…

  17. comment
    Comment #33665978

    > 5 days, 6 hours Many remote salary workers regularly work 6 hour days. Getting more recognition for this seems like a good first step in getting acceptance for 4 days, 8 hours.

  18. comment
    Comment #33000119

    Looks similar to Sonic https://github.com/valeriansaliou/sonic (wr/in Rust)

  19. comment
    Comment #32830629

    Doesn't crypto have the same problem, with money laundering and other crimes? If you lose money with crypto, there is no one to sue nor government insurance.

  20. comment
    Comment #32784067

    Isn't this circular reasoning? Rails are terrible, so nobody uses them, hence nobody invests, hence poor ROI. Roads are heavily invested, so are usable to the point it is uneconomi…

  21. comment
    Comment #32694989

    Rust doesn't have a garbage collector, meaning you have a steep learning curve around the borrow checker. Zig aims to be a C replacement, with manual memory management as well. Nim…

  22. comment
    Comment #32512257

    I disagree. Language does matter for long term maintenance. For instance with a tax rebate. Static typing - a fancy language feature - can immediately tell you the function deals w…

  23. comment
    Comment #32503797

    What about F#? Often seems underappreciated

  24. comment
    Comment #32407676

    I'd say the two big ones are: - Mature support for async/await since 2012. Yes, Project Loom is coming, a decade later.. - Support for generic-aware value types (struct vs. class) …

  25. comment
    Comment #32246844

    > You can barely tell the code bases are related beyond being functionally similar. Not sure if you've missed this, but this is a number one reason many consider C++ absurdly compl…