Live data from Hacker News

Viewing profile — nvlled

nvlled

HN member
Joined
Fri, Oct 07, 2011, 9:02 AM UTC
HN karma
51
Public activity
55 items

About nvlled

https://github.com/nvlled https://codeberg.org/nvlled

Recent public activity

  1. comment
    Comment #48826977

    Here's mine: https://gist.github.com/nvlled/45b60884523cb48029686c50d0719... It ended up kind of weird, but it was fun writing it. The organizer should suggest what programs to use…

  2. comment
    Comment #48770167

    Location: SE Asia Remote: Yes, preferably Willing to relocate: Depends Technologies: C#, Golang, Typescript/Javascript, PHP, Python, Zig, Git, SQL Résumé/CV: On request Email: nwno…

  3. comment
    Comment #48714078

    Not to ruin the joke, but he knows and can remember the student's face so I don't think that student can get away with it.

  4. comment
    Comment #48706932

    Huh, that's strange, where did all comments to this post go? I remember seeing three, then a few more the day after. Were they bots? They seemed legit recommendations, like the Pri…

  5. comment
    Comment #48682119

    Dungeon Meshi is a good well-rounded recommendation even for those who aren't particularly into anime. I'd personally add to that list: - Clevatess - Kusuriya no Hitorigoto - Tonga…

  6. comment
    Comment #48682021

    > I never said s-expressions have no downsides You didn't say it directly, but it's implied from what all you said in this thread, just as no one in this thread said "outright unre…

  7. comment
    Comment #48667865

    This is your comment but with "zero syntax": I just don't like them That is what I dont get I have used many different languages. and often is not the syntax that I dont like . I m…

  8. comment
    Comment #48257911

    I would say, with a striped-shirt and not a glove in my hand, that the person you were fighting with gets the score, and wins by technicality. I suggest you take the bench first an…

  9. comment
    Comment #48090818

    > Right, it's exactly like C, and we kinda all know how that worked out in practice already... Production operating systems have been written in C, along the with the countless too…

  10. comment
    Comment #48084451

    I disagree with a lot of what you said, but I don't feel authorative enough to say you're wrong. > Which is really not that many places, it's a fast but rather niche optimization. …

  11. comment
    Comment #47899048

    Ever heard of tribalism and echo chambers? Wrongness being a function of number of dissidents is a terrible heuristic, in contrast to determining the lies and falsehood based on th…

  12. comment
    Comment #47898931

    The article you linked goes to great lengths about Orwell's alleged scotophobia. I don't see how particularly hating scotts supports "intentially treating those cultures as identic…

  13. comment
    Comment #47242066

    > half sarcasm, half real-talk. If you could pause a bit from being awed by your own perceived insightfulness, you would think a just bit harder and realize that LLMs can generate …

  14. comment
    Comment #47121787

    So that's name of that game, I've been trying to remember that game I played briefly as a kid, which in my hazy memory seemed quite fun. Thanks, will give it a try when it goes on …

  15. comment
    Comment #46837512

    Just the visualizer: > Also note that the python visualizer tool has been basically written by vibe-coding. Also that readme is still fairly technical, no any kind of advocacy or h…

  16. comment
    Comment #46837431

    I've seen that before. Re-reading it, I don't really get the same "vibe" as antirez's level of AI advocacy. You also conveniently omitted the last paragraph of the tweet: > Will th…

  17. comment
    Comment #46836012

    I don't see Carmack or Torvalds doing this, so it's all good (for now).

  18. comment
    Comment #46812200

    Why? I'm so confused why would you expect a build tool to depend on a x11 client library, besides the fact that both starts with the letter x. Does it also upset you that xamarin a…

  19. comment
    Comment #46372067

    Lua supports even functions and objects as keys: function f1() end function f2() end local m1 = {} local m2 = {} local obj = { [f1] = 1, [f2] = 2, [m1] = 3, [m2] = 4, } print(obj[f…

  20. comment
    Comment #46093288

    A side thought, how would a natural number sequence of hypotenuses that satisfies the equation a^2 + b^2 = c^2 look like? Or what interesting properties would it have if any.

  21. comment
    Comment #46011773

    The difference is in the ownership and lifetime of the state used by the function. A pure function uses state that it owns or is not outlived by the mutable state it uses. Closures…

  22. comment
    Comment #45953905

    > https://github.com/oven-sh/bun/issues?q=segfault%20OR%20segm... It should be noted that most of those issues are created by opening a link that bun creates when it crashes, they …

  23. comment
    Comment #45943239

    Kind of uneconomical that they have different designs for left-hand and right-hand. They could have just placed the trackball or a nipple in the middle of the keys, and mouse funct…

  24. comment
    Comment #45884203

    But you were originally talking about exceptions. As I said, destructors and exceptions are distinct concepts, you can't just suddenly interchange those two terms as that would inv…

  25. comment
    Comment #45871492

    > But destructors also don't conditionally interrupt the flow of execution, and always run at the end of a block Why bring up destructors, I was talking about exceptions. Destructo…