Explore >> Select a destination


You are here

hbfs.wordpress.com
| | www.nayuki.io
4.8 parsecs away

Travel
| |
| | coredumped.dev
5.2 parsecs away

Travel
| | In this post, we are going to take a deep dive into pointer tagging, where metadata is encoded into a word-sized pointer. Doing so allows us to keep a compact representation that can be passed around in machine registers. This is very common in implementing dynamic programming languages, but can really be used anywhere that additional runtime information is needed about a pointer. We will look at a handful of different ways these pointers can be encoded and see how the compiler can optimize them for diff...
| | projectf.io
4.7 parsecs away

Travel
| | Sometimes you need more precision than integers can provide, but floating-point computation is not trivial (try reading IEEE 754). You could use a library or IP block, but simple fixed point maths can often get the job done with little effort. Furthermore, most FPGAs have dedicated DSP blocks that make multiplication and addition of integers fast; we can take advantage of that with a fixed-point approach.
| | alexandrugris.github.io
30.6 parsecs away

Travel
| These are my first steps in Go, this time learning how to build web services. The post touches handling requests, json serialization, middleware, logging, da...