Explore >> Select a destination


You are here

blog.japaric.io
| | blog.m-ou.se
4.8 parsecs away

Travel
| | The fmt::Arguments type is one of my favorite types in the Rust standard library. It's not particularly amazing, but it is a great building block that is indirectly used in nearly every Rust program. This type, together with the format_args!() macro, is the power behind print!(), format!(), log::info!() and many more text formatting macros, both from the standard library and community crates. In this blog post, we learn how it works, how it is implemented today, and how that might change in the future.
| | mcyoung.xyz
2.8 parsecs away

Travel
| |
| | kuterdinel.com
3.0 parsecs away

Travel
| | I demonstrate how you can write a simple JIT (Just In Time) compiler for x86 in about 1000 lines of C code.
| | pmig96.wordpress.com
13.5 parsecs away

Travel
| When I heard of WebAssembly (WASM for short) a few years ago, I thought: take your C program, compile it to WASM and the browser will simply run it, right? Well, WASM is not (yet) a first-class citizen in the browser world. It does not have access to all APIs and resources that JavaScript has....