Viewing profile — BodkinsOdds
BodkinsOdds
HN member- Joined
- Sat, Jun 15, 2024, 5:29 PM UTC
- HN karma
- 2
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About BodkinsOdds
No profile information was provided.
Recent public activity
-
comment
Comment #43009745
C++ is already so reliant on optimizing `const&` parameters that I can't imagine why you wouldn't use them if you happen to be stuck with a shitty embedded toolchain (or MSVC) that…
-
comment
Comment #43009727
Needing that MakeArguments macro makes this substantially worse than just defining an aggregate struct for your arguments and using designated initializers. I've never wanted to re…
-
comment
Comment #40766825
There's a couple: https://github.com/stackotter/swift-cross-ui (Linux + Windows) https://github.com/TokamakUI/Tokamak (WASM + MacOS + some Ubuntu support) They both had to rewrite …
-
comment
Comment #40691334
- Anonymous enums/structs in parameters/match statements I'm not sure what you mean by this, could you elaborate?
-
comment
Comment #40691245
Nope. For the foreseeable future, stable ABI on other platforms is basically only going to happen if a distro starts supporting an ABI stable standard library on their own.
-
comment
Comment #40691208
Go is the only one of the three that directly uses syscalls. Rust and Swift both go through libc. Swift never even had the option of directly using syscalls, since it was originall…