Robbie
Robbie
Linux kids can't even `awk '$1 == "inet" && $2 != "127.0.0.1" { print $2; }'` On a more serious note, as a fellow CO21 graduate who thought hacking the...
@craigbarnes I'm working on one. I just figured if someone who already understands the syntax files could do it faster, they could make it first.
#8 mentions FFILibraryFinder. Maybe this is worth considering? ```st SQLite3Library >> unix32LibraryName ^ FFIUnix32LibraryFinder findAnyLibrary: #('libsqlite3.so.0' 'libsqlite3.so') ``` ```st SQLite3Library >> unix64LibraryName ^ FFIUnix64LibraryFinder findAnyLibrary: #('libsqlite3.so.0' 'libsqlite3.so') ``` ```st SQLite3Library...
> What is the use case for this? I was working on an API boundary, and ended up with a function signature that looked like: ``` fn render(&self, canvas: &mut...
Wrt. patterns, there seems to be `hex::type::EncodedString`, but I can't figure out how to use it. It seems like it would especially be useful with `std::string::NullString`.
@newpavlov Exactly the kind of feedback I was looking for. I’ll start hashing out a PR. Is there any sort of project-wide standard for introducing selectable backends? I understand that...
Performance (with `-C target-cpu=native`, Ryzen 9 7900X, `x86_64-pc-windows-msvc`): `soft` backend: ``` test groestl256_10 ... bench: 62.62 ns/iter (+/- 1.15) = 161 MB/s test groestl256_100 ... bench: 604.86 ns/iter (+/- 7.71)...
It seems like this issue is partially resolved by the new `pygame.Window` class and the `allow_high_dpi` keyword argument. However, the ability to query the display scale factor (via `SDL_GetDisplayContentScale` and...