Kick off your book project in 2 hours, get started with GhostAI in 2 hours, or do both! Free live workshops, on Zoom. You’ll leave with a real book project and a clear plan to keep going. Saturday, June 27, 2026.

Leanpub Header

Skip to main content

Filters

Category: "Computers and Programming"

Books

  1. Jetpack Compose Mechanisms
    A dissection of what runs beneath every @Composable
    Jaewoong

    This book takes you straight into the Compose compiler, runtime, and UI layer, all about Compose performance tuning, reading the source line by line and explaining the why behind every design decision, then connecting each internal mechanism back to the code you write every day. With four in-depth chapters, 40+ original diagrams, dozens of "In Practice" sections, and "Pro Tips for Mastery" sidebars, it turns Compose from a set of APIs you memorize into a system you can reason about from first principles, debug with confidence, and optimize with intent. The Course: Jetpack Compose Mechanisms

  2. Switching to Linux
    A Practical Guide for Windows and Mac Users
    Jay LaCroix

    Linux is one of the best decisions you can make for your computer — but knowing where to start is the hard part. This guide walks you through everything: choosing a distribution, installing it, and using it confidently every day. It was written by Jay LaCroix of Learn Linux TV, for complete beginners. No prior experience required.

  3. Manifest Android Interview 한국어
    GDE의 노하우가 담긴 질문으로 학습하는 안드로이드 기술 면접 가이드
    Jaewoong

    안드로이드 기술 면접에서 좋은 결과를 얻으려면 단순히 답을 외우는 것이 아니라, 개념을 올바르게 이해하고 실전에 적용해 보는 연습이 중요합니다. 이 책에서 다루는 108개의 면접 질문, 162개의 추가적인 실전 질문, 50개 이상의 Pro Tips를 통해 기술적 배경과 논리를 향상시킴으로써 실제 기술 면접의 대비뿐만 아니라, 안드로이드 생태계의 전반적인 지식을 학습하는데 큰 도움이 됩니다. 하드커버 에디션 (영문) | 페이퍼백 에디션 (영문) ISBN: 979-8285926436

  4. Build Your Own Coding Agent
    The Zero-Magic Guide to AI Agents in Pure Python
    J. Owen

    Skip the black-box frameworks. Build a production-grade AI coding agent from scratch in pure Python - cloud or local, tested with pytest, all in a single file.

  5. Docker Deep Dive
    Zero to Docker in a single book!
    Nigel Poulton

    This 2025 edition of Docker Deep Dive is a true masterpiece. The best-selling Docker book is up-to-date with the hottest Docker technologies and the latest industry trends. This edition includes a brand-new chapter on Docker Model Runner for fast, private LLM-based apps. You won't find a better and more up-to-date book on Docker. Hand-crafted and kept up to date over the past 9 years by best-selling author Nigel Poulton.

  6. First Principles in Scrum: OpenClaw Scrum and Scrum@Scale
    Create Trust at Machine Speed
    Jeff Sutherland

    Fifty RF‑101 Voodoos arrived in Vietnam. Forty‑seven were shot down in a year. The pilots who survived didn't fly faster aircraft — they cycled through the OODA loop faster than the missiles chasing them. Jeff Sutherland was one of them. He went on to co‑create Scrum. Now, six decades later, he is running AI agents through daily sprints at machine speed — and this book is the playbook for how to do it without getting shot down.

  7. The Sovereign Engineer
    AI Literacy for Software Professionals
    Russ Miles

    AI is an amplifier. It magnifies whatever engineering discipline — or lack of it — already exists, which means the bottleneck was never AI's capability; it is the collaboration space you design around it. This book is a six-level progression from early AI panic to sovereign engineering: the discipline of designing the environment in which human and artificial intelligence produce work worth keeping. It moves past prompting into the practices that compound — verification, habitat engineering, specification-first development, and the platform discipline that scales the practice across teams. The habitat is yours to design. Let's build it well.

  8. Practical Kotlin Deep Dive
    Unlocking the 'How' and 'Why' behind Kotlin fundamentals and internal mechanisms.
    Jaewoong

    Takes you from “how to use Kotlin” into “how Kotlin really works,” revealing the internal implementations, desmifying bytecodes and compiler behavior, and internals that shape the language. If you want to write smarter, more confident Kotlin across fundamentals, coroutines, and multiplatform, this is the book that shows you why everything is the way it is. Hardcover | Paperback | ISBN: 979-8243872744 [Course] Practical Kotlin Deep Dive Course

  9. Manifest Android Interview
    The ultimate guide to cracking Android technical interviews
    Jaewoong

    To ace your next Android job interview, focus on truly understanding the concepts, not just memorizing answers, and practicing how to apply them. With 108 interview questions, 162 additional practical questions, and 50+ pro tips, this book helps you sharpen skills, understand the why, and prepare for real-world technical challenges. Hardcover | Paperback | ISBN: 979-8285926436 The Course: Manifest Android Interview

  10. Introduction to Zig
    a project-based book
    Pedro Faria

    An open, technical and introductory book for the Zig programming language, which is a new general-purpose and low-level programming language.

  11. Practical Pydantic
    The Missing Guide to Data Validation in Python
    Nuno Bispo

    Bad data breaks good code. You’ve written Python that works perfectly in testing, only to watch it fail in production because of a malformed API request, a messy CSV, or a missing config value. That’s the hidden cost of Python’s flexibility: without runtime validation, you’re always one bad input away from a crash. Enter Pydantic. This book takes you from the foundations of data validation to real-world applications in APIs, data pipelines, configurations, and machine learning workflows. Along the way, you’ll explore practical techniques, advanced features, and alternatives like Marshmallow, attrs, and dataclasses, so you’ll always know which tool is right for the job. If you’re a Python developer, data engineer, or FastAPI user, this is your roadmap to writing safer, cleaner, and more reliable code.

  12. Why We Still Suck At Resilience
    Organizational Dynamics
    Adrian Hornsby

    Your organization does all the right things. They practice chaos engineering, GameDays, and load testing. They conduct incident reviews and operational readiness reviews. Yet the same types of incidents keep recurring. This book examines why resilience practices so often fail to build resilience, revealing the organizational dynamics that systematically transform learning mechanisms into compliance theater and what you can do to navigate them consciously.

  13. Build Your Own Database in Go From Scratch
    From B+tree to SQL in 3000 lines
    build-your-own.org

    Learn databases from the bottom up by coding your own, in small steps, and with simple Go code (language agnostic).Atomicity & durability. A DB is more than files!Persist data with fsync.Crash recovery.KV store based on B-tree.Disk-based data structures.Space management with a free list.Relational DB on top of KV.Learn how tables and indexes are related to B-trees.SQL-like query language; parser & interpreter.Concurrent transactions with copy-on-write data structures.

  14. Beyond Blinky
    Object-Oriented C++ Programming for Embedded Systems
    Nguyen Hoan Hoang

    Most embedded teams say they “avoid OOP” and “stick to C.” But look closely at real C codebases and you’ll find function-pointer tables, opaque handles, and generic device arrays—manual object models built the hard way. Beyond Blinky shows how to embrace that reality consciously, using modern C++ to design firmware that is readable, portable, and owned—without sacrificing performance or control. This book is about moving past the blinking LED mindset and designing embedded systems as living architectures, not scripts. To blinky and beyond—Let's make your IO sing!

  15. Mastering ast-grep
    A Comprehensive Guide to Structural Code Search, Linting, and Transformation
    Herrington Darkholme

    Master structural code search and refactoring with ast-grep, the definitive tool for AST-based code manipulation. This comprehensive guide builds your expertise from the ground up, revealing why regex-based searching fails and how Abstract Syntax Trees enable transformations that text-based tools cannot achieve. You'll progress from foundational concepts to advanced techniques, gaining the deep understanding and systematic skills to automate complex refactorings, enforce architectural patterns, and wield code structure itself as your instrument.