Live data from Hacker News

Viewing profile — Fistandantilus

Fistandantilus

HN member
Joined
Thu, May 30, 2013, 3:53 PM UTC
HN karma
8
Public activity
23 items

About Fistandantilus

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #8803045

    It's a bit of an in-joke at this point (but PHP could really be a better language).

  3. comment
  4. comment
    Comment #6436372

    Unfortunately, it seems to have been.

  5. comment
    Comment #6436156

    I try to refrain from bragging, but the feeling of victory isn't as sweet if nobody knows about it. http://imgur.com/d6uDadO

  6. comment
    Comment #6285230

    I didn't read the paper, and this seems like a no brainer, so it is probably addressed therein. However, the article didn't mention it, so I feel like I should bring it up. Assumin…

  7. comment
    Comment #6257136

    Using clones to extend one's life is a similar theme in the book The House of the Scorpion by Nancy Farmer. http://en.wikipedia.org/wiki/The_House_of_the_Scorpion

  8. comment
    Comment #6219657

    Is Javascript's const head-const or tail-const?

  9. comment
    Comment #6217560

    I believe the D language and Rust both support this kind of model, where functions can be optionally pure, and data optionally immutable. They are both C-like as well, though D see…

  10. comment
    Comment #6173769

    >...I've never seen a bug in production that could have been prevented with static analysis That's because they're hidden by the lack of static analysis. They're just waiting for t…

  11. comment
    Comment #6100730

    Where is the social justice crowd when there's real sexism afoot?

  12. comment
    Comment #6084241

    Smalltalk is many things, but I don't think it can be considered fast. As for CLISP, it has 50 years of performance optimzations behind it. CLISP programmers can actually mix compi…

  13. comment
    Comment #6051954

    > Exceptions are horrible if you're trying to make a fast, dependable, reliable, low-level, concurrent modern day programming language, as Go is. Go is in no way "low-level", and i…

  14. comment
    Comment #6021919

    In English, sure. Not so for Chinese.

  15. comment
    Comment #6021896

    I'd say it's closer to subtyping.

  16. comment
    Comment #5984138

    I wonder if this means that in the internet age, where there is an endless stream of new information, we are experiencing the passage of time far slower than previous generations.

  17. comment
    Comment #5953174

    Important to note is that Lorem Ipsum is not correct Latin, and many words have been removed or changed slightly, such as "adipiscing", which is not a real Latin word.

  18. comment
    Comment #5901155

    Javascript is inherently dis -functional (hehe) as it relies heavily on mutation and side-effects, rather than immutability and functional purity. First-class functions do not mean…

  19. comment
    Comment #5898700

    Exceptions can be used in strategic places to ensure that a value returned can never be null. Ex: public Person findPerson(String name) { for (Person p : personList) { if (p.getNam…

  20. comment
    Comment #5881075

    I'd agree with you, but as you know we have universal health care in Canada which is funded by the government. Therefore, what people do with their body is actually the taxpayers' …

  21. comment
    Comment #5799530

    I would say that they're still smaller than C++, which has syntactical and semantic corners that very few people even know about.

  22. comment
    Comment #5799468

    Are we programmers or children? This type of behaviour is completely unprofessional. If I were one of these "investors" that the author was demoing to and saw that this is how he c…

  23. comment
    Comment #5799328

    "[Javascript] is functional. Really." I don't really agree; just because a language has first-class functions and closures, that doesn't make it a functional language. Sure, you ca…