Explore >> Select a destination


You are here

chao-tic.github.io
| | shrik3.com
3.3 parsecs away

Travel
| | [AI summary] The user provided a detailed explanation of dynamic linking in the context of ELF binaries, covering topics such as the ELF format, symbol resolution, the dynamic linker, and various tools and functions involved in the process. They also mentioned other resources for further reading and included some additional content about the a.out format and other programming concepts. The user's message seems to be a comprehensive overview of dynamic linking and related topics, possibly for educational or reference purposes.
| | wiki.osdev.org
4.0 parsecs away

Travel
| | [AI summary] The provided text is an in-depth guide to understanding and implementing an ELF (Executable and Linkable Format) loader in low-level programming. It covers key concepts such as ELF headers, section headers, program headers, symbol tables, relocation entries, and the process of loading and executing ELF files. The text also includes code examples for parsing ELF headers, processing relocation entries, and handling memory mapping for segments.
| | eli.thegreenplace.net
4.5 parsecs away

Travel
| |
| | bartlomiejmika.com
37.7 parsecs away

Travel
| The purpose of this post is to provide instructions on how to setup a simple RESTful API server, in Golang, using only the net/http package and not any other third-party web framework. You will learn how to create REST endpoints within your project that can handle POST, GET, PUT and DELETE HTTP requests. This is the first post in a multi-post series.