Viewing profile — Fistandantilus
Fistandantilus
HN member- Joined
- Thu, May 30, 2013, 3:53 PM UTC
- HN karma
- 8
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About Fistandantilus
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #8803045
It's a bit of an in-joke at this point (but PHP could really be a better language).
- comment
-
comment
Comment #6436372
Unfortunately, it seems to have been.
-
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
-
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…
-
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
-
comment
Comment #6219657
Is Javascript's const head-const or tail-const?
-
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…
-
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…
-
comment
Comment #6100730
Where is the social justice crowd when there's real sexism afoot?
-
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…
-
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…
-
comment
Comment #6021919
In English, sure. Not so for Chinese.
-
comment
Comment #6021896
I'd say it's closer to subtyping.
-
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.
-
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.
-
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…
-
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…
-
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' …
-
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.
-
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…
-
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…