Live data from Hacker News

Viewing profile — radiospiel

radiospiel

HN member
Joined
Sat, Mar 17, 2012, 11:56 AM UTC
HN karma
366
Public activity
152 items

About radiospiel

No profile information was provided.

Recent public activity

  1. comment
    Comment #48290823

    An interesting combination of features. Personally, I have used nullmailer in the past to provide a sendmail compatible local install that immediately forwards email to the SMTP se…

  2. comment
    Comment #48204059

    Fun, sure, but also GCC and Clang will both warn with -Wall (-Wsequence-point / -Wunsequenced).

  3. comment
    Comment #47719109

    Doesn't it already? https://modelcontextprotocol.io/specification/2025-11-25/ser...

  4. comment
    Comment #46909359

    …which is https://www.kickstarter.com/projects/rromes/kanjideck?ref=th...

  5. comment
    Comment #46909355

    Amazing read! What really is missing tho is a link to the kickstarter campaign right on top of the text.

  6. comment
    Comment #46127577

    > how you might be able to get such a syntax to work in pure Ruby, but gave up because there is no built-in reflection API to get the parameter default values what I have done succ…

  7. comment
    Comment #45611706

    > If it solves concurrency the "right way" due to supervision trees, why not use Python libraries that also implement the actor model, making Python code concurrent the "right way"…

  8. comment
    Comment #44336417

    afaik no businesses are required by the gdpr to collect phone numbers, and would like to see evidence otherwise

  9. comment
    Comment #44217359

    Amazing; when I tried something similar I used a "#!" line pointing to a C compiler + runner of sorts ( https://github.com/radiospiel/jit ). https://git.zx2c4.com/cscript/about/ is…

  10. comment
    Comment #43129109

    > Are the people of 2024 France really getting 28x the value from their government as 1800 USA? oh but certainly. Healthcare, social security, education, … just to name a few

  11. comment
    Comment #43038478

    We have used that video as an exercise in how not to achieve change. Assuming everyone is acting in good faith, the presenter missed the opportunity to build consensus before the t…

  12. comment
    Comment #42972852

    > The government in Germany which shut down local production and decided to outsource it all did not come out of thin air. That is just plain wrong. https://www.iea.org/countries/g…

  13. comment
    Comment #42417226

    More of a tool that exists for 15 years or more, and is an important tool for some of us. When my mac broke down in, hmm, maybe 2010-ish, my superduper-created bootable clone allow…

  14. comment
    Comment #41403678

    unless i miss something this should not be an issue. the lexer could parse if as an IF token, and the parser could treat tags as STRING || IF ( || other keywords… )

  15. comment
    Comment #40953132

    Im my experience following - as in actually doing the steps - works wonders.

  16. comment
    Comment #40863382

    Quick feedback on the presentation: - a oneliner over the video that explains what you are doing would be helpful, - and then "If you don't know what mutation testing is, you must …

  17. comment
    Comment #40104510

    Of course you can decide to not serve those visitors. But if you want to capture as much as possible of your target audience you might want to consider which users can’t see your w…

  18. comment
    Comment #39882758

    > If xz was statically linked in some way, or just used as an executa Le to compress something (like the kernel), the same problems exist and no dynamic linking would need to be in…

  19. comment
    Comment #39861615

    > The JSON operations are not atomic I hear this today the first time. What exactly os not atomic, and is there a resource with more details?

  20. comment
    Comment #39589286

    At least for whitespace changes git should have you covered --ignore-space-at-eol Ignore changes in whitespace at EOL. -b --ignore-space-change Ignore changes in amount of whitespa…

  21. comment
    Comment #38851956

    I think they refer to https://archive.org/details/GeneralComputation

  22. comment
    Comment #36697475

    how does inngest compare to temporal?

  23. comment
    Comment #36629216

    ...or, say, in Japan.

  24. comment
    Comment #36582984

    Venn diagrams are a terrible way to describe join types (and, tbh, I don’t understand why Wikipedia has these) because it makes it look like applying an 1:1 relationship. In a M:N …

  25. comment
    Comment #36491914

    more correct would probably be threads = [] 3.times.map do Thread.new do service.call end end threads.each(&:join) But whether or not multithreading is really available within the …