Live data from Hacker News

Viewing profile — unlogic

unlogic

HN member
Joined
Tue, Aug 02, 2011, 8:07 AM UTC
HN karma
137
Public activity
77 items

About unlogic

No profile information was provided.

Recent public activity

  1. comment
    Comment #48911179

    85% AI according to Pangram.

  2. comment
    Comment #48761011

    It's $250 billion less that goes to the ultrarich, so that they can't purchase another $250 billion of assets.

  3. 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.

  4. comment
    Comment #48449214

    Check "DeArrow" chrome extension.

  5. comment
    Comment #48115561

    Taken out of context, an 18+ device called Magic Pointer coming from Google would be wild.

  6. 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.

  7. comment
    Comment #44733429

    And that angry user base will do what, exactly? Switch to Android? One can dream.

  8. 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?

  9. comment
    Comment #43004091

    The term "linear scaling" was invented by cloud companies to sell more cloud.

  10. 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…

  11. 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…

  12. 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…

  13. 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.

  14. story
  15. story
  16. comment
    Comment #33952958

    This you can't do, unfortunately. Would have to do something stupid like `(< -1 index length)`.

  17. comment
    Comment #24293289

    IDFA is a cheatcode of its own (ID Full Ammo).

  18. 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…

  19. 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…

  20. 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…

  21. 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…

  22. 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…

  23. comment
    Comment #19891051

    Typo > tenures all those requests to OldGen

  24. 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…

  25. 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 …