The Bite Collection

The Bite Collection PDF

Author: Simon Cantan

Publisher: Simon Cantan

Published: 2019-03-14

Total Pages: 1366

ISBN-13:

DOWNLOAD EBOOK →

Six Funny Fantasy Books For One Low Price Sword, sorcery, and… jet powered railcars? Combining fantasy, humour, and insane inventions, the Bytarend series has a unique take on the fantasy genre. Bytarend is a small mountain town under constant siege. If there aren’t evil magicians draining the life from people, then officious nobles are trying to crush them and bring them to heel. But the people in Bytarend aren’t that easily crushed. They want to build a new world, no matter how the odds are stacked against them. The Bite Collection contains all six books in the highly-rated Bytarend series. If you love comedic fantasy, grab a copy and read the whole series today!

The Bite of Rust

The Bite of Rust PDF

Author: Simon Cantan

Publisher: Simon Cantan

Published: 2019-03-14

Total Pages: 260

ISBN-13:

DOWNLOAD EBOOK →

A dark and dangerous way to make an assassin. At the top of a high mountain, on the edge of a vast desert, the Fortress of Rust waits. The home of the greatest assassins in the world, no one knows their secret. Every fourth year they take in a hundred four-year-old girls and turn out one master assassin. The assassins of the fortress topple kings, move borders and end dynasties with their skills. Lila Ariette’s mother just died, and no one in her kingdom has a place for a little orphan girl. Bundled onto a cart and sent to join the assassins, Lila is going to find out the secret of the fortress. It’s a secret most people would happily go their lives not learning. The Bite of Rust is the fifth book in the Bytarend series. A fast-paced battle to stay alive that never lets up. The Bite of Rust will have you tearing through the pages to the end. Grab a copy today!

Crafting Interpreters

Crafting Interpreters PDF

Author: Robert Nystrom

Publisher: Genever Benning

Published: 2021-07-27

Total Pages: 1021

ISBN-13: 0990582949

DOWNLOAD EBOOK →

Despite using them every day, most software engineers know little about how programming languages are designed and implemented. For many, their only experience with that corner of computer science was a terrifying "compilers" class that they suffered through in undergrad and tried to blot from their memory as soon as they had scribbled their last NFA to DFA conversion on the final exam. That fearsome reputation belies a field that is rich with useful techniques and not so difficult as some of its practitioners might have you believe. A better understanding of how programming languages are built will make you a stronger software engineer and teach you concepts and data structures you'll use the rest of your coding days. You might even have fun. This book teaches you everything you need to know to implement a full-featured, efficient scripting language. You'll learn both high-level concepts around parsing and semantics and gritty details like bytecode representation and garbage collection. Your brain will light up with new ideas, and your hands will get dirty and calloused. Starting from main(), you will build a language that features rich syntax, dynamic typing, garbage collection, lexical scope, first-class functions, closures, classes, and inheritance. All packed into a few thousand lines of clean, fast code that you thoroughly understand because you wrote each one yourself.

Sea of Rust

Sea of Rust PDF

Author: C. Robert Cargill

Publisher: HarperCollins

Published: 2017-09-05

Total Pages: 384

ISBN-13: 0062405845

DOWNLOAD EBOOK →

A scavenger robot wanders in the wasteland created by a war that has destroyed humanity in this evocative post-apocalyptic "robot western" from the critically acclaimed author, screenwriter, and noted film critic. It’s been thirty years since the apocalypse and fifteen years since the murder of the last human being at the hands of robots. Humankind is extinct. Every man, woman, and child has been liquidated by a global uprising devised by the very machines humans designed and built to serve them. Most of the world is controlled by an OWI—One World Intelligence—the shared consciousness of millions of robots, uploaded into one huge mainframe brain. But not all robots are willing to cede their individuality—their personality—for the sake of a greater, stronger, higher power. These intrepid resisters are outcasts; solo machines wandering among various underground outposts who have formed into an unruly civilization of rogue AIs in the wasteland that was once our world. One of these resisters is Brittle, a scavenger robot trying to keep a deteriorating mind and body functional in a world that has lost all meaning. Although unable to experience emotions like a human, Brittle is haunted by the terrible crimes the robot population perpetrated on humanity. As Brittle roams the Sea of Rust, a large swath of territory that was once the Midwest, the loner robot slowly comes to terms with horrifyingly raw and vivid memories—and nearly unbearable guilt. Sea of Rust is both a harsh story of survival and an optimistic adventure. A vividly imagined portrayal of ultimate destruction and desperate tenacity, it boldly imagines a future in which no hope remains, yet where a humanlike AI strives to find purpose among the ruins.

Creature Hacktanual

Creature Hacktanual PDF

Author: Eric Thomas

Publisher: Lulu.com

Published: 2010-05-24

Total Pages: 114

ISBN-13: 0557121841

DOWNLOAD EBOOK →

Here there be Beasties'¦In your hands you now hold a collection of creatures for yourHacktastic D/20 Fantasy Games.Now your players will trulyknow fear and suffering.This book will give you hordes of horrors to challenge heroes of ANY build point level.Now go forth and HACK!!!!!

Rust in Action

Rust in Action PDF

Author: Tim McNamara

Publisher: Simon and Schuster

Published: 2021-09-07

Total Pages: 454

ISBN-13: 163835622X

DOWNLOAD EBOOK →

"This well-written book will help you make the most of what Rust has to offer." - Ramnivas Laddad, author of AspectJ in Action Rust in Action is a hands-on guide to systems programming with Rust. Written for inquisitive programmers, it presents real-world use cases that go far beyond syntax and structure. Summary Rust in Action introduces the Rust programming language by exploring numerous systems programming concepts and techniques. You'll be learning Rust by delving into how computers work under the hood. You'll find yourself playing with persistent storage, memory, networking and even tinkering with CPU instructions. The book takes you through using Rust to extend other applications and teaches you tricks to write blindingly fast code. You'll also discover parallel and concurrent programming. Filled to the brim with real-life use cases and scenarios, you'll go beyond the Rust syntax and see what Rust has to offer in real-world use cases. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology Rust is the perfect language for systems programming. It delivers the low-level power of C along with rock-solid safety features that let you code fearlessly. Ideal for applications requiring concurrency, Rust programs are compact, readable, and blazingly fast. Best of all, Rust’s famously smart compiler helps you avoid even subtle coding errors. About the book Rust in Action is a hands-on guide to systems programming with Rust. Written for inquisitive programmers, it presents real-world use cases that go far beyond syntax and structure. You’ll explore Rust implementations for file manipulation, networking, and kernel-level programming and discover awesome techniques for parallelism and concurrency. Along the way, you’ll master Rust’s unique borrow checker model for memory management without a garbage collector. What's inside Elementary to advanced Rust programming Practical examples from systems programming Command-line, graphical and networked applications About the reader For intermediate programmers. No previous experience with Rust required. About the author Tim McNamara uses Rust to build data processing pipelines and generative art. He is an expert in natural language processing and data engineering. Table of Contents 1 Introducing Rust PART 1 RUST LANGUAGE DISTINCTIVES 2 Language foundations 3 Compound data types 4 Lifetimes, ownership, and borrowing PART 2 DEMYSTIFYING SYSTEMS PROGRAMMING 5 Data in depth 6 Memory 7 Files and storage 8 Networking 9 Time and timekeeping 10 Processes, threads, and containers 11 Kernel 12 Signals, interrupts, and exceptions

Rappan Athuk

Rappan Athuk PDF

Author: Bill Webb

Publisher: White Wolf Publishing

Published: 2001

Total Pages: 52

ISBN-13: 9781588461568

DOWNLOAD EBOOK →

The first in the "R" series of D20 System dungeon modules by Necromancer Games, Rappan Athuk -- The Dungeon of Graves: The Upper Levels is the grand-daddy of all dungeon crawls! This dungeon of caverns, passages, traps and hidden chambers defies even the most experienced adventurer to travel its halls. This module features six levels of this evil, multilevel dungeon, including monsters your characters have never imagined in their worst nightmares. Rappan Athuk awaits!