Ten Essays on Fizz Buzz

Ten Essays on Fizz Buzz PDF Author: Joel Grus
Publisher:
ISBN: 9780982481820
Category :
Languages : en
Pages : 168

Get Book Here

Book Description
"This book is so good. I wish I'd written it." -- Tim Hopper (@tdhopper)"Highly recommended: a grand tour of computer science theory and practical software engineering, explored through the lens of 10 Fizz Buzz solutions in Python. Outstanding." -- Paco Nathan (@pacoid)"I'd never have thought a book about Fizz Buzz would make me a better programmer, but I was wrong. Joel in the course of 10 chapters does a broad survey of core Python concepts, software design and testing, mathematics, and more (including deep learning) using Fizz Buzz as the guiding example. It's that rare technical book that remains engaging, entertaining, and accessible." -- Binal Patel (@binalkp91)More real Python tips than any "Python tricks" book! From a Python beginner to an experienced ML practitioner, you're bound to learn something about the language and its application to a progressive level of algorithmic applications. Recommended for the anyone looking to "level up" their Python or problem solving skills! -- Tom Marthaler (@tmarthal)Fizz Buzz is the following (simple) problem: Print the numbers from 1 to 100, except that if the number is divisible by 3, instead print "fizz"; if the number is divisible by 5, instead print "buzz"; and if the number is divisible by 15, instead print "fizzbuzz".It originated as a children's game, but has since taken on a new life as a lowest-common-denominator litmus test for assessing computer programmers.If you are an experienced programmer, it is an extremely easy problem to solve. Because of this, it has taken on a third life as the prototypical bad interview problem. Everyone knows that it's the question you ask people to make sure that they're not completely incompetent as programmers. Accordingly, if your interviewer asks you to solve it, he's suggesting he thinks it possible that you're completely incompetent as a programmer. You would not be wrong to feel insulted!My association with this problem began in 2016, when I wrote a blog post called Fizz Buzz in Tensorflow, the (possibly fictional) story of one such insulted programmer who decided to show up his interviewer by approaching Fizz Buzz as a deep learning problem. This post went modestly viral, and ever since then I have been seen as a thought leader in the Fizz Buzz space.Accordingly, over the years I have come up with and/or collected various other stupid and/or clever ways of solving Fizz Buzz. I have not blogged about them, as I am not the sort of person who beats a joke to death, but occasionally I will tweet about them, and recently in response someone suggested that I write a book on "100 Ways of Writing Fizz Buzz in Python."Now, I could probably come up with 100 ways of solving Fizz Buzz, but most of them would not be very interesting. Luckily for you, I was able to come up with 10 that are interesting in various ways, each of which turned out to be a good launching-off point for (sometimes meandering) discussions of various aspects of coding, Python, Fizz Buzz, mathematics, software design, technical interviewing, and various other topics.Hence "Ten Essays on Fizz Buzz".In many ways this is a strange book. Its goal is not to teach you a specific field or a specific technology. I hope you will learn a lot from reading it, but it's not really a book that you'd read in order to learn anything in particular. Most technical books are about specific technical topics; this one sort of isn't.Nonetheless, it is a technical book. Each essay contains code that implements a different solution of Fizz Buzz. Each essay uses code to illustrate its ideas. Each essay represents my current best thinking about how to solve problems using code. If you have a coding job, you should feel no reluctance to expense this book to your employer

Ten Essays on Fizz Buzz

Ten Essays on Fizz Buzz PDF Author: Joel Grus
Publisher:
ISBN: 9780982481820
Category :
Languages : en
Pages : 168

Get Book Here

Book Description
"This book is so good. I wish I'd written it." -- Tim Hopper (@tdhopper)"Highly recommended: a grand tour of computer science theory and practical software engineering, explored through the lens of 10 Fizz Buzz solutions in Python. Outstanding." -- Paco Nathan (@pacoid)"I'd never have thought a book about Fizz Buzz would make me a better programmer, but I was wrong. Joel in the course of 10 chapters does a broad survey of core Python concepts, software design and testing, mathematics, and more (including deep learning) using Fizz Buzz as the guiding example. It's that rare technical book that remains engaging, entertaining, and accessible." -- Binal Patel (@binalkp91)More real Python tips than any "Python tricks" book! From a Python beginner to an experienced ML practitioner, you're bound to learn something about the language and its application to a progressive level of algorithmic applications. Recommended for the anyone looking to "level up" their Python or problem solving skills! -- Tom Marthaler (@tmarthal)Fizz Buzz is the following (simple) problem: Print the numbers from 1 to 100, except that if the number is divisible by 3, instead print "fizz"; if the number is divisible by 5, instead print "buzz"; and if the number is divisible by 15, instead print "fizzbuzz".It originated as a children's game, but has since taken on a new life as a lowest-common-denominator litmus test for assessing computer programmers.If you are an experienced programmer, it is an extremely easy problem to solve. Because of this, it has taken on a third life as the prototypical bad interview problem. Everyone knows that it's the question you ask people to make sure that they're not completely incompetent as programmers. Accordingly, if your interviewer asks you to solve it, he's suggesting he thinks it possible that you're completely incompetent as a programmer. You would not be wrong to feel insulted!My association with this problem began in 2016, when I wrote a blog post called Fizz Buzz in Tensorflow, the (possibly fictional) story of one such insulted programmer who decided to show up his interviewer by approaching Fizz Buzz as a deep learning problem. This post went modestly viral, and ever since then I have been seen as a thought leader in the Fizz Buzz space.Accordingly, over the years I have come up with and/or collected various other stupid and/or clever ways of solving Fizz Buzz. I have not blogged about them, as I am not the sort of person who beats a joke to death, but occasionally I will tweet about them, and recently in response someone suggested that I write a book on "100 Ways of Writing Fizz Buzz in Python."Now, I could probably come up with 100 ways of solving Fizz Buzz, but most of them would not be very interesting. Luckily for you, I was able to come up with 10 that are interesting in various ways, each of which turned out to be a good launching-off point for (sometimes meandering) discussions of various aspects of coding, Python, Fizz Buzz, mathematics, software design, technical interviewing, and various other topics.Hence "Ten Essays on Fizz Buzz".In many ways this is a strange book. Its goal is not to teach you a specific field or a specific technology. I hope you will learn a lot from reading it, but it's not really a book that you'd read in order to learn anything in particular. Most technical books are about specific technical topics; this one sort of isn't.Nonetheless, it is a technical book. Each essay contains code that implements a different solution of Fizz Buzz. Each essay uses code to illustrate its ideas. Each essay represents my current best thinking about how to solve problems using code. If you have a coding job, you should feel no reluctance to expense this book to your employer

Data Science from Scratch

Data Science from Scratch PDF Author: Joel Grus
Publisher: "O'Reilly Media, Inc."
ISBN: 1491904399
Category : Computers
Languages : en
Pages : 408

Get Book Here

Book Description
Data science libraries, frameworks, modules, and toolkits are great for doing data science, but they’re also a good way to dive into the discipline without actually understanding data science. In this book, you’ll learn how many of the most fundamental data science tools and algorithms work by implementing them from scratch. If you have an aptitude for mathematics and some programming skills, author Joel Grus will help you get comfortable with the math and statistics at the core of data science, and with hacking skills you need to get started as a data scientist. Today’s messy glut of data holds answers to questions no one’s even thought to ask. This book provides you with the know-how to dig those answers out. Get a crash course in Python Learn the basics of linear algebra, statistics, and probability—and understand how and when they're used in data science Collect, explore, clean, munge, and manipulate data Dive into the fundamentals of machine learning Implement models such as k-nearest Neighbors, Naive Bayes, linear and logistic regression, decision trees, neural networks, and clustering Explore recommender systems, natural language processing, network analysis, MapReduce, and databases

Your Religion Is False

Your Religion Is False PDF Author: Joel Grus
Publisher: Brightwalton LLC
ISBN: 0982481802
Category : Humor
Languages : en
Pages : 260

Get Book Here

Book Description
The funniest book ever written about why your religion is false!Whether you're a Christian or a Jew, a Muslim or a Hindu, a Rasta or a Jain, an Environmentalist or a Cheondoist, a Scientologist or a Giant Stone Head Worshipper, your religion is false.But don't feel bad -- so is everyone else's! When you want to know what not to believe, this is the only book you need.In addition, you'll learn* Why "god" doesn't exist* Why there's no such thing as a "soul"* How to find "meaning" in a religion-less world* Which of your religious heroes are pedophiles* Why "religious tolerance" is a terrible ideaAnd, as a bonus, the greatest religious joke ever told. You can't afford not to read this book!

Thinking Spreadsheet

Thinking Spreadsheet PDF Author: Joel Grus
Publisher:
ISBN: 9780982481813
Category : Electronic spreadsheets
Languages : en
Pages : 417

Get Book Here

Book Description
Whether you're a complete beginner or a grizzled veteran, Thinking Spreadsheet will make you an Excel expert. Its clear instruction and carefully-chosen examples will help you * Understand how spreadsheets work, what they do well, and what they don't do well. * Use the spreadsheet's structure to intelligently organize your data. * Solve problems using techniques that take advantage of the spreadsheet's strengths. * Build spreadsheets that are easy to understand and difficult to break. Along the way you'll learn core spreadsheet principles, basic tools like SUM() and IF(), advanced functions like MATCH() and VLOOKUP(), and power-user features like array formulas and pivot tables. You'll also learn a little bit of mathematics, a little bit of probability, a little bit of statistics, and a whole lot about how to intelligently solve problems. You might even laugh a few times!

Boozehound

Boozehound PDF Author: Jason Wilson
Publisher: Ten Speed Press
ISBN: 158008611X
Category : Cooking
Languages : en
Pages : 242

Get Book Here

Book Description
While some may wonder, “Does the world really need another flavored vodka?” no one answers this question quite so memorably as spirits writer and raconteur Jason Wilson does in Boozehound. (By the way, the short answer is no.) A unique blend of travelogue, spirits history, and recipe collection, Boozehound explores the origins of what we drink and the often surprising reasons behind our choices. In lieu of odorless, colorless, tasteless spirits, Wilson champions Old World liquors with hard-to-define flavors—a bitter and complex Italian amari, or the ancient, aromatic herbs of Chartreuse, as well as distinctive New World offerings like lively Peruvian pisco. With an eye for adventure, Wilson seeks out visceral experiences at the source of production—visiting fields of spiky agave in Jalisco, entering the heavily and reverently-guarded Jägermeister herb room in Wolfenbüttel, and journeying to the French Alps to determine if mustachioed men in berets really handpick blossoms to make elderflower liqueur. In addition, Boozehound offers more than fifty drink recipes, from three riffs on the Manhattan to cocktail-geek favorites like the Aviation and the Last Word. These recipes are presented alongside a host of opinionated essays that cherish the rare, uncover the obscure, dethrone the overrated, and unravel the mysteries of taste, trends, and terroir. Through his far-flung, intrepid traveling and tasting, Wilson shows us that perhaps nothing else as entwined with the history of human culture is quite as much fun as booze.

IRL

IRL PDF Author: Tommy Pico
Publisher: Birds
ISBN: 9780991429868
Category : Poetry
Languages : en
Pages : 0

Get Book Here

Book Description
Composed as a long text message, this poem asks what happens to a modern, queer indigenous person a few generations after his ancestors were alienated from their language, their religion, and their history.

Rhetorical Code Studies

Rhetorical Code Studies PDF Author: Kevin Brock
Publisher: Sweetland Digital Rhetoric Col
ISBN: 0472131273
Category : Computers
Languages : en
Pages : 233

Get Book Here

Book Description
An exploration of software code as meaningful communication through which amateur and professional software developers construct arguments--Winner of the 2017 DRC Book Prize!

The Drifter

The Drifter PDF Author: Nick Petrie
Publisher: Penguin
ISBN: 0698194136
Category : Fiction
Languages : en
Pages : 386

Get Book Here

Book Description
The first explosive thriller featuring Peter Ash, a veteran who finds that the demons of war aren’t easily left behind... “Lots of characters get compared to my own Jack Reacher, but Petrie’s Peter Ash is the real deal.”—Lee Child Peter Ash came home from the wars in Iraq and Afghanistan with only one souvenir: what he calls his “white static,” the buzzing claustrophobia due to post-traumatic stress that has driven him to spend a year roaming in nature, sleeping under the stars. But when a friend from the Marines commits suicide, Ash returns to civilization to help the man’s widow with some home repairs. Under her dilapidated porch, he finds more than he bargained for: the largest, ugliest, meanest dog he’s ever encountered...and a Samsonite suitcase stuffed with cash and explosives. As Ash begins to investigate this unexpected discovery, he finds himself at the center of a plot that is far larger than he could have imagined...and it may lead straight back to the world he thought he’d left for good.

Quantum Lens

Quantum Lens PDF Author: Douglas E. Richards
Publisher:
ISBN: 9780692282342
Category : Terrorism
Languages : en
Pages : 356

Get Book Here

Book Description
Quirky quantum physics genius Brennan Craft and Black Ops researcher Alyssa Aronson race to find a way to keep an unstoppable jihadist in check.

NASA Space Shuttle

NASA Space Shuttle PDF Author: Piers Bizony
Publisher: Motorbooks International
ISBN: 0760370044
Category : History
Languages : en
Pages : 199

Get Book Here

Book Description
Rare photography and stunning artworks illustrate the history of NASA’s Space Shuttle program from 1981 to 2011, providing an unprecedented look at the missions, equipment, and astronauts.