Live data from Hacker News

Viewing profile — Isognoviastoma

Isognoviastoma

HN member
Joined
Wed, Sep 23, 2020, 7:29 PM UTC
HN karma
110
Public activity
33 items

About Isognoviastoma

No profile information was provided.

Recent public activity

  1. comment
    Comment #47480642

    > curried functions often don't compose nicely Same for imperative languages with "parameter list" style. In python, with def f(a, b): return c, d def g(k, l): return m, n you can'…

  2. comment
    Comment #47374822

    Current social consensus is that copyright exists and one can only use software on conditions stated in license. Thus, proprietary and copyleft have same protection. Another possib…

  3. comment
    Comment #47369041

    Copyleft is copyright held in smart way. Nobody can take code under GPL and make its _copy_ proprietary because it would be violation of copyright. In the other thread you argued t…

  4. comment
    Comment #47368594

    Most of FOSS is not a free gift, but asks for some form of repay. MIT asks for credit. GPL asks or credit and GPL'ing of things built atop. Unlicense is a free gift, but it is a mi…

  5. comment
    Comment #45937261

    Easy to check: try to speak with someone talking foreign language you don't know and estimate what percentage of what they said you understood from tone of voice etc. I would guess…

  6. comment
    Comment #43944665

    https://tixy.land/?code=%28%28t%2F4%2Batan2%28x-8%2Cy-7%29%2... a radar

  7. comment
    Comment #42824725

    It's impressing that browser can display many levels of recursive iframe.

  8. comment
    Comment #41753356

    √2 with floating point is obviously closest representable number. With fixed point it is obviously closest representable number as well. With rationals, you need to arbitrarily lim…

  9. comment
    Comment #41752474

    - after few operations denominator exceeds 64-bit range, so you either need bigint, or make fractions approximate, what is in affect fixed point - often you use decimal fraction on…

  10. comment
    Comment #40370061

    Thanks for sharing! A bit of css, and it's possible to read mastodon posts with a web browser! head {display:block; background:Canvas; color:CanvasText;} meta[content] {display:blo…

  11. comment
    Comment #39108455

    Was nvidia driver foss or proprietary?

  12. comment
    Comment #39107878

    With proprietary software, how many times a producer did fix breakage or add missing feature for you because you bought a licence (subscription)? How fast was it?

  13. comment
    Comment #37377677

    Keycap displays could be used to shuffle letters, thus prevent touch typing and force neck moves.

  14. comment
    Comment #37186533

    Chronosort is closer to radix sort, as both are O(n) if values are bounded. Queue-sort (aka heapsort) is O(n log n).

  15. comment
    Comment #35748301

    There are two commands that do work in shebang: /bin/sh and /usr/bin/env. Everything else will break sooner or later: BSDs, Nix, Linux distros with separate /bin and /usr/bin and s…

  16. comment
    Comment #34375151

    After failing too many times looked up how it is supposed to look https://img.shapecatcher.com/svg/9731.svg >, then got it on second approach https://cdn.imgpaste.net/2023/01/14/K6…

  17. comment
    Comment #34281917

    Call it "JSON API", that pinpoints all important characteristics of most "REST" APIs lacking HATEOAS.

  18. comment
    Comment #34037132

    Right, I forgot storage. Yet in the context of "a model (spreadsheet) with bounded storage and bounded computation steps count is TM complete when looping is externalized", one can…

  19. comment
    Comment #34034234

    Notably, finite automata are Turing complete. (TM is DFA + looping).

  20. comment
    Comment #33476599

    Reading this I think I understood what's behind "some tangential thing is majority of success" claims: it is multiplier, not percentage of absolute level. "One can be 4x more perfo…

  21. comment
    Comment #32336515

    Nope, depending on your workflow, you can miss features of Krusader like archive integration, browsing over ssh, lock-step navigation in panels, selection modes, builtin editor/vie…

  22. comment
    Comment #30420778

    C begins to increase rate of adding breaking changes. C23 is about to - add keywords that was valid identifiers before - remove K&R parameter syntax - change semantics of the most …

  23. comment
    Comment #30107227

    It's like turning your car's engine off overnight because that uses fuel.

  24. comment
    Comment #28174448

    > Firefox is may freeze the user agent to a two-digit number like "Firefox/99.0." Opera did that when version went up from 9 to 10. Too many websites looked at first digit of versi…

  25. comment
    Comment #26800421

    That's how I use pass on Linux. A key shortcut is bind to script that calls "xdotool getwindowfocus getwindowname", selects credentials set based on it, asks for master password wi…