Explore >> Select a destination


You are here

bernsteinbear.com
| | v8.dev
9.7 parsecs away

Travel
| | Liftoff is a new baseline compiler for WebAssembly, shipping in V8 v6.9.
| | ketansingh.me
10.5 parsecs away

Travel
| | A place for me to share my thoughts, experiences, and insights on technology relevant to enthusiasts and hackers like myself
| | blog.pyston.org
11.1 parsecs away

Travel
| | Creating an implementation for a dynamic language using just in time compilation (JIT)techniques involves a lot of compromisesmainly between complexity of the implementation, speed, warm-up time and memory usage. Especially speed is a difficult trade-off because it's very easy to end-up spending more time optimizing a piece of code and emitting the assembly than we...
| | adventures.michaelfbryan.com
41.3 parsecs away

Travel
| Have you ever been in a situation where, because of how the code is structured, it's practically impossible to inject a dependency into the component that needs it? Even global variables - ubiquitously reviled for their ability to do "spooky action at a distance" - weren't spooky enough. In this article, I'll share a technique I discovered while working on a WebAssembly-based CAD package that allows for dependency injection at link time. This technique is particularly useful when traditional dependency injection methods aren't available or practical.