Live data from Hacker News

Viewing profile — SoothingSorbet

SoothingSorbet

HN member
Joined
Tue, Mar 05, 2024, 9:31 AM UTC
HN karma
94
Public activity
43 items

About SoothingSorbet

No profile information was provided.

Recent public activity

  1. comment
    Comment #43442275

    That sounds fun. I tried to design an assembly game once, but found I lack the creativity to design puzzles/goals that are not just "implement this common algorithm in assembly lan…

  2. comment
    Comment #42691852

    > It's uniquely inconsistent (many distinct toolkits with irreconcilable look-and-feel, even in the base system) While I agree that Windows has long since abandoned UI/UX consisten…

  3. comment
    Comment #42467238

    I still find this explanation confusing because decoder-only transformers still embed the input and you can extract input embeddings from them. Is there a difference here other tha…

  4. comment
    Comment #42427317

    I wonder, is there a good reason to use Dillo over something like Netsurf or Ladybird nowadays? They support far more of the Web (i.e. more likely to be useful) while still being l…

  5. comment
    Comment #42314459

    > but sadly, the secrets of how I am doing it are in Intel’s proprietary cblas_sgemm_batch() function. Perhaps you can reverse engineer it?

  6. comment
    Comment #42234029

    Please explain how you would solve the iterator invalidation problem using only C++ and RAII. Thanks.

  7. comment
    Comment #42154970

    > Java solved it with a JAR file JARs still require a JRE to run, and the runtime needs to be invoked. The equivalent would probably be a Python zipapp (which are just Python files…

  8. comment
    Comment #42050508

    I love your idea of using it for compression. I didn't notice a link to any code, would you be open to sharing the code? I'd love to take a look at how you did things and play arou…

  9. comment
  10. comment
    Comment #41977603

    Ballmer also gave us the maligned Windows Vista and Windows 8. Microsoft has also been way more open source friendly during Nadella's tenure, whereas Ballmer was openly hostile to …

  11. comment
    Comment #41960205

    I don't know if Google has changed their position, but Mozilla is willing to accept a memory-safe (read: Rust) JXL decoder [1]. If it becomes used in Firefox, maybe there's a chanc…

  12. comment
    Comment #41959999

    Yes, CanvasBlocker for Firefox does this: https://addons.mozilla.org/en-US/firefox/addon/canvasblocker e.g. For me it shows a new unique fingerprint each refresh.

  13. comment
    Comment #41796803

    Why managed when it could be in Rust and have both performance and safety? The Servo shouldn't have ever been laid off. Yes, I'm aware a team is working on it now, but it isn't up …

  14. comment
    Comment #41613957

    > 1. non reproducible is there in the API It should be reproducible if you set the temperature to 1, have you tried that?

  15. comment
    Comment #41613926

    > However, the telemetry of VSCode is non-personal metrics I don't care, I don't want my text editor to send _any_ telemetry, _especially_ without my explicit consent. > some of th…

  16. comment
    Comment #41527284

    There's no difference there because the types are already disjoint. Say you wanted to define some function taking `YYMMDD | MMDDYY`. If both YYMMDD and MMDDYY are just aliases to `…

  17. comment
    Comment #41498653

    Indeed. And importantly, you could tell exactly which UI elements were which. It's sometimes genuinely difficult to tell if an element is text, a button, or a button disguised as a…

  18. comment
    Comment #41498552

    > Windows exists to enable the user to do whatever he wants It's very bad at that, then, considering it insists on getting in my way any time I want to do something (_especially_ s…

  19. comment
    Comment #41498536

    I'm sure Windows is perfectly capable of driving a GOP framebuffer. That doesn't mean the kernel has an actual GPU driver.

  20. comment
    Comment #41498454

    That's interesting, why would notepad.exe use mmapped files?

  21. comment
    Comment #41498441

    > Arguably asyc/await could help with this; obviously it didn't exist in 1991 when Linux was created Wouldn't that just consist of I/O operations returning futures and then having …

  22. comment
    Comment #41498337

    Linux has changed dramatically since its first release. It has major parts rewritten every decade or so, even. It just doesn't break its ABI with userspace.

  23. comment
    Comment #41484936

    The screenshot is not "ugly", but I agree that the README is functionally useless -- no documentation, no examples, no indication of why I'd want to use this. Fails on a fundamenta…

  24. comment
    Comment #41484922

    What "sucks" about it? Since they added type checking it's been perfectly fine, besides the notable omission of nullable types (which is... a strange omission, to be sure).

  25. comment
    Comment #41484897

    > PDB (which isn't documented)... What about https://github.com/Microsoft/microsoft-pdb ? Not technically documentation, but the closest thing to it.