Book picks similar to
C Programming Pocket Primer by O. Campesato
programming
humble
inventory
inventory-digital
Stray Bullets, Vol. 2: Somewhere Out West
David Lapham - 2005
Here, two young lovers on the run from the Mob will learn that love is more than just another four-letter word. A once-beautiful, now-broken woman will let the demons of her past pull her down into a thick soup of depravity and death. A betrayed little girl running from everything will decide to help someone and be scarred forever. And a big lug with big dreams will achieve fame and glory and then throw it all away. These are just some of the people whose tales will stick in your gut for the rest of your days.
The Wiz Biz
Rick Cook - 1997
What the spell delivered was master hacker Walter "Wiz" Zumwalt. The wizard who east the spell was dead and nobody -- not the elves, not the dwarves, not even the dragons -- could figure out what the shanghaied computer nerd was good for.But spells are a lot like computer programs, and, in spite of the Wiz's unprepossessing appearance, he was going to defeat the all-powerful Black League, win the love of a beautiful red-haired witch, and prove that when it comes to spells and sorcery, nobody but nobody can beat a Silicon Valley computer geek!Published in parts as Wizard's Bane and The Wizardry Compiled This is the first unitary edition.
High Performance Spark: Best Practices for Scaling and Optimizing Apache Spark
Holden Karau - 2017
But if you haven't seen the performance improvements you expected, or still don't feel confident enough to use Spark in production, this practical book is for you. Authors Holden Karau and Rachel Warren demonstrate performance optimizations to help your Spark queries run faster and handle larger data sizes, while using fewer resources.Ideal for software engineers, data engineers, developers, and system administrators working with large-scale data applications, this book describes techniques that can reduce data infrastructure costs and developer hours. Not only will you gain a more comprehensive understanding of Spark, you'll also learn how to make it sing.With this book, you'll explore:How Spark SQL's new interfaces improve performance over SQL's RDD data structureThe choice between data joins in Core Spark and Spark SQLTechniques for getting the most out of standard RDD transformationsHow to work around performance issues in Spark's key/value pair paradigmWriting high-performance Spark code without Scala or the JVMHow to test for functionality and performance when applying suggested improvementsUsing Spark MLlib and Spark ML machine learning librariesSpark's Streaming components and external community packages
The Cobra Trilogy
Timothy Zahn - 2004
Outnumbered and on the defensive, Earth made a desperate decision. It would attack the aliens not from space, but on the ground-with forces the Trofts did not even suspect. Thus were created the Cobras, a guerilla force whose weapons were surgically implanted, invisible to the unsuspecting eye, yet undeniably deadly. But power brings temptation . . . and not all the Cobras could be trusted to fight for Earth alone. Jonny Moreau would learn the uses-and abuses-of his special abilities, and what it truly meant to be a Cobra.
Witchblade Rebirth Volume 1
Tim Seeley - 2012
Pezzini quickly discovers that a change of scenery and occupation hasn't changed one thing... the Witchblade is still a magnet for the supernatural Quickly drawn into a conflict between two mystical gangs, she must once again balance her responsibility as bearer of the Witchblade with her personal life.
Mark Waid's The Green Hornet, Volume 1
Mark Waid - 2013
When he finally oversteps his bounds, an innocent man pays a terrible price... and the legend of the Green Hornet may be forever tarnished! From the mind of superstar writer Mark Waid (Kingdom Come) comes a new era for the classic pulp hero!
Planetfall
Scott G. Gier - 1993
Genellan -- the sole refuge for a ship's crew and a detachment of spacer marines, abandoned by a fleet fleeing from alien attackers. Now winter is coming, and the savage bear people are returning, bent on destroying every human -- but not before stealing the secret of hyperlight drive, the key to interstellar flight . . . .
The Linux Command Line
William E. Shotts Jr. - 2012
Available here:readmeaway.com/download?i=1593279523The Linux Command Line, 2nd Edition: A Complete Introduction PDF by William ShottsRead The Linux Command Line, 2nd Edition: A Complete Introduction PDF from No Starch Press,William ShottsDownload William Shotts’s PDF E-book The Linux Command Line, 2nd Edition: A Complete Introduction
Two Scoops of Django: Best Practices for Django 1.5
Daniel Roy Greenfeld - 2013
We'll introduce you to various tips, tricks, patterns, code snippets, and techniques that we've picked up over the years.This book is great for:Beginners who have just finished the Django tutorial.Developers with intermediate knowledge of Django who want to improve their Django projects.
The Swords of Glass, Vol. 1 : Yama
Sylviane Corgiat - 2009
But everything changes the day a sword of glass falls from the sky, just as the prophecy had announced. Anyone who touches the sword is instantly turned to glass and dies. Orland, the local lord of war, comes to take possession of the unique weapon but fails to retrieve it. In the process, Yama’s father is killed and her mother taken away. Yama, however, escapes and survives with only one thought: when she grows up, she will return to get the sword of glass, and avenge her parents.
The Way to Go: A Thorough Introduction to the Go Programming Language
Ivo Balbaert - 2012
"
Wild Blue Yonder
Mike Raicht - 2014
Unfortunately, dwindling supplies and bloodthirsty air pirates make life all the harder. Join the crew of the Dawn as they battle their way through dangerous threats from other crews and deadly hazards.
Molly Moon's Homemade Ice Cream: Sweet Seasonal Recipes for Ice Creams, Sorbets, and Toppings Made with Local Ingredients
Molly Moon Neitzel - 2012
So much so that they've been happily lining up for a cone or signature sundae ever since, and now you can make her delicious ice creams, sorbets, and toppings at home! Arranged in the book by season--with the focus on using local, fresh fruit and herbs in combinations that are both familiar and surprising--you will find recipes for most flavors imaginable and even those a little unimaginable. From childhood favorites to avant-garde, adult-only fare, including the classic Vanilla Bean to the exotic Cardamom to the adventurous Balsamic Strawberry and the comforting Maple Bacon (try a scoop on oatmeal for a special winter breakfast treat!), these ice creams and sorbets are both simple and fun to make. Of course, they're even more fun to eat!
The Rust Programming Language
Steve Klabnik
This is the undisputed go-to guide to Rust, written by two members of the Rust core team, with feedback and contributions from 42 members of the community. The book assumes that you’ve written code in another programming language but makes no assumptions about which one, meaning the material is accessible and useful to developers from a wide variety of programming backgrounds.Known by the Rust community as "The Book," The Rust Programming Language includes concept chapters, where you’ll learn about a particular aspect of Rust, and project chapters, where you’ll apply what you’ve learned so far to build small programs.The Book opens with a quick hands-on project to introduce the basics then explores key concepts in depth, such as ownership, the type system, error handling, and fearless concurrency. Next come detailed explanations of Rust-oriented perspectives on topics like pattern matching, iterators, and smart pointers, with concrete examples and exercises--taking you from theory to practice.The Rust Programming Language will show you how to: Grasp important concepts unique to Rust like ownership, borrowing, and lifetimes Use Cargo, Rust’s built-in package manager, to build and maintain your code, including downloading and building dependencies Effectively use Rust’s zero-cost abstractions and employ your ownYou’ll learn to develop reliable code that’s speed and memory efficient, while avoiding the infamous and arcane programming pitfalls common at the systems level. When you need to dive down into lower-level control, this guide will show you how without taking on the customary risk of crashes or security holes and without requiring you to learn the fine points of a fickle toolchain.You’ll also learn how to create command line programs, build single- and multithreaded web servers, and much more.The Rust Programming Language fully embraces Rust’s potential to empower its users. This friendly and approachable guide will help you build not only your knowledge of Rust but also your ability to program with confidence in a wider variety of domains.
Introduction to Computer Theory
Daniel I.A. Cohen - 1986
Covers all the topics needed by computer scientists with a sometimes humorous approach that reviewers found refreshing. The goal of the book is to provide a firm understanding of the principles and the big picture of where computer theory fits into the field.