Viewing profile — serichsen
serichsen
HN member- Joined
- Tue, Mar 23, 2010, 6:33 PM UTC
- HN karma
- 253
- Public activity
- 166 items
- HN profile
- View on Hacker News ↗
About serichsen
No profile information was provided.
Recent public activity
-
comment
Comment #18978834
Integer division: I think the best thing to do is to produce an exact rational, like Clojure that was mentioned, and most Lisps, where it got that from.
-
comment
Comment #18978523
Lisps do NOT do textual inclusion. Lisp systems are created from code, not text. I guess that the author only saw the use of `use-package' or the `:use' option of `defpackage', but…
-
comment
Comment #18092982
The sport here seems to be which compiler manages to re-write the bad code best. Tail call optimization is only marginally relevant here, since the tail call is the addition, not o…
-
comment
Comment #17983047
- Technical decisions from non-technical people (especially management and politics) - False commitment to up-front design decisions, even in the face of absurdities and architectu…
-
comment
Comment #16154386
From my german perspective, every assumption in this article looks quite gross and barbaric. Here, everyone is insured. If you break your arm, you get it fixed. If you get cancer, …
-
comment
Comment #15736306
Given the choice, I would.
-
comment
Comment #14807420
The Fisher-Yates shuffle has an off-by-one.
-
comment
Comment #14756948
Lisp's problem is rather that so many people play around with it, but not long enough to develop /good taste/ in it, and finally loudly complain about the language when their real …
-
comment
Comment #14756694
Common Lisp has “first” and “rest” as aliases for “car” and “cdr” where it makes sense.
-
comment
Comment #14234287
Valid points, but not _the_ point. There is a big difference between allowing and supporting something. OO languages _support_ hidden inputs and outputs as well as programming by m…
-
comment
Comment #10559595
There seems to be a problem with ko: it alerts that retaking is forbidden even though the board has changed. Afterwards, play seems to be ended.
-
comment
Comment #10409691
I am not on that mailing list, but I'd like to point out Emacs Lisp, which doesn't have modules (they would rather be called "packages" as in Common Lisp, but anyway, they just are…
-
comment
Comment #10211787
I see two problems with the basic idea of JSX: - Parsing is a mess, it is not even obviously unambiguous. - HTML syntax is horrible, and all templating language attempts building o…
-
comment
Comment #10211552
OK, so who manages the keys, and how? I am aware of only two general principles to do this: centralized certificate authorities (possibly chained), and decentralized assurance, a. …
-
comment
Comment #10129888
It seems OK, but it would have been better if it was made by someone with more familiarity and experience with the language.
-
comment
Comment #10059594
The question is about defaults. Current default of C and C++ is to cut all corners wherever it is not clearly impossible (sometimes even then). That is the insanity. Of course you …
-
comment
Comment #10059578
> When those systems aren't well thought out or secure you have security issues. All evidence says that there are no well thought out and secure systems written in C or C++. If the…
-
comment
Comment #10042325
Yeah! Or COBOL! PHP! INTERCAL!
-
comment
Comment #10040749
> Until very recently, this situation would not have occurred. Until very recently, people didn't even have smartphones that could have been suspected to contain useful information…
-
comment
Comment #9532347
COBOL will never die, either.
-
comment
Comment #9498560
“I've seen things you people wouldn't believe…”
-
comment
Comment #8709389
> XML is just s-exprs No. That myth has been decisively addressed by Erik Naggum about 12 years ago. His summary: > They are not identical. The aspects you are willing to ignore ar…
-
comment
Comment #8248028
Huh?
-
comment
Comment #7020415
Meh. This is not "ahead of the curve" but just the mainstream, maybe a little behind.
-
comment
Comment #7013178
12. No! That is not a good shuffle. Search for "javascript shuffle" to find a correct Fisher-Yates implementation.