Viewing profile — unlogic
unlogic
HN member- Joined
- Tue, Aug 02, 2011, 8:07 AM UTC
- HN karma
- 137
- Public activity
- 77 items
- HN profile
- View on Hacker News ↗
About unlogic
No profile information was provided.
Recent public activity
-
comment
Comment #48911179
85% AI according to Pangram.
-
comment
Comment #48761011
It's $250 billion less that goes to the ultrarich, so that they can't purchase another $250 billion of assets.
-
comment
Comment #48537377
Check out sunrise-commander, it is Dired reskinned as a dual-paner. Love how convenient it is to have a powerful integrated file manager.
-
comment
Comment #48449214
Check "DeArrow" chrome extension.
-
comment
Comment #48115561
Taken out of context, an 18+ device called Magic Pointer coming from Google would be wild.
-
comment
Comment #48094985
Turning didn't work for me. Impressive as hell indeed! The author is probably already busy 100xing other projects, no time to fix such a minor nuisance.
-
comment
Comment #44733429
And that angry user base will do what, exactly? Switch to Android? One can dream.
-
comment
Comment #43004171
I believe you, but it would be nice if you called out the exact vendors that do that, for others to be cautious. It's not like their pricing is under NDA, right?
-
comment
Comment #43004091
The term "linear scaling" was invented by cloud companies to sell more cloud.
-
comment
Comment #37033701
Clojure authors are quite conservative about adding such opinionated instruments into the language, especially when they come from outside. But fortunately, being a Lisp allows Clo…
-
comment
Comment #37033678
It could certainly be redesigned to have explicit lazy collections/operations and use transducers as the composition glue. It would be a breaking change, so it's never going to hap…
-
comment
Comment #37033092
Well, if you already use transducers, then you are not exactly the target audience:). It's meant more for the younger developers who see a core language feature and feel inclined t…
-
comment
Comment #37031895
I'm sorry my article had such an effect on you. Despite the inconveniences, it is still a very worthy language to pick up.
- story
- story
-
comment
Comment #33952958
This you can't do, unfortunately. Would have to do something stupid like `(< -1 index length)`.
-
comment
Comment #24293289
IDFA is a cheatcode of its own (ID Full Ammo).
-
comment
Comment #20076048
Oh no, I'm saying it's another usecase, not the only one. And yet, it is a pattern I follow quite often in my mixed Clojure/Java projects: Clojure code is much easier to tinker wit…
-
comment
Comment #20074884
Whatever the benefits of Clojure are, they were enough for Nathan Marz and first contributors to write Storm in it and succeed. Note that it's not an argument about impossibility o…
-
comment
Comment #20074447
To me, this makes total sense as the project moved to Apache. Obviously, much more people will be able to consider contributing when it's in Java. Apache goal is sustainability and…
-
comment
Comment #19893403
Well, if caching takes a small part of the overall workload, then you can't really say it's a "cache workload" or "cache-heavy workload", right? My answer meant that Shenandoah wou…
-
comment
Comment #19892069
> wouldn't the majority of allocations still happen during a request? Could you please clarify this question? Do you mean that if cached objects are a small part of the total alloc…
-
comment
Comment #19891051
Typo > tenures all those requests to OldGen
-
comment
Comment #19890686
Completely vice-versa, Shenandoah is much better for caching because it is NOT generational. [LRU] Caches go against generational hypothesis because the oldest elements are evicted…
-
comment
Comment #19890680
Hi, author here. You are saying exactly what I was thinking before. But turns out, generational GCs have nasty failure modes when things don't go as expected. E.g., if an upstream …