Live data from Hacker News

Viewing profile — helmut_hed

helmut_hed

HN member
Joined
Sun, Jul 04, 2010, 8:40 PM UTC
HN karma
324
Public activity
147 items

About helmut_hed

No profile information was provided.

Recent public activity

  1. comment
    Comment #47607705

    A story of doing the right thing for abandoned (and wannabe abandoned) packages

  2. story
  3. comment
    Comment #38917572

    Incredible contributor in both technical and organizational ways. And nice as hell too.

  4. comment
    Comment #37267014

    There are a remarkable number of people attending our Emacs meetup who are under 30. I wouldn't believe it if I hadn't seen it myself.

  5. comment
    Comment #37266987

    I used https://github.com/millejoh/emacs-ipython-notebook at one employer and it works quite well for Jupyter. Of course Org is great but if your coworkers are unfamiliar it's prob…

  6. comment
    Comment #37266949

    Re: the C code, Emacs will happily let you ignore your own config settings. Just turn off anything labeled "electric" and nothing will happen automatically. And don't press tab, th…

  7. comment
    Comment #37266902

    You definitely needed to be on evil-mode or a framework (like Doom) based on it. The key bindings with ctl, alt, etc. are the least important part of Emacs but sadly, the part ever…

  8. comment
    Comment #25624556

    This really captures the power of Emacs for people with Lisp skills. For coders with strong habits of high-level thinking it's a real force multiplier. Why shouldn't we apply the s…

  9. comment
    Comment #12240532

    It is probably easier to write correct concurrent code now, thanks to the new features he mentions. However, as always plenty of rope is provided, and the old programs are still va…

  10. comment
    Comment #12176993

    Presumbly it is the American ones (such as myself) being referred to - separated from their relatives by more than a century and a half https://en.wikipedia.org/wiki/Scotch-Irish_A…

  11. comment
    Comment #11193824

    Git submodules work pretty great for this IMO. Rather than incorporate a snapshot of the source, pick a commit hash. Still frozen at a point in time, but you get to move which one …

  12. comment
    Comment #11156076

    I certainly like Jetbrains, but is it a "unicorn"? I doubt it has a billion dollar valuation - not least because it is a private company.

  13. comment
    Comment #10839025

    I doubt anyone is willing to pay 2x performance for their C code to be more friendly. If they were, why are they writing in C? To me this is the fundamental issue with the friendly…

  14. comment
  15. comment
    Comment #10467933

    A commercial product covering similar territory is UndoDB http://undo-software.com/undodb/

  16. comment
    Comment #10422801

    In this case, and many others, Google's code style guidelines are controversial...

  17. comment
    Comment #10387244

    Have you used Boost.Fusion? This looks very much like BOOST_FUSION_ADAPT_STRUCT and seems to have similar design goals

  18. comment
    Comment #10156764

    I do love war stories, but I think the OP has missed something: After the meeting one of the managers told me that it was really our job to come up with projects that the customer …

  19. comment
    Comment #9991165

    Because properly handling overflow if you're using signed values involves UB, it's super hard to get it right. Even Apple has struggled with it: http://www.slashslash.info/2014/02/…

  20. comment
    Comment #9583809

    For anyone who is curious about the intended use of exceptions in C++ I recommend Jon Kalb's two-part tutorial on exceptions from CppCon 2014. First video is here: https://www.yout…

  21. comment
    Comment #9583736

    Compiling with exceptions turned off is highly unusual. If you do that, you're not really writing C++ anymore, as it's a fundamental part of the language. Exceptions are the mechan…

  22. comment
    Comment #9583722

    I'm curious about that last bit. I occasionally hear this argument that size_t being unsigned is a bad thing. Presumably the standard library designers would claim that a size cann…

  23. comment
    Comment #9581101

    The Google guidelines are... somewhat out of sync... with the intended use of language features as described in the Standard and the recommendations of people associated with it. T…

  24. comment
    Comment #8609535

    I tried to find you on Twitter, and it corrected my search to "mantronix". No joke. Anyway thanks for sharing your code!

  25. comment
    Comment #8196056

    Can you elaborate on the "significant performance impact"? If used properly, they should have no runtime overhead - they are predicted "not taken" in modern compilers.