Live data from Hacker News

Viewing profile — femngi

femngi

HN member
Joined
Sun, Oct 09, 2011, 4:34 PM UTC
HN karma
57
Public activity
22 items

About femngi

No profile information was provided.

Recent public activity

  1. comment
    Comment #11415918

    It's concerning because it reveals something about the way he views other people. There's an old saying that you should carefully watch how your date treats the waiting staff becau…

  2. comment
    Comment #10403219

    How does this Backtrace file format differ from Microsoft's Minidump format which is also used on Unix as part of Breakpad?

  3. comment
    Comment #10030856

    Honestly I would like to know what the overhead is in continually maintaining a custom cross platform UI toolkit for one application is versus just rewriting the UI using an existi…

  4. comment
    Comment #9948541

    It really irks me that the std algorithms library seems to have been designed without any consideration for usability given how much I would love to rely heavily on the generic alg…

  5. comment
    Comment #8809563

    It was my understanding that despite cutting their budget deficit spending has actually increased substantially in GB over recent years.

  6. comment
    Comment #8668871

    Rust is aiming more to be a better C++. However that doesn't preclude it from being used in the same space as C and can become impressively lightweight if you forgo things like the…

  7. comment
    Comment #8651545

    It's not just about native vs interpreted though. Most of those languages use garbage collection for memory allocation which is still going to be an unacceptable performance hit fo…

  8. comment
    Comment #8615611

    Since it is a template you could always use universal references to avoid copying where not needed: template void for_each(Collection&& col, unop op){ std::for_each(col.begin(),col…

  9. comment
    Comment #8611318

    I have to ask what this language is trying to provide that isn't already provided by lua or python when it already looks almost identical to them. Has it got an end goal that I can…

  10. comment
    Comment #8378708

    The definitive introduction to C++11 is probably 'C++ Primer 5th edition'. It covers stuff other than the new features but everything is described as it should be done in C++11/14.…

  11. comment
    Comment #8378318

    Stuff like this makes me really regret being a C++ developer. Companies and projects are adopting new features at a glacial pace and yet the programming world is still moving forwa…

  12. comment
    Comment #8331622

    That's not a C++ community convention, it's just another bone headed part of the Google C++ coding standards. It's stupid because now everything is potentially nullable and every s…

  13. comment
    Comment #8221075

    It's frustrating reading about this and seeing that it makes all the same mistakes as all these other gdb frontends that make them impossible to use with the standard library. What…

  14. comment
    Comment #8184442

    Never mind working with other languages, it's a problem just linking between different compiler versions.

  15. comment
    Comment #8171875

    Yeah, I'm just going to go ahead and disagree anyway. Not only are they a poor structure for flow control they are an inefficient and slow one too, as Andrei mentions in his 2012 t…

  16. comment
    Comment #7629598

    C++ isn't exactly a new language but has also had type inference for a few years. I think people still think of C++ as that dusty old thing in the corner and forget that it is actu…

  17. comment
    Comment #6986033

    I have to strongly disagree with your example. In fact I feel it may just be one of the worst usages of macros I have seen in that you are hiding the control flow of the program an…

  18. comment
    Comment #6001522

    They fixed Alt-Tab when I had never before realised it was broken. The new paradigm just makes so much more sense: Alt-Tab switches between applications and Alt-` switches between …

  19. comment
    Comment #4530636

    Can you explain you think Genetic Programming is unsuitable? I honestly can't see why you think it wouldn't work.

  20. comment
    Comment #3934740

    One horrendous bug me and my friends came across with infuriating frequency was that the game would randomly change the word with another one of the same length when asking you to …

  21. comment
    Comment #3356266

    Stuff like this makes me twitch. Why are researchers so keen to have my car controlled by radio tags? The potential for abuse is seemingly never discussed because I feel that admit…

  22. comment
    Comment #3090745

    You should read http://www.scipy.org/PerformancePython if you haven't already seen it since it deals with the performance of nested loops. The only issue I guess would be portabili…