Viewing profile — emergentcypher
emergentcypher
HN member- Joined
- Wed, Jul 02, 2014, 9:21 PM UTC
- HN karma
- 552
- Public activity
- 150 items
- HN profile
- View on Hacker News ↗
About emergentcypher
No profile information was provided.
Recent public activity
-
comment
Comment #11219389
Umm, newspapers enjoy freedom of the press because the 1st amendment explicitly guarantees freedom of the press. > Congress shall make no law [...] or abridging the freedom of spee…
-
comment
Comment #11195805
The only time I could ever see us adopting new calendar systems is when (if) we eventually migrate off-planet into space colonies or onto other bodies in the solar system. Why? Bec…
-
comment
Comment #11189671
Good. Get off this ride. I'm asking why the hell we are still stuck with the current packaging schemes.
-
comment
Comment #11189670
This attitude is exactly why Linux has such a horrible, horrible packaging experience. Building cross-distro packages is awful. Teaching users how to install packages is awful. Ins…
-
comment
Comment #11187524
Can we please stop talking about these "laws" that are based on absolutely nothing but observing an apparent trend that may not continue past tomorrow? Seriously, spoken to too man…
-
comment
Comment #11182972
Are there plans to work on integrating PGP encryption? N1 really looks nice but there are many people, like me, who can't move over until it gets e-mail encryption support.
-
comment
Comment #11182949
OK, I'll grant it this, PHP performance has improved quite a lot in recent years.
- comment
-
comment
Comment #11182913
Anything else.
-
comment
Comment #11182855
Does it have encryption yet?
-
comment
Comment #11181724
- PHP is slow. Unlike JS, it's generally interpreted and not JIT (unless you're Facebook). - Drupal has to bootstrap itself and all modules on every request. - Drupal makes waaaaay…
-
comment
Comment #11181713
Drupal has always performed like shit. 10/sec is actually pretty good for Drupal It's only good for managing static content, the only way you get any sort of performance out of it …
-
comment
Comment #11175196
That wording is worse than absurd. It's comical. Their ability to use a thesaurus does not make them intellectuals, in fact the exact opposite.
-
comment
Comment #11166694
Howabout the question is, should Congress repeal the All Writs Act.
-
comment
Comment #11147108
Really? What is this 10%? We're using Haskell for server-side programming at my work and it's been fantastic. Functional programming is so well suited for stateless web services.
-
comment
Comment #11146717
What I don't get about publishing the hashes, etc... if they are serving up tampered .iso files, why wouldn't they also change the website to serve the appropriate hashes for the h…
-
comment
Comment #11144920
created to stop a threat to humankind that we must defend against
-
comment
Comment #11110918
I don't think MVC belongs on server-side web frameworks at all. It's not a continuously updating interactive display, it's a one-off thing. You don't have a model object sitting ar…
-
comment
Comment #11098921
The point is that we did not have an opportunity to influence the negotiations and therefore the text of the treaty. We instead are presented almost with a fait accompli that we mu…
-
comment
Comment #11098893
I'd like to point out, in support of your arguments, that all artistic works are derivative. Creative works are not created in a vacuum. They copy and derive build upon the cumulat…
-
comment
Comment #11098812
Scala does not have lightweight threading. It uses the same thread pools from Java. All your millions of Actors are scheduled onto one of these thread pools.
-
comment
Comment #11098804
Scala runs on JVM and uses the same OS-level threads. What's going on here is the actors are being scheduled to run on a thread pool.
-
comment
Comment #11098793
Scala runs on JVM and uses OS-level threads. However, Actors are not threads, so in a way it's like user threads. One million actors will be scheduled to run on a pool of OS thread…
-
comment
Comment #11098773
Similarly the Haskell and Erlang are using lightweight threading.
-
comment
Comment #11094534
This is why the JS ecosystem frustrates me. We're talking about an ES7 -> ES6 transpilation, which I will then have to transpile again to ES5. And that's before we even hit the VM/…