Live data from Hacker News

Viewing profile — plainOldText

plainOldText

HN member
Joined
Wed, Apr 28, 2010, 8:52 PM UTC
HN karma
2,795
Public activity
676 items

About plainOldText

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #46301388

    It's not strange at all. The second story, and highly upvoted, on HN right now is: "AI will make formal verification go mainstream"[1]. [1] https://news.ycombinator.com/item?id=462…

  3. comment
    Comment #46301334

    This Scott Wlaschin talk [1] is a good introduction to TLA+. And the slides [2]. [1] https://www.youtube.com/watch?v=qs_mmezrOWs [2] https://speakerdeck.com/swlaschin/tla-plus-for-…

  4. comment
    Comment #46295799

    I guess it’s time to learn OCaml then. It appears many of the proof assistants/verification systems can generate OCaml. Or perhaps ADA/Spark? Regardless of how the software enginee…

  5. story
  6. comment
    Comment #45785954

    The main designer is Andreas Rumpf, but investigating the git commits of the new Nim reveals more people being involved. [1] Whether Andreas is a genius, I have no idea, but he has…

  7. comment
    Comment #45715033

    Reminder the creator of Wren wrote the awesome Crafting Interpreters book [0]. [0] https://craftinginterpreters.com/

  8. story
  9. story
  10. comment
    Comment #45585333

    The article allocates the last section to explaining why Rust is not a good fit (yet) so I wanted the title to cover that part of the conversation since I believe it is meaningful.…

  11. comment
    Comment #45585115

    I’d be curious to know what the creators of SQLite would have to say about Zig. Zig gives the programmer more control than Rust. I think this is one of the reasons why TigerBeetle …

  12. story
  13. comment
    Comment #45537613

    It's interesting to observe how many people are undergoing an identity crisis due to the emergence of LLMs challenging the status quo. What will our craft of programming turn into?…

  14. comment
    Comment #45518805

    You're absolutely right ((: Now, seriously though, no tools is perfect, and I agree we should not trust it blindly, but leaving aside AI Agents, LLMs are very helpful in illuminati…

  15. comment
    Comment #45511027

    A better term would be “Augmented Engineering” (AE). You want something to inspire engineers to do their best work. When you can expand your capabilities using the power of AI, the…

  16. story
  17. story
  18. comment
    Comment #45475818

    Your example also gets evaluated at comptime. For more complex cases I wouldn't be able to tell you, I'm not the compiler :) For example, this get's checked: let ageFails = (200 + …

  19. comment
    Comment #45475118

    Nim was inspired by Ada & Modula, and has subranges [1]: type Age = range[0..200] let ageWorks = 200.Age let ageFails = 201.Age Then at compile time: $ nim c main.nim Error: 201 ca…

  20. comment
    Comment #45359230

    Nim is a statically typed language with a syntax resembling Python's. https://nim-lang.org/ Sometimes I'm questioning if it has the potential to become more popular in the future i…

  21. comment
    Comment #45260455

    Hmm, I guess this then makes sense if we regard the app as a latent space projecting user's data, so its views are awaiting to be activated. Seen this way, the app is basically com…

  22. comment
    Comment #45259943

    From the article: > In summary: > Use “your” when communicating to the user > Use “my” when the user is communicating to us I could see how this makes sense with dialogs. But for U…

  23. comment
    Comment #44889334

    I couldn’t see passed the 100% mark. Looking at some YouTube videos, it looks like this was the greeting upon booting: “Stored on this single, 1.44 Mbyte floppy disk is a demo copy…

  24. comment
    Comment #44856903

    Some core ideas from the paper for the inpatient (failures, isolation, healing): - Failures are inevitabe, so systems must be designed to EXPECT and recover from them, NOT AVOID th…

  25. story