Viewing profile — helmut_hed
helmut_hed
HN member- Joined
- Sun, Jul 04, 2010, 8:40 PM UTC
- HN karma
- 324
- Public activity
- 147 items
- HN profile
- View on Hacker News ↗
About helmut_hed
No profile information was provided.
Recent public activity
-
comment
Comment #47607705
A story of doing the right thing for abandoned (and wannabe abandoned) packages
- story
-
comment
Comment #38917572
Incredible contributor in both technical and organizational ways. And nice as hell too.
-
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.
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
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 …
-
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.
-
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…
- comment
-
comment
Comment #10467933
A commercial product covering similar territory is UndoDB http://undo-software.com/undodb/
-
comment
Comment #10422801
In this case, and many others, Google's code style guidelines are controversial...
-
comment
Comment #10387244
Have you used Boost.Fusion? This looks very much like BOOST_FUSION_ADAPT_STRUCT and seems to have similar design goals
-
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 …
-
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/…
-
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…
-
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…
-
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…
-
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…
-
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!
-
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.