Life After Google: The Fall of Big Data and the Rise of the Blockchain Economy


George Gilder - 2018
    Gilder says or writes is ever delivered at anything less than the fullest philosophical decibel... Mr. Gilder sounds less like a tech guru than a poet, and his words tumble out in a romantic cascade." “Google’s algorithms assume the world’s future is nothing more than the next moment in a random process. George Gilder shows how deep this assumption goes, what motivates people to make it, and why it’s wrong: the future depends on human action.” — Peter Thiel, founder of PayPal and Palantir Technologies and author of Zero to One: Notes on Startups, or How to Build the Future The Age of Google, built on big data and machine intelligence, has been an awesome era. But it’s coming to an end. In Life after Google, George Gilder—the peerless visionary of technology and culture—explains why Silicon Valley is suffering a nervous breakdown and what to expect as the post-Google age dawns. Google’s astonishing ability to “search and sort” attracts the entire world to its search engine and countless other goodies—videos, maps, email, calendars….And everything it offers is free, or so it seems. Instead of paying directly, users submit to advertising. The system of “aggregate and advertise” works—for a while—if you control an empire of data centers, but a market without prices strangles entrepreneurship and turns the Internet into a wasteland of ads. The crisis is not just economic. Even as advances in artificial intelligence induce delusions of omnipotence and transcendence, Silicon Valley has pretty much given up on security. The Internet firewalls supposedly protecting all those passwords and personal information have proved hopelessly permeable. The crisis cannot be solved within the current computer and network architecture. The future lies with the “cryptocosm”—the new architecture of the blockchain and its derivatives. Enabling cryptocurrencies such as bitcoin and ether, NEO and Hashgraph, it will provide the Internet a secure global payments system, ending the aggregate-and-advertise Age of Google. Silicon Valley, long dominated by a few giants, faces a “great unbundling,” which will disperse computer power and commerce and transform the economy and the Internet. Life after Google is almost here.   For fans of "Wealth and Poverty," "Knowledge and Power," and "The Scandal of Money."

Pearls of Functional Algorithm Design


Richard S. Bird - 2010
    These 30 short chapters each deal with a particular programming problem drawn from sources as diverse as games and puzzles, intriguing combinatorial tasks, and more familiar areas such as data compression and string matching. Each pearl starts with the statement of the problem expressed using the functional programming language Haskell, a powerful yet succinct language for capturing algorithmic ideas clearly and simply. The novel aspect of the book is that each solution is calculated from an initial formulation of the problem in Haskell by appealing to the laws of functional programming. Pearls of Functional Algorithm Design will appeal to the aspiring functional programmer, students and teachers interested in the principles of algorithm design, and anyone seeking to master the techniques of reasoning about programs in an equational style.

Agile Software Development, Principles, Patterns, and Practices


Robert C. Martin - 2002
    The author incudes OOD, UML, Design Patterns, Agile and XP methods with a detailed description of a complete software design for reusable programs in C++ and Java. Using a practical, problem-solving approach, it shows how to develop an object-oriented application -- from the early stages of analysis, through the low-level design and into the implementation. Walks readers through the designer's thoughts -- showing the errors, blind alleys, and creative insights that occur throughout the software design process. KEY TOPICS: Covers: Statics and Dynamics; Principles of Class Design; Complexity Management; Principles of Package Design; Analysis and Design; Patterns and Paradigm Crossings. Explains the principles of OOD, one by one, and then demonstrates them with numerous examples, completely worked-through designs, and case studies. Covers traps, pitfalls, and work arounds in the application of C++ and OOD and then shows how Agile methods can be used. Discusses the methods for designing and developing big software in detail. Features a three-chapter, in-depth, single case study of a building security system. MARKET: For Software Engineers, Programmers, and Analysts who want to understand how to design object oriented software with state of the art methods.

Fire Me I Beg You: Quit Your Miserable Job (Without Risking it All)


Robbie Abed - 2018
    Maybe you’re stuck in a boring industry. Maybe your boss likes to slam doors. The truth is that many smart, motivated people would quit in a heartbeat if they weren’t afraid of the financial risks…and, well, the unknown. Whether you want to upgrade your 9-5 or start your own company, Robbie Abed presents a foolproof strategy to find a better job—without stressing, worrying your family, or losing money. You’re talented. Talent is in high demand. You just have to know where to look. In this accessible handbook, full of anecdotes, stories, and tips, you’ll learn how to reconnect with your interests, sharpen your talents, build a network, experiment with ideas for next steps, elicit job offers, and negotiate for higher salaries than your last. Oh, and how to quit your job with aplomb (goodbye email template included). You’ve been miserable for long enough. Look at it this way: hating your job might be the best thing that could’ve happened to you. It’s a kick in the pants to learn survival skills for the coming jobpocalypse. As our machines get smarter, robots, cognitive machines, and the simple software on your computer will render old jobs obsolete. In other words, there is no such thing as job security. The goal of this book is twofold: to help you get out before the music stops, and to teach you skills to find a job you love. Not just once, but anytime, anywhere, in any economic climate, with almost any salary goal. You didn’t hear that wrong.

Untold: The Daniel Morgan Murder Exposed


Alastair Morgan - 2017
    At the bottom of that iceberg of 'dark arts' - hacking, bugging and bribing bent cops - is the body of Daniel Morgan. The truth behind his killing is obscured by a web of corruption and cover-ups.Written by Daniel's brother Alastair, with investigative journalist Peter Jukes, Untold marks the 30th anniversary of the murder once described by an Assistant Commissioner of the Met as 'one of the most disgraceful episodes in the entire history of the Metropolitan Police Service.'Going beyond the number one hit podcast of the same name, this is the inside story in full. Including fresh revelations, new evidence, all the latest findings and, at its heart, the tragic story of a family whose lives have been torn apart in the search for answers.If you haven't heard of this story, ask yourself, why?

Fluent Python: Clear, Concise, and Effective Programming


Luciano Ramalho - 2015
    With this hands-on guide, you'll learn how to write effective, idiomatic Python code by leveraging its best and possibly most neglected features. Author Luciano Ramalho takes you through Python's core language features and libraries, and shows you how to make your code shorter, faster, and more readable at the same time.Many experienced programmers try to bend Python to fit patterns they learned from other languages, and never discover Python features outside of their experience. With this book, those Python programmers will thoroughly learn how to become proficient in Python 3.This book covers:Python data model: understand how special methods are the key to the consistent behavior of objectsData structures: take full advantage of built-in types, and understand the text vs bytes duality in the Unicode ageFunctions as objects: view Python functions as first-class objects, and understand how this affects popular design patternsObject-oriented idioms: build classes by learning about references, mutability, interfaces, operator overloading, and multiple inheritanceControl flow: leverage context managers, generators, coroutines, and concurrency with the concurrent.futures and asyncio packagesMetaprogramming: understand how properties, attribute descriptors, class decorators, and metaclasses work"

Writing An Interpreter In Go


Thorsten Ball - 2016
    Monkey has been specifically designed for this book: it's a language that looks a lot like C, has first class functions, closures, strings, hashes and arrays and its only implementation is the one we build in the book.In contrast to text books on interpreters & compilers, the focus of this book is working code. Code is not just found in the appendix -- no, nearly every page contains a snippet! And not only that, but also tests. The code presented in the book is fully tested and the test suite is included.For more information, check out: http://interpreterbook.com/

Indian Depredations in Texas


J.W. Wilbarger - 1985
     Frequently the two groups resorted to violence assert their rights to the lands. J. W. Wilbarger’s remarkable book Indian Depredations in Texas contains more than 250 separate narratives of attacks and counterattacks that occurred from the 1820s to the 1870s. Wilbarger, a pioneer who had emigrated to Texas in 1837, was fully aware of the dangers that he faced by living on the frontier of the American West as his own brother had miraculously survived being scalped and left for dead in 1833. Over the course of the next fifty years Wilbarger compiled accounts of Native American attacks that formed the basis of his book. Yet, rather than simply relying on hearsay and rumors of attacks, he sought out the victims and as he states in his Preface, many of the articles had been “written by others, who were either cognizant of the facts themselves or had obtained them from reliable sources." This book is fascinating work that remains an importance source covering the early settlement of the region by Americans, based on stories told by surviving pioneers. "unique among pioneer chronicles." — J. Frank Dobie J. B. Wilbarger was a Methodist minister, author and pioneer. He first moved West to Texas in 1837 at the urging of his brother Josiah Pugh Wilbarger. His book Indian Depredations in Texas was first published in 1889 and he passed away in 1892.

The Psychology of Computer Programming


Gerald M. Weinberg - 1971
    Weinberg adds new insights and highlights the similarities and differences between now and then. Using a conversational style that invites the reader to join him, Weinberg reunites with some of his most insightful writings on the human side of software engineering.Topics include egoless programming, intelligence, psychological measurement, personality factors, motivation, training, social problems on large projects, problem-solving ability, programming language design, team formation, the programming environment, and much more.Dorset House Publishing is proud to make this important text available to new generations of programmers -- and to encourage readers of the first edition to return to its valuable lessons.

Saved from Success: How God Can Free You from Culture’s Distortion of Family, Work, and the Good Life


Dale Partridge - 2018
    What he found challenged everything he believed about "the good life" and equipped him to rebuild an even better life based on God's timeless design. Filled with scripture and practical application, Saved from Success is the book millions of burned-out and bedraggled Christians have been waiting for.

The Lost Colony Murder on the Outer Banks: Seeking Justice for Brenda Joyce Holland (True Crime)


John Railey - 2021
    

Test-Driven Development: By Example


Kent Beck - 2002
    While some fear is healthy (often viewed as a conscience that tells programmers to be careful!), the author believes that byproducts of fear include tentative, grumpy, and uncommunicative programmers who are unable to absorb constructive criticism. When programming teams buy into TDD, they immediately see positive results. They eliminate the fear involved in their jobs, and are better equipped to tackle the difficult challenges that face them. TDD eliminates tentative traits, it teaches programmers to communicate, and it encourages team members to seek out criticism However, even the author admits that grumpiness must be worked out individually! In short, the premise behind TDD is that code should be continually tested and refactored. Kent Beck teaches programmers by example, so they can painlessly and dramatically increase the quality of their work.

The Effective Engineer: How to Leverage Your Efforts In Software Engineering to Make a Disproportionate and Meaningful Impact


Edmond Lau - 2015
    I'm going to share that mindset with you — along with hundreds of actionable techniques and proven habits — so you can shortcut those years.Introducing The Effective Engineer — the only book designed specifically for today's software engineers, based on extensive interviews with engineering leaders at top tech companies, and packed with hundreds of techniques to accelerate your career.For two years, I embarked on a quest seeking an answer to one question:How do the most effective engineers make their efforts, their teams, and their careers more successful?I interviewed and collected stories from engineering VPs, directors, managers, and other leaders at today's top software companies: established, household names like Google, Facebook, Twitter, and LinkedIn; rapidly growing mid-sized companies like Dropbox, Square, Box, Airbnb, and Etsy; and startups like Reddit, Stripe, Instagram, and Lyft.These leaders shared stories about the most valuable insights they've learned and the most common and costly mistakes that they've seen engineers — sometimes themselves — make.This is just a small sampling of the hard questions I posed to them:- What engineering qualities correlate with future success?- What have you done that has paid off the highest returns?- What separates the most effective engineers you've worked with from everyone else?- What's the most valuable lesson your team has learned in the past year?- What advice do you give to new engineers on your team? Everyone's story is different, but many of the lessons share common themes.You'll get to hear stories like:- How did Instagram's team of 5 engineers build and support a service that grew to over 40 million users by the time the company was acquired?- How and why did Quora deploy code to production 40 to 50 times per day?- How did the team behind Google Docs become the fastest acquisition to rewrite its software to run on Google's infrastructure?- How does Etsy use continuous experimentation to design features that are guaranteed to increase revenue at launch?- How did Facebook's small infrastructure team effectively operate thousands of database servers?- How did Dropbox go from barely hiring any new engineers to nearly tripling its team size year-over-year? What's more, I've distilled their stories into actionable habits and lessons that you can follow step-by-step to make your career and your team more successful.The skills used by effective engineers are all learnable.And I'll teach them to you. With The Effective Engineer, I'll teach you a unifying framework called leverage — the value produced per unit of time invested — that you can use to identify the activities that produce disproportionate results.Here's a sneak peek at some of the lessons you'll learn. You'll learn how to:- Prioritize the right projects and tasks to increase your impact.- Earn more leeway from your peers and managers on your projects.- Spend less time maintaining and fixing software and more time building and shipping new features.- Produce more accurate software estimates.- Validate your ideas cheaply to reduce wasted work.- Navigate organizational and people-related bottlenecks.- Find the appropriate level of code reviews, testing, abstraction, and technical debt to balance speed and quality.- Shorten your debugging workflow to increase your iteration speed.

Career Superpowers: Succeeding on Purpose


James A. Whittaker - 2014
    Take away the pedigreed and the prodigies—you know the people who are going to succeed no matter what—and the brown-nosers and right-time-right-place lottery winners and who do you have left? The people who succeeded on purpose. Study these folks carefully and you’ll find common themes around their path to the top. This book exposes the career strategies of the ultra-successful and analyzes them in detail. You’ll learn about personal strategies for identifying high-payoff activities and gain insight into being more effective as an individual contributor, manager and leader. You will learn how to identify and interact with the right set of career mentors and role models. Being successful doesn’t have to be an accident. Read this book and learn how to succeed on purpose.

Harry: The Unauthorized Biography


Danny White - 2021
    From his childhood and his journey to fame on the X-Factor to releasing solo music and becoming fashion royalty, this book gets you closer to Harry than ever before. From the start of his career we follow the roller coaster of emotions as One Direction broke up, and we learn how Harry reinvented himself. Free from the shackles of being in a boyband he was able to be the rock star he had always dreamed of being and conquer the US by himself.Not content with being one of the world's biggest popstars, Harry has also cultivated a career as a film and television star, featuring in box-office hits like Dunkirk as well as presenting Saturday Night Live. He's also making a name for himself as fashion royalty – presenting the fashion event of the year, the Met Gala, with Serena Williams and Lady Gaga and regularly modelling for iconic brand Gucci. He has even partnered with the meditation app Calm to record a story designed to help listeners drift off. This is a book that gets you to the heart of a very modern pop star – a must read for all of Harry's fans.