Live data from Hacker News

Viewing profile — glun

glun

HN member
Joined
Sun, Sep 23, 2018, 5:52 PM UTC
HN karma
176
Public activity
43 items

About glun

No profile information was provided.

Recent public activity

  1. comment
    Comment #38344689

    Would Altman shine within Microsoft? Seems like raising capital is his main skill set, and theres no need for that now. But from Microsofts point of view this prevents a new compet…

  2. comment
    Comment #38337347

    It might have been a ”continue where you left off” player that always showed on the main page or something like that. Continuing is never desirable so I always had to waste a click…

  3. comment
    Comment #38332757

    I tried that once, but paying changed the ui in some way that I found to be a huge degradation. Dont remember what exactly it was, but now Im using the adblocker again. Just ublock…

  4. comment
    Comment #38010598

    Your family is not the intended audience for the code. If the reviewer isn’t either, then they have no business reviewing your code.

  5. comment
    Comment #36612500

    Sure, but in those industries the users leave, the company suffers and the executives get fired. VC are attracted to moaty business models where users cant leave.

  6. comment
    Comment #36612375

    This only happens when the users are the product or its a marketplace. Most business models dont suffer from shittification. But VCs love investing in the ones that do.

  7. comment
    Comment #36581811

    This architecture completely ruins your write performance. Theres a reason double databases, one OLTP and one OLAP, is the norm.

  8. comment
    Comment #36570419

    Its also that the longer journey increases the variation in arrival time thus increasing the risk of not making the transfer.

  9. comment
    Comment #36523470

    Ive gotten some use out of ChatGPT for system design. I describe my problem, it recommends solutions, I ask follow up questions and add more context etc… Just like I would work wit…

  10. comment
    Comment #36497238

    Theyre already noticably plataeuing when it comes to coding, which similarly requires you to navigate tree structures and plan how to connect existing things together using shortes…

  11. comment
    Comment #36340908

    If you don't want to publish events from uncommitted transactions you'll have to first store them in a local table and then move them to the queue after the commit. But if all cons…

  12. comment
    Comment #34059946

    The problem is that it should be the caller that decides which category the error falls within, but most languages forces the callee to choose.

  13. comment
    Comment #33559339

    > Theoretically, there could be a harmless person on the list that was put by an opponent to destroy them. Thats exactly why you dont leak the list. Furthermore, making the list pu…

  14. comment
    Comment #30252673

    Ive been curious about that book ever since Rich Hickey recommended it but couldnt easily get my hands on a copy and kinda forgot about it. This was a great review; Im going to giv…

  15. comment
    Comment #29382852

    VS Code is actually pretty good at Typescript though, so I could be wrong about JS.

  16. comment
    Comment #29382630

    IntelliJ has much superior code completion even for dynamic languages such as Python and Clojure. I seem to recall having tested Javascript too, but I could be misremembering there…

  17. comment
    Comment #29380150

    Whenever I try to use something other than IntelliJ (generally VS Code) I'm always struck by how awful the code completion and auto-imports are. I really hope we can get a lightwei…

  18. comment
    Comment #24440873

    Looks like it might be roughly what we need. I’m going to dig a little deeper. Thank you.

  19. story
    Ask HN: Managing Translated Texts

    We have come to the conclusion that we need a separate program to manage the lifecycle of the translated texts that appear in our software. We're looking for features such as the f…

  20. comment
    Comment #24387033

    Maybe 2-4 hours for a first draft and then 3-4 edits of 15-30 minutes each. Much more if I have to research the topic too.

  21. comment
    Comment #22478143

    > dull and rambling voice mail message This is in no way a realistic study. A dull and rambling voice speaking about some random thing not related to you or your work will make peo…

  22. comment
    Comment #22473855

    I think you ought to consider whether you should take notes at all. Notetaking is great for remembering actions that you have comitted to doing, or if you need to spread informatio…

  23. comment
    Comment #22381892

    I've been investigating their generators for work these last two days, and their java generators produce code that doesn't even compile -- when ran on their own schema examples! To…

  24. comment
    Comment #22259991

    A pair of noise cancelling headphones does wonders for minimizing distractions in an open office.

  25. comment
    Comment #21676215

    Seems like there's a lot of similarities between DOD and relational modelling (as in modelling for a RDMBS). I imagine DOD is kinda like doing batch/bulk operations in pure SQL vs …