Viewing profile — SoothingSorbet
SoothingSorbet
HN member- Joined
- Tue, Mar 05, 2024, 9:31 AM UTC
- HN karma
- 94
- Public activity
- 43 items
- HN profile
- View on Hacker News ↗
About SoothingSorbet
No profile information was provided.
Recent public activity
-
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…
-
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…
-
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…
-
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…
-
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?
-
comment
Comment #42234029
Please explain how you would solve the iterator invalidation problem using only C++ and RAII. Thanks.
-
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…
-
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…
- comment
-
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 …
-
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…
-
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.
-
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 …
-
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?
-
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…
-
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 `…
-
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…
-
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…
-
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.
-
comment
Comment #41498454
That's interesting, why would notepad.exe use mmapped files?
-
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 …
-
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.
-
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…
-
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).
-
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.