Viewing profile — loqi
loqi
HN member- Joined
- Sun, Jun 26, 2011, 9:48 PM UTC
- HN karma
- 72
- Public activity
- 68 items
- HN profile
- View on Hacker News ↗
About loqi
No profile information was provided.
Recent public activity
-
comment
Comment #11956106
Because nuclear plants can replace coal plants. Replacing a bad thing with a less bad thing is a good thing.
-
comment
Comment #11886113
ditching capital letters instead of punctuation would get rid of more redundant characters.
-
comment
Comment #11886062
Early 1800s: "Then why is slavery still legal in England et al?" Right now: "Then why is gay marriage illegal in Japan et al?" Etc. Your point has nothing to do with the drug war i…
-
comment
Comment #11881738
I am currently facing the grim possibility of a patent with my name on it for a system that's basically a poor imitation of decades-old technology. (But it works great with our oth…
-
comment
Comment #11858763
Thanks for the clarification. I'm certainly not claiming that people who avoid the project are somehow "less important" as a result of their decision. And I wouldn't doubt that it'…
-
comment
Comment #11858487
I'm not sure where you're getting this. The system is explicitly designed such that the author can not ultimately shape the network into whatever he wants. The only real control st…
-
comment
Comment #11845432
How so? Sharing arbitrary objects via memory requires some form of coordinated memory management. So you still need a process-wide GC, meaning you're probably stuck with that 30% h…
-
comment
Comment #11845345
Ah. So basically this[1]? [1]: https://gist.github.com/djspiewak/3a6ff436865d9e5794e4 I mean, I guess you're technically correct: If nothing else, the impact of his views on the pr…
-
comment
Comment #11844063
Well, if you define "comfortable tolerating his garbage" as "contributes to Urbit despite it being Yarvin's project", then tautological assertion is tautological. There is certainl…
-
comment
Comment #11388132
Rust disallows mutation of multiply-referenced data, which prevents things like iterator invalidation and data races.
-
comment
Comment #10885451
Speaking as someone who's been following the project for a few years and once actually bothered to learn Hoon, your first paragraph is probably the best criticism of Urbit I've see…
-
comment
Comment #10524050
I don't think Hoon's type system actually has a typeclass analogue. As far as I could tell, what it has is something like generics, but in a world where everything is ultimately a …
-
comment
Comment #10285261
Library gap aside, Lisp has an FFI. If you want to use libpng from Lisp, you just make some C calls. If you want to use libpng from Hoon, you first have to re-implement the functio…
-
comment
Comment #10213260
Greg Egan's Permutation City plays some novel games with reality.
-
comment
Comment #10107021
Same here. It's why I prefer to line-split conditionals in C-like languages like this: if (condition0 && condition1 && condition2) rather than the usual "trailing operator" style. …
-
comment
Comment #9860265
I quite consciously use "I feel like" to mark lowish confidence statements based primarily on fuzzy intuition or perception ("I feel like it's less work to move my eyes from side t…
-
comment
Comment #9620779
Looks like it is (was?) targeting roughly the same space as Julia.
-
comment
Comment #9608691
I haven't read the book, but from what I gather[1], the explanations were not all good. Getting to and from Miller's world should have required absurd amounts of energy. But as ext…
-
comment
Comment #9558468
> Unlike many other languages, Ela doesn't make any trade-offs, trying to combine distinct programming paradigms that don't fit well together. The author may want to tone down that…
-
comment
Comment #9509385
DTDs mercifully aside, there's this: http://okmij.org/ftp/Scheme/SXML.html I'm not sure what example in this thread you consider to be throwing information away - in a case like wh…
-
comment
Comment #9160096
Intuitively, the reason why it balances out is that while earlier items are more likely to be picked, they're also more likely to get kicked out after being picked.
-
comment
Comment #9116224
> Have you never had a sporting debate with a friend who's opinion you knew full well going in? Huh? You mean have I argued with a friend about a belief of theirs I was aware of ah…
-
comment
Comment #9115418
> The point of good argument isn't to convince the other party they are woefully wrong and everyone should just eventually come to the same conclusion. Applied to both parties in t…
-
comment
Comment #9035117
Good point, how about grep -f - 10-million-combos.txt ^D^D
-
comment
Comment #9030340
> C is great for systems and some application programming, C++ is rubbish This is a bizarre claim. C++ has its problems, but the fact that it allows zero-overhead abstractions over…