Jan-Paul Bultmann

Results 32 comments of Jan-Paul Bultmann

So happy to see some activity! ❤️ Can't wait to pass that `--weak-refs` flag to bindgen some day 😅 ✨

I feel like mesh would also be an interesting contender for this. It manages to reduce the memory footprint significantly, and feels like it would fit zig. https://github.com/plasma-umass/Mesh https://www.youtube.com/watch?v=xb0mVfnvkp0&ab_channel=MicrosoftResearch Edit:...

I think it's reasonable to look for alternatives to rustls that don't rely on webpki. Even if the dns issue was resolved, there are other issues that seem to have...

> rustls is an essential part of Deno as it is the entire backbone of all of our TLS operations. Replacing it would be a large refactor. The only viable...

> We have tests validating that this works. Famous last words 😆 ``` $deno test --cert "/Users/jp/.minio/certs/public.crt" --allow-net test/test_triblemq.js Check file:///Users/jp/Desktop/triblesspace/tribles-deno/$deno$test.ts running 1 tests test Check loopback. ... Connected to...

Figured I'd also give it a shot, might be a better mascot than a logo though: Meet Pyotr the snake. In a more ferris like variant: ![pyo3logo](https://github.com/user-attachments/assets/a58df5fb-bf20-4d1a-907c-67db1773e770) Or in a...

Since succinct datastructures generally lack pointers and are often static/write-once, it seems like there isn't that much of a need for using a serialization framework? An API to safely cast...

The hardcoded `Device::Cpu` was actually in the quantized `matmul` implementation of `candle-core v4.1`, which is fixed in the latest release, so at least that one is solved 😄

My apologies if I haven't been clear. Yeah cache pinning is essentially the feature I'm looking for 😄 My proposal was along the lines of the following changes: https://github.com/arthurprs/quick-cache/blob/d1c7d96811eb4dd318857a6bd943c7f027469380/src/lib.rs#L120 ```rust...

> Inside the cache, items have different "hotness". So theoretically an item can be compacted (or moved to disk) when they're cold or something. In practice, it's quite hard to...