The Little Go Book


Karl Seguin - 2014
    It's aimed at developers who might not be quite comfortable with the idea of pointers and static typing.http://openmymind.net/The-Little-Go-B...

Deadfall Ridge


Duncan McGeary - 2018
    Wilderness guide Hart Davis reluctantly agrees to a booking: seven rough-looking men who don't look like they need any pointers on killing things. Little does Hart know that an innocent, long-ago favor—a package stashed away and forgotten—has become something worth killing for. Alone, with only the clothes on his back, Hart must survive not only being hunted by ruthless mercenaries and the local authorities, but also the onset of winter in the Strawberry Mountains. He has only one advantage: he knows this wilderness like the back of his hand. Somehow, he has to survive long enough to get the message out—a message that could topple a government.

The Go Programming Language


Alan A.A. Donovan - 2015
    It has been winning converts from dynamic language enthusiasts as well as users of traditional compiled languages. The former appreciate the robustness and efficiency that Go's lightweight type system brings to their code; the latter find Go's simplicity and fast tools a refreshing change. Thanks to its well-designed standard libraries and its excellent support for concurrent programming, Go is fast becoming the language of choice for distributed systems. The Go Programming Language is the definitive book on Go for the working programmer. It assumes no prior knowledge of Go, nor any other specific programming language, so you'll find it an accessible guide whether you come from JavaScript, Ruby, Python, Java, or C++. The book will quickly get you started using Go effectively from the beginning, and by the end, you will know how to use it well to write clear, idiomatic and efficient programs to solve real-world problems. You'll understand not just how to use its standard libraries, but how they work, and how to apply the same design techniques to your own projects. The earlier chapters will introduce you to the basic concepts of Go programming---numbers, strings, functions---while at the same time presenting important computer science concepts like recursion, and useful examples of graphics, UTF-8, and error handling. The chapters on methods and interfaces will show you a new way to think about object-oriented programming; the chapter on concurrency explains why concurrency is so important in modern programming, and how Go helps you handle it well. You'll also learn about Go's pragmatic but effective approach to testing; how to build, test, and manage projects using the go tool, and the art of metaprogramming using reflection. The book contains hundreds of interesting and practical examples that cover the whole language and a wide range of applications. The code samples from the book are available for download from gopl.io.

Introducing Go: Build Reliable, Scalable Programs


Caleb Doxsey - 2016
    Author Caleb Doxsey covers the language’s core features with step-by-step instructions and exercises in each chapter to help you practice what you learn.Go is a general-purpose programming language with a clean syntax and advanced features, including concurrency. This book provides the one-on-one support you need to get started with the language, with short, easily digestible chapters that build on one another. By the time you finish this book, not only will you be able to write real Go programs, you'll be ready to tackle advanced techniques.* Jump into Go basics, including data types, variables, and control structures* Learn complex types, such as slices, functions, structs, and interfaces* Explore Go’s core library and learn how to create your own package* Write tests for your code by using the language’s go test program* Learn how to run programs concurrently with goroutines and channels* Get suggestions to help you master the craft of programming

Defending the Innocent (Max Harrison #2)


Patrick Grisham - 2014
    Claire has been charged with the murder of her husband’s lover and the case against her is strong. But Max is convinced that Claire is too innocent to commit such a violent crime. Can Max defend her against the strong evidence? This thrilling legal short story will take you for a ride through the courtroom and leave you with twists and turns that you didn’t see coming.

Go in Practice


Matt Butcher - 2015
    Following a cookbook-style Problem/Solution/Discussion format, this practical handbook builds on the foundational concepts of the Go language and introduces specific strategies you can use in your day-to-day applications. You'll learn techniques for building web services, using Go in the cloud, testing and debugging, routing, network applications, and much more.

Argonauts: Books 1 - 3


Isaac Hooke - 2018
    Over a thousand pages of heart-pounding sci-fi action. One great price. With over a hundred thousand books sold and borrowed, the Argonauts series has been one of the best-selling sagas published on Amazon over the past year. For fans of military science fiction and space opera alike, this bundle contains the first three novels: Bug Hunt, You Are Prey, and Alien Empress. In this compelling set, Rade Galaal and his elite team of mercenaries enter the fray to deal with an alien infestation, infiltrate a stone-age civilization, and defend an extraterrestrial homeworld. Download this unique bundle today, because there's never been a better time to hunt some bugs.

True Justice


Joshua Grisham - 2016
    Sort of. When Brad Williams is offered a lot of money to take on a case for sly banker Jonas Baxter, he is in no position to refuse. Jonas has been charged with the attempted murder of local prostitute Tina Jade, but it quickly becomes evident that it is not the reason why the prosecution wants Jonas behind bars. So why are they still pressing ahead with the charges? What is Jonas guilty of? This thrilling legal short story will take you for a ride through the courtroom and leave you with twists and turns that you didn’t see coming.

Go in Action


William Kennedy - 2014
    The book begins by introducing the unique features and concepts of Go. Then, you'll get hands-on experience writing real-world applications including websites and network servers, as well as techniques to manipulate and convert data at speeds that will make your friends jealous.

Alexa: 1200 Best Things To Ask Alexa - The Top Alexa Questions You Wish You Knew (2017 Edition): (FREE: Download Inside)


James Ryan - 2016
    Well, look no further. This book contains the top Alexa dot questions that you wish you knew. After hours of searching, I have found and compiled the best questions you can ask. Each one has been tested and works perfectly. In this eBook, you'll discover... - Helpful ways to get the most out of your Alexa-enabled device - Fun questions to ask Alexa echo with your friends and family - Tips, tricks, and hours of entertainment with Alexa FREE DOWNLOAD INSIDE: "10 Alexa Skills You Need to Know" Buy this book now for only $.99 to get the most out of your Amazon product!

Saints & Strangers: Book 1-3


Keeley Bates - 2016
    If you like humorous cozy mysteries, get to know former TV actress and the eccentric residents of Westdale in the first 3 books of the Saints & Strangers cozy mysteries box set: A Dead End, Book 1 The Deep End, Book 2 The Bitter End, Book 3 Learn more about the author at keeleybates.com.

The Way to Go: A Thorough Introduction to the Go Programming Language


Ivo Balbaert - 2012
    "

Programming in Go: Creating Applications for the 21st Century


Mark Summerfield - 2012
    With this guide, pioneering Go programmer Mark Summerfield shows how to write code that takes full advantage of Go's breakthrough features and idioms. Both a tutorial and a language reference, "Programming in Go" brings together all the knowledge you need to evaluate Go, think in Go, and write high-performance software with Go. Summerfield presents multiple idiom comparisons showing exactly how Go improves upon older languages, calling special attention to Go's key innovations. Along the way, he explains everything from the absolute basics through Go's lock-free channel-based concurrency and its flexible and unusual duck-typing type-safe approach to object-orientation. Throughout, Summerfield's approach is thoroughly practical. Each chapter offers multiple live code examples designed to encourage experimentation and help you quickly develop mastery. Wherever possible, complete programs and packages are presented to provide realistic use cases, as well as exercises. Coverage includes:-- Quickly getting and installing Go, and building and running Go programs -- Exploring Go's syntax, features, and extensive standard library -- Programming Boolean values, expressions, and numeric types -- Creating, comparing, indexing, slicing, and formatting strings -- Understanding Go's highly efficient built-in collection types: slices and maps -- Using Go as a procedural programming language -- Discovering Go's unusual and flexible approach to object orientation -- Mastering Go's unique, simple, and natural approach to fine-grained concurrency -- Reading and writing binary, text, JSON, and XML files -- Importing and using standard library packages, custom packages, and third-party packages -- Creating, documenting, unit testing, and benchmarking custom packages

Milo's Marauders


Danny King - 2005
    Now twenty-seven, he's released from his latest stretch and returns home vowing to go straight. But things aren't that easy: his girlfriend has ditched him, he has to live on his brother's sofa and he can't get a job to save his life. On top of this, DS Weasel of CID keeps pulling him in for every little thing that happens in town. Now his former criminal mates have a humdinger of a job they want him in on ? a massive out-of-town supermarket. All he has to do is put together a gang of seven or eight lads and he could have the biggest payout of his life. Or the biggest headache. Milo's Marauders is the first in a new series of crime capers from the author of The Burglar Diaries. Set in the same crap town as King's riotous debut and featuring some of the same dodgy characters, Milo's Marauders will have you laughing like a maniac and gagging for more.

Design Of Steel Structures


N. Subramanian - 2008
    The text is based on the modern limit states approach to design and covers areas such as the properties of steel, types of steel structures, important areas of structural steel technology, bolted connections, welded connection, design of trusses, design of plate girders, and design of beam columns. Each chapter features solved examples, review questions, and practice problems as well as ample illustrations that supplement the text. Chapters on advanced topics such as protection of steel structures against corrosion and fire, fatigue resistant design, and design for torsion have been included in a CD that accompanies the book.