Viewing profile — Fulgen
Fulgen
HN member- Joined
- Wed, Aug 30, 2023, 9:19 PM UTC
- HN karma
- 60
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About Fulgen
No profile information was provided.
Recent public activity
- story
-
comment
Comment #47056340
This is about raw_sql, which is explicitely documented to not use prepared statements and thus doesn't support query parameters; not about the actual query() API SQLx offers. > Not…
-
comment
Comment #46651783
C++20 actually [changed the semantics of consume]( https://devblogs.microsoft.com/oldnewthing/20230427-00/?p=10... ), but Rust doesn't include it. And last I remember compilers sti…
-
comment
Comment #46190840
https://en.cppreference.com/w/cpp/utility/unreachable.html
-
comment
Comment #45970720
In Rust or in general? Because an arbitrary "too old" moniker is not something I've seen happening, and the only target that was removed instead of demoted in recent times was i586…
-
comment
Comment #45965930
Nobody noticed because Windows special cased InstallShield. https://devblogs.microsoft.com/oldnewthing/20131031-00/?p=27...
-
comment
Comment #45962686
The problem is, as usual, that some people want that support, but nobody is actually interested in helping out with that support - and that doesn't only include people willing to h…
-
comment
Comment #45145125
> You should absolutely be XP pair programming with your LLM. If you want AI slop everywhere, that is.
-
comment
Comment #45096084
In some ways, Windows already does that too - the 32-bit syscall wrappers [switch into a 64-bit code segment]( https://aktas.github.io/Heavens-Gate ) so the 64-bit ntdll copy can c…
-
comment
Comment #44875059
> You're starting to feel it absolutely everywhere Starting to? 30-50% of the HN front page has been consisting of articles about LLMs for months now, to the point that a user scri…
-
comment
Comment #44420377
The Netherlands proved you can do bike lanes quite well, not every country has to be a nightmare for life quality like the US aspires to be.
-
comment
Comment #44038853
So the point is to use technological advancements only to increase company profit and not pass any on to the actual workers. If a junior costs 1/4 of a senior, they could easily pa…
-
comment
Comment #44038519
> 1/4th of their salary If they + AI are a replacement for senior devs, shouldn't they be paid accordingly?
-
comment
Comment #43543815
As the previous commenter said - you don't need a new runtime instance per button, so the comparison doesn't really work (for the smallest binary size, you could provide a native a…
-
comment
Comment #43505513
Fortunately for everyone, the Western world that the comment you replied to was talking about is not just the US.
-
comment
Comment #42566449
> There are very limited things you are supposed to do in an APC, but these are poorly documented and need one to think carefully about what is happening when a thread is executing…
-
comment
Comment #41956485
Focusing on the GUI applications: There have been a few GUI automation solutions over the years - since the post's software is from MS, I'll take UI Automation as an example. Works…
-
comment
Comment #41762010
(Also not the point, C# can be AOT-compiled as well these days)
-
comment
Comment #41026483
As the other commenter said, `unreachable!()` panics. You'd need https://doc.rust-lang.org/core/hint/fn.unreachable_unchecked...
-
comment
Comment #41000056
> linux for example doesn't have true IO async API io_uring has been around for a few years at this point, with vulnerabilities having been fixed to the point that it's fit for bro…
-
comment
Comment #37329310
Or notepad++ could just use the WinAPI (WideCharToMultiByte) to convert UTF-16 to UTF-8 instead of hand writing their own conversion routine.