But typst itself is fully open-source. Saying it’s a „partially open-source project” is a mischaracterization. You don’t need to use the web IDE and it’s not strictly part of the „typst project”
- 0 Posts
- 7 Comments
Joined 2 years ago
Cake day: June 10th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
nrab@sh.itjust.worksto Programming@programming.dev•Why do libraries define their own true and false?English2·6 months agostdbool.h (along with float.h, limits.h, stdarg.h, stddef.h, stdint.h, and some other library facilities) is required to be provided even in freestanding environment so, at least as long as you use an ISO C conformant compiler, you can always include those even if you don’t have a libc implementation
I didn’t even know chimeraOS existed while having known about chimera Linux for years so I guess that shows you how much the name clash matters
nrab@sh.itjust.worksto Rust@programming.dev•sqlx::Transaction and Arc<Mutex<Transaction>>English5·8 months agoMake sure there’s only one strong reference and call Arc::into_inner to move it out of the Arc. Same can be done with Mutex::into_inner to move the transaction out of the mutex
NixOS everywhere (except for one server which I have yet to migrate from Rocky to NixOS)
Honestly if you never had to deal with more than one lifetime parameter per function and/or type, good for you! As for what 'de is used for in serde — it’s the lifetime of the data you’re deserializing. It’s not really relevant unless you’re deserializing borrowed data, which is very very rarely the case, especially when it comes to web development which I’m guessing you’re most familiar with