Live data from Hacker News

Viewing profile — GyrosOfWar

GyrosOfWar

HN member
Joined
Mon, Sep 02, 2013, 5:01 PM UTC
HN karma
43
Public activity
24 items

About GyrosOfWar

https://github.com/GyrosOfWar

Recent public activity

  1. comment
    Comment #10071896

    Small correction: Rust doesn't have exceptions. panic!() crashes the current thread with an optional error message, but it doesn't do stack traces and there's no try/catch in the l…

  2. comment
    Comment #7957926

    Yeah, that's definitely an issue. The Scala auto-complete is not very responsive, which makes the whole IDE experience with Scala pretty undesirable, sadly. I've been using IDEA wi…

  3. comment
    Comment #7863533

    Yeah.. If you're gonna give your app a name from a foreign language, at least look it up in a dictionary. "Die Referenz" would be correct.

  4. comment
    Comment #7730065

    Also to note, the American qualifiers for the tournament will start tomorrow and run until Thursday. There's a good mix of North and South American teams in the qualifier and the s…

  5. comment
    Comment #7722577

    Really a fantastic performance. The recording quality of both video and audio are excellent too.

  6. comment
    Comment #7667701

    You could try Fauxbar, which is a Chrome extension version of the Firefox Awesomebar. I really like it.

  7. comment
    Comment #7556508

    How would immutability help with performance? (I'm not trying to ask a leading question, just curious) Value types are obviously nice for better cache performance (less pointer cha…

  8. comment
    Comment #7366757

    I see, that makes sense.

  9. comment
    Comment #7366187

    It's addressed, but in the wrong way. IEEE 754 has positive and negative infinity for a reason. Why do there have to be 255 zero values? Also, what about rounding modes? Floating p…

  10. comment
    Comment #7132538

    Modern C# and C++ both have facilities that make the languages much more concise (lambdas in combination with std::algorithm resp. LINQ, type inference and the like). Java 8 will a…

  11. comment
    Comment #7096498

    Exactly. For someone like me who likes building websites for fun (and by myself), but sucks at design and CSS, Bootstrap is a godsend. Because of it, I can concentrate on the stuff…

  12. comment
    Comment #7096085

    There really is porn for everything, huh?

  13. comment
    Comment #7096075

    The German names are all rather convincing, except for the sometimes lacking umlauts. (interestingly, only in the surnames) No one is called Jager here, unless they anglicized thei…

  14. comment
    Comment #7063021

    I like Programming Praxis ( http://programmingpraxis.com/ ), it has mostly algorithmic problems and the questions also include solutions.

  15. comment
    Comment #7012616

    With ((x | y) % 7) != 0), I get this result in Processing: http://i.imgur.com/K35xxI7.png I think I know what I'll do for the rest of the evening.

  16. comment
    Comment #6989954

    It's also great advice. I especially liked the part at the end about using simple and direct language and the active voice. This alone makes a paper much easier to digest even if t…

  17. comment
    Comment #6866508

    The site crashes my browser (rather, the tab it's running in, Chrome 32) I see a loading bar, then I see something resembling a Spelunky level for a few seconds and then it crashes…

  18. comment
    Comment #6629146

    Very cool. This really makes me want to get better at Haskell. I know enough of it to understand what's going on here, but not enough to be able to come up with something like this…

  19. comment
    Comment #6590811

    What do you even mean with that? Marking all JVM languages as unsafe? Marking JavaScript as unsafe (because it has so much to do with Java, right?) The issues Mozilla has with Java…

  20. comment
    Comment #6590633

    > One thing I would like to see: MS should ban FF because it is insecure :) Any follow-up on that? FF is, to my belief at least, one of the more secure browsers.

  21. comment
    Comment #6571449

    From what I've read in the Play documentation, this is intentional. [0] They say: > SQL is already the best DSL for accessing relational databases. I have no real opinion on the ma…

  22. comment
    Comment #6463271

    Brady Haran's videos are in general very good. All of his videos are in this style, concentrated on a single topic and in general shorter than ten minutes. I especially like the Si…

  23. comment
    Comment #6335689

    > Also note that there is a HUGE performance difference between appending and prepeding to a list. :-) If you're going to do a lot of appending, might I suggest a ListBuffer or a V…

  24. comment
    Comment #6328247

    Modern statically typed languages (cough cough not Java cough) generally have static type inference, which removes a lot of redundancy from the code. Being able to do val object = …