Building an Operating System with Rust.pdf
1.9 MB
Building an Operating System with Rust: A Practical Guide ( Robert Johnson ). HiTeX Press 2024
❤1🤮1
LINUX with Operating System Concepts.pdf
5.6 MB
LINUX with Operating System Concepts ( Richard Fox ). CRC Press 2015
Learn C Programming through Nursery Rhymes and Fairy Tales.pdf
26.5 MB
Learn C Programming through Nursery Rhymes and Fairy Tales ( Shari Eskenas ). 2024
😁2❤1💊1
Forwarded from Programming Deadlock
std::move doesn't move anything: A deep dive into Value Categorieshttps://0xghost.dev/blog/std-move-deep-dive/
0xghost.dev
std::move doesn't move anything: A deep dive into Value Categories
Why std::move is just a cast, how it kills RVO if used wrong, and the mechanics of ownership transfer.
👍1
Forwarded from Вісник Бене Джессеріт🧬
ResearchGate
(PDF) Blue Hair and the Blues: Dying Your Hair Unnatural Colours is Associated with Depression
PDF | A number of lines of evidence, such as studies of religious converts and members of conspicuous subcultures, have found a relationship between... | Find, read and cite all the research you need on ResearchGate
Forwarded from Programming Deadlock
Barebones RISC-V OS written in Zig
https://timmy.moe/blog/barebones-os-zig/
https://timmy.moe/blog/barebones-os-zig/
Forwarded from Programming Deadlock
The Green Tea Garbage Collector (Go)
https://go.dev/blog/greenteagc
https://go.dev/blog/greenteagc
go.dev
The Green Tea Garbage Collector - The Go Programming Language
Go 1.25 includes a new experimental garbage collector, Green Tea.
Forwarded from Programming Deadlock
Porting Lean to the ESP32-C3 RISC-V microcontroller
https://kuruczgy.com/blog/2024/07/31/lean-esp32/
https://kuruczgy.com/blog/2024/07/31/lean-esp32/
Forwarded from Programming Deadlock
Practical Security in Production: Hardening the C++ Standard Library at massive scalehttps://queue.acm.org/detail.cfm?id=3773097
Forwarded from Programming Deadlock
Compiler Options Hardening Guide for C and C++
https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html
https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html
OpenSSF Best Practices Working Group
Compiler Options Hardening Guide for C and C++
The Best Practices for OSS Developers working group is dedicated to raising awareness and education of secure code best practices for open source developers.
Forwarded from Programming Deadlock
Memory is slow, Disk is fast (C)
https://www.bitflux.ai/blog/memory-is-slow-part2/
https://www.bitflux.ai/blog/memory-is-slow-part2/
Forwarded from Programming Deadlock
The Arena: Custom Memory Allocators in Chttps://www.bytesbeneath.com/p/the-arena-custom-memory-allocators
Bytesbeneath
The Arena - Custom Memory Allocators in C
Easy, Flexible Memory Management
Forwarded from Programming Deadlock
Writing Your Own Memory Allocators in C++
https://screwjankgames.github.io/engine%20programming/2020/09/24/writing-your-own-memory-allocators.html
https://screwjankgames.github.io/engine%20programming/2020/09/24/writing-your-own-memory-allocators.html
Screwjank Games
Writing Your Own Memory Allocators in C++
I’ve recently started working on a new game engine and, since I have no restraint, task zero was writing custom memory allocators. C++’s built in malloc() and new are great tools for getting a hold of raw memory, but they don’t leave any room for customization…
Forwarded from Programming Deadlock
Dependency Inversion in C
https://www.volatileint.dev/posts/dependency-inversion-c/
https://www.volatileint.dev/posts/dependency-inversion-c/
Volatile Int
Dependency Inversion in C: A Technique for Extensible Embedded Software
Learn how to implement dependency inversion in C using function pointer interfaces to decouple high-level logic from implementation details.
Forwarded from Programming Deadlock
The Cost Of a Closure in C
https://thephd.dev/the-cost-of-a-closure-in-c-c2y
https://thephd.dev/the-cost-of-a-closure-in-c-c2y
The Pasture
The Cost of a Closure in C
I had a vague idea that closures could have a variety of performance implications; I did not believe that so many of the chosen and potential designs for C a...