Algorithmic Thinking is a book that teaches you how to think like a programmer by breaking down problems into smaller, manageable steps. It covers fundamental algorithms and data structures, and how to apply them to solve real-world problems.
Bookmarks
Here are some books and resources I really enjoyed and wanted to share
Code Like a Pro in Rust teaches you how to write idiomatic and efficient Rust code. You'll learn advanced Rust concepts and best practices for building robust applications.
Kafka in Action teaches you to build real-time data pipelines and stream processing applications using the Kafka platform. You'll learn Kafka's core concepts through relevant examples and hands-on exercises.
Learn how to build and use the complete spectrum of real-world compilers, including the frontend, optimization pipeline, and a new backend by leveraging the power of LLVM core libraries.
The official book for learning Rust, covering everything from basic syntax to advanced concepts
There are no easy decisions in software architecture. Instead, there are many hard parts--difficult problems or issues with no best practices--that force you to choose among various compromises. With this book, you'll learn how to think critically about the trade-offs involved with distributed architectures.
Explore how generative AI is transforming software testing. This book provides practical guidance on leveraging AI for test automation, code generation, and more.
This resource covers the basics of using Git from the command line, including essential commands for version control, branching, and collaboration.
This book provides a comprehensive guide to designing hexagonal architectures, a software design pattern that promotes maintainability and testability by separating core business logic from external dependencies.
Hands-On Dependency Injection in Go provides a practical guide to implementing dependency injection patterns in Go applications, improving code maintainability and testability.
The official Rust Programming Language book provides a comprehensive guide to learning Rust, from basic syntax to advanced concepts.
While not solely focused on pointers, 'The C Programming Language' covers pointers extensively, explaining their usage and importance in C programming.
While not solely focused on system programming essentials, 'The Go Programming Language' provides a solid foundation for system-level tasks in Go, covering topics like concurrency, memory management, and low-level operations.
Zero to Production in Rust teaches you how to build robust and scalable backend applications using Rust, covering topics like web frameworks, databases, and deployment.