Explore >> Select a destination


You are here

maplant.com
| | www.nayuki.io
5.7 parsecs away

Travel
| | [AI summary] The user has provided a comprehensive overview of the x86 architecture, covering topics such as basic arithmetic operations, control flow with jumps and conditionals, memory addressing modes, the stack and calling conventions, advanced instructions like SSE, virtual memory, and differences between x86-32 and x86-64. The user is likely looking for a summary or clarification of the x86 architecture, possibly for learning purposes or to reinforce their understanding.
| | erikmcclure.com
5.1 parsecs away

Travel
| | What exactly happens when you write Foo* foo = new Foo();? A lot is packed into this one statement, so lets try to break it down. First, this example is allocating new memory on the heap, but in order to understand everything that's going on, we're going to have to explain what it means to declare a variable on the stack. If you already have a good understanding of how the stack works, and how functions do cleanup before returning, feel free to skip to the new statement.
| | kuruczgy.com
5.9 parsecs away

Travel
| | [AI summary] The article discusses the author's experience of running Lean, a pure functional programming language, on an ESP32 microcontroller for a project involving LED control. Despite Lean's purity, the author utilized its monadic features to handle impure operations like GPIO manipulation and delays. The project involved significant optimizations, including custom bit-banging for the WS2812 LED protocol and reducing code size through various techniques. The author also outlines future directions for the project, including potential improvements in compilation, hardware support, and further optimizations.
| | www.nayuki.io
34.3 parsecs away

Travel
| [AI summary] The provided text is a detailed comparison of various QR Code generator libraries and their implementations in different programming languages. It covers multiple projects such as qrcodegen (Java, TypeScript, Python, C++, C, Rust), qr.js (JavaScript), QR-Logo (JavaScript), qrcode (Python), PyQRCode (Python), qrcode (Rust), qr (Go), Zint (C), and libqrencode (C). The text highlights the features, line counts, comments, and code organization of each library. It also mentions the author's own library, which is noted for its compact implementation, lack of extensive constant tables, and immutability of objects. The text includes information about the versions reviewed, dates, and the purpose of each library, such as encoding, decoding, and image gen...