VirtualTam's bookmarks
160 bookmarks found
-
- Antithesis - So you think you want to write a deterministic hypervisor?
- Resonate - Deterministic Simulation Testing
- TigerBeetle - Deterministic Simulation Testing
- Introducing Limbo: A complete rewrite of SQLite in Rust - Can we match SQLite’s world-famous reliability?
- Polar Signals - (Mostly) Deterministic Simulation Testing in Go
-
Text normalization in Go
2024-11-28 Standard library:
- unicode - Data and functions to test some properties of Unicode code points
Extra libraries:
- golang.org/x/text - Supplementary Go packages for text processing, many involving Unicode
- golang.org/x/text/runes - Tansforms for UTF-8 encoded text
- golang.org/x/text/transform - Reader and writer wrappers that transform the bytes passing through
- golang.org/x/text/unicode/norm - Types and functions for normalizing Unicode strings
- golang.org/x/text/unicode - Building blocks for other packages in golang.org/x/text
Third-party libraries:
- anyascii/go - Converts Unicode characters to their best ASCII representation
RFCs:
- RFC 8264 - PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols
- RFC 8265 - PRECIS for Usernames and Passwords
- RFC 8266 - PRECIS for Nicknames
Resources:
-
The Annotated Hacker Test | For those of us who didn't receive a case of beer with our computer.
2024-11-19 - Original plain text version from 1989
- Real Programmers Don't Use PASCAL (see:
THE REAL PROGRAMMER'S NATURAL HABITAT
)
-
go-recipes - Tools for Go projects
2024-10-13 -
Sequoia-PGP - OpenPGP Implementation in Rust
2023-11-09 - Sequoia PGP: A Sapling Matures: Meet sq 1.0
- Talk about OpenPGP interop testing at the IETF 110
- sequoia-pgp/sequoia - APIs for dealing with OpenPGP data
- sequoia-pgp/sequoia-sq - the Sequoia-PGP command line tool
- RpmSequoia
-
Functional table-driven tests in Go
2023-04-18 -
A class or other object knows too much or does too much, and is therefore difficult to test or change
-
- https://stackoverflow.com/questions/63724484/build-and-bind-against-older-libc-version
- https://doc.rust-lang.org/rustc/platform-support.html
- https://www.reddit.com/r/rust/comments/n6udyk/building_rust_binaries_in_ci_that_work_with_older/
- https://users.rust-lang.org/t/how-to-compile-rust-with-a-specific-glibc-version-for-gnueabihf-architecture/6680
- https://kobzol.github.io/rust/ci/2021/05/07/building-rust-binaries-in-ci-that-work-with-older-glibc.html
-