Book picks similar to
Technical Debt in Practice: How to Find It and Fix It by Neil Ernst
tech
business
software
technical
Fast Carbs, Slow Carbs: The Truth About Weight, Why We're Sick, and How to Stay Alive
David A. Kessler - 2020
David A. Kessler explains why Americans suffer in unprecedented numbers from obesity, heart disease, diabetes, and other debilitating illnesses, and offers concrete solutions for reducing cardiovascular problems, keeping weight off, and curtailing chronic disease.The American body is in trouble. Heart disease is the number one cause of death in the United States today, and millions are plagued by conditions like obesity and diabetes. But we have the answer to improving health and longevity: 1) cut out fast carbs (processed foods); 2) reduce saturated fats; 3) exercise regularly.Though the solution is simple, the difficulty lies in the food we eat. Multi-billion-dollar processing plants and food manufacturers dot the heartland and work to increase the profits of the industrialized farming business—Big Agriculture—that produces excess corn and wheat. Today, we are being fed highly palatable, ultra-processed carbohydrates as food products—fast carbs—that are often marketed as “healthy.” Fast carbs are primarily starches and sugars produced during food processing and are present in much of what we eat. By destroying the healthy structure of whole food and increasing the amount of rapidly digestible starch it contains, these products bypass our body’s metabolic pathways. When combined with the ill-effects of saturated fats, we are putting ourselves on a collision course with weight gain, insulin resistance, digestive issues, heart disease, and more.The problem is, most of us don’t know where these fast carbs and saturated fats lurk in our daily diets. Accessible and eye-opening, Fast Carbs, Slow Carbs provides the information we need to understand exactly what we are eating—and to learn the truth about what it being sold to us as “healthy” food. Rising above the confusing range of specific popular diets—Keto, Paleo, Mediterranean, Vegan, Vegetarian—Dr. Kessler gives us an achievable baseline that can set us on the path to better health.
A Fresh Look at Phonics, Grades K-2: Common Causes of Failure and 7 Ingredients for Success (Corwin Literacy)
Wiley Blevins - 2016
Rather, a combination of causes can create a perfect storm of failure.” —Wiley BlevinsPicture a class of kindergarteners singing the alphabet song, and teaching phonics seems as easy as one-two, three, A, B, C, right? In a Fresh Look at Phonics, Wiley Blevins explains why it can get tricky, and then delivers a plan so geared for success, that teachers, coaches, and administrators will come to see owning this book as a before and after moment in their professional lives. In this amazing follow up to his renowned resource Phonics From A-Z, Wiley uses the data he has collected over two decades to share which approaches truly work, which have failed, and how teachers can fine-tune their daily instruction for success. You will learn to focus on the seven critical ingredients of phonics teaching that produce the greatest student learning gains— readiness skills, scope and sequence, blending, dictation, word awareness, high frequency words, and reading connected texts. Then, for each ingredient, Wiley shares: Activities, routines, word lists, and lessons that develop solid foundations for reading Ideas for differentiation, ELL, and advanced learners to ensure adequate progress for all learners Help on decodable texts, what not to over-do, and what you can’t do enough of for your students’ achievement Interactive “Day Clinic” activities that facilitate teacher self-reflection and school wide professional learning In a final section, Wiley details the ten common reasons instruction fails and shows teachers how to correct these missteps regarding lesson pacing, transitions, decodable texts, writing activities, assessment and more. A Fresh Look at Phonics is the evidence-based solution you have been seeking. Wiley Blevins, Ph.D., is a world-renowned expert on early reading, and author of the seminal book Phonics From A-Z among many other works. He has taught in both the United States and South America, and regularly trains teachers throughout Asia. He holds a Doctorate in Education from Harvard University, and has worked with numerous educational scholars, including Jeanne Chall, Isabel Beck, Marilyn Adams, Louisa Moats, and Dianne August, and others.
Computer Science Distilled: Learn the Art of Solving Computational Problems
Wladston Ferreira Filho - 2017
Designed for readers who don't need the academic formality, it's a fast and easy computer science guide. It teaches essential concepts for people who want to program computers effectively. First, it introduces discrete mathematics, then it exposes the most common algorithms and data structures. It also shows the principles that make computers and programming languages work.
A Common-Sense Guide to Data Structures and Algorithms: Level Up Your Core Programming Skills
Jay Wengrow - 2017
If you have received one of these copies, please contact the Pragmatic Bookshelf at support@pragprog.com, and we will replace it for you.Algorithms and data structures are much more than abstract concepts. Mastering them enables you to write code that runs faster and more efficiently, which is particularly important for today's web and mobile apps. This book takes a practical approach to data structures and algorithms, with techniques and real-world scenarios that you can use in your daily production code. Graphics and examples make these computer science concepts understandable and relevant. You can use these techniques with any language; examples in the book are in JavaScript, Python, and Ruby.Use Big O notation, the primary tool for evaluating algorithms, to measure and articulate the efficiency of your code, and modify your algorithm to make it faster. Find out how your choice of arrays, linked lists, and hash tables can dramatically affect the code you write. Use recursion to solve tricky problems and create algorithms that run exponentially faster than the alternatives. Dig into advanced data structures such as binary trees and graphs to help scale specialized applications such as social networks and mapping software. You'll even encounter a single keyword that can give your code a turbo boost. Jay Wengrow brings to this book the key teaching practices he developed as a web development bootcamp founder and educator.Use these techniques today to make your code faster and more scalable.
A History Lover's Guide to Washington, DC: Designed for Democracy (History & Guide)
Alison B. Fortier - 2014
Alternating between site visits and brief historical narratives, this guide tells the story of Washington, DC, from its origins to current times. From George Washington’s Mount Vernon to the Kennedy Center, trek through each era of the federal district, on a tour of America’s most beloved sites. Go inside the White House, the only executive home in the world regularly open to the public. Travel to President Lincoln’s Cottage and see where he wrote the Emancipation Proclamation. And visit lesser-known sites, such as the grave of Pierre L’Enfant, the city’s Botanical Gardens, the Old Post Office, and a host of historical homes throughout the capital. This is the only guide you’ll need to curate an unforgettable expedition to our shining city on a hill.
Professor Frisby's Mostly Adequate Guide to Functional Programming
Brian Lonsdorf
We'll use the world's most popular functional programming language: JavaScript. Some may feel this is a poor choice as it's against the grain of the current culture which, at the moment, feels predominately imperative. However, I believe it is the best way to learn FP for several reasons:You likely use it every day at work.This makes it possible to practice and apply your acquired knowledge each day on real world programs rather than pet projects on nights and weekends in an esoteric FP language.We don't have to learn everything up front to start writing programs.In a pure functional language, you cannot log a variable or read a DOM node without using monads. Here we can cheat a little as we learn to purify our codebase. It's also easier to get started in this language since it's mixed paradigm and you can fall back on your current practices while there are gaps in your knowledge.The language is fully capable of writing top notch functional code.We have all the features we need to mimic a language like Scala or Haskell with the help of a tiny library or two. Object-oriented programming currently dominates the industry, but it's clearly awkward in JavaScript. It's akin to camping off of a highway or tap dancing in galoshes. We have to bind all over the place lest this change out from under us, we don't have classes[^Yet], we have various work arounds for the quirky behavior when the new keyword is forgotten, private members are only available via closures. To a lot of us, FP feels more natural anyways.That said, typed functional languages will, without a doubt, be the best place to code in the style presented by this book. JavaScript will be our means of learning a paradigm, where you apply it is up to you. Luckily, the interfaces are mathematical and, as such, ubiquitous. You'll find yourself at home with swiftz, scalaz, haskell, purescript, and other mathematically inclined environments.
JavaScript & jQuery: The Missing Manual
David Sawyer McFarland - 2008
This jargon-free guide covers JavaScript basics and shows you how to save time and effort with the jQuery library of prewritten JavaScript code. You’ll soon be building web pages that feel and act like desktop programs, without having to do much programming.The important stuff you need to know:Make your pages interactive. Create JavaScript events that react to visitor actions.Use animations and effects. Build drop-down navigation menus, pop-ups, automated slideshows, and more.Improve your user interface. Learn how the pros make websites fun and easy to use.Collect data with web forms. Create easy-to-use forms that ensure more accurate visitor responses.Add a dash of Ajax. Enable your web pages to communicate with a web server without a page reload.Practice with living examples. Get step-by-step tutorials for web projects you can build yourself.
The Elements of Programming Style
Brian W. Kernighan - 1974
Elements of programming.
How You Decide: The Science of Human Decision Making
Ryan Hamilton - 2016
Over millennia, philosophers, theologians, and mathematicians have all weighed in on the topic, and in recent centuries, economists, psychologists, and sociologists have joined the investigation. Now, you can learn what science has revealed about how we make choices. In How You Decide: The Science of Human Decision Making, Professor Ryan Hamilton, Associate Professor of Marketing at Emory University's Goizueta Business School, uses research revealed via the scientific method to understand and explain human decision making. Incorporating the outcomes of his own published experiments and those of his esteemed peers, Dr. Hamilton presents information that allows you to better understand the choices you face every day, the tools you can use to make the best decisions for your personal goals, and how to most effectively influence the decisions of others. LIFETIME MANUFACTURER WARRANTY. Your satisfaction is important to us, and we at The Great Courses offer a lifetime replacement warranty to purchasers of our products from The Great Courses on Amazon - if a DVD or CD disc ever breaks, warps, or gets damaged, we will replace it free of charge. If you have any concerns with your product, or want to request a replacement, please contact The Great Courses through our Amazon storefront for more information.
More about Software Requirements: Thorny Issues and Practical Advice: Thorny Issues and Practical Advice
Karl Wiegers - 2005
Too often, lessons about requirements engineering processes lack the no-nonsense guidance that supports real-world solutions. Complementing the best practices presented in his book, Software Requirements, Second Edition, requirements engineering authority Karl Wiegers tackles even more of the real issues head-on in this book. With straightforward, professional advice and practical solutions based on actual project experiences, this book answers many of the tough questions raised by industry professionals. From strategies for estimating and working with customers to the nuts and bolts of documenting requirements, this essential companion gives developers, analysts, and managers the cosmic truths that apply to virtually every software development project. Discover how to: - Make the business case for investing in better requirements practices - Generate estimates using three specific techniques - Conduct inquiries to elicit meaningful business and user requirements - Clearly document project scope - Implement use cases, scenarios, and user stories effectively - Improve inspections and peer reviews - Write requirements that avoid ambiguity
The Plateau Effect: Getting from Stuck to Success
Bob Sullivan - 2013
The Plateau Effect shows how athletes, scientists, therapists, companies, and musicians around the world are learning to break through their plateaus—to turn off the forces that cause people to “get used to” things—and turn on human potential and happiness in ways that seemed impossible. The book identifies three key flattening forces that generate plateaus, two principles to guide readers in engineering a plateau’s destruction, and three actions to take to achieve peak behavior. It helps us to stop wasting time on things that are no longer of value and to focus on the things that leverage our time and energy in spectacular ways. Anything you want to do better—play guitar, make friends, communicate with your children, run a business—you can accomplish faster by understanding the plateau effect.
Introducing Python: Modern Computing in Simple Packages
Bill Lubanovic - 2013
In addition to giving a strong foundation in the language itself, Lubanovic shows how to use it for a range of applications in business, science, and the arts, drawing on the rich collection of open source packages developed by Python fans.It's impressive how many commercial and production-critical programs are written now in Python. Developed to be easy to read and maintain, it has proven a boon to anyone who wants applications that are quick to write but robust and able to remain in production for the long haul.This book focuses on the current version of Python, 3.x, while including sidebars about important differences with 2.x for readers who may have to deal with programs in that version.
UNIX and Linux System Administration Handbook
Evi Nemeth - 2010
This is one of those cases. The UNIX System Administration Handbook is one of the few books we ever measured ourselves against." -From the Foreword by Tim O'Reilly, founder of O'Reilly Media "This book is fun and functional as a desktop reference. If you use UNIX and Linux systems, you need this book in your short-reach library. It covers a bit of the systems' history but doesn't bloviate. It's just straightfoward information delivered in colorful and memorable fashion." -Jason A. Nunnelley"This is a comprehensive guide to the care and feeding of UNIX and Linux systems. The authors present the facts along with seasoned advice and real-world examples. Their perspective on the variations among systems is valuable for anyone who runs a heterogeneous computing facility." -Pat Parseghian The twentieth anniversary edition of the world's best-selling UNIX system administration book has been made even better by adding coverage of the leading Linux distributions: Ubuntu, openSUSE, and RHEL. This book approaches system administration in a practical way and is an invaluable reference for both new administrators and experienced professionals. It details best practices for every facet of system administration, including storage management, network design and administration, email, web hosting, scripting, software configuration management, performance analysis, Windows interoperability, virtualization, DNS, security, management of IT service organizations, and much more. UNIX(R) and Linux(R) System Administration Handbook, Fourth Edition, reflects the current versions of these operating systems: Ubuntu(R) LinuxopenSUSE(R) LinuxRed Hat(R) Enterprise Linux(R)Oracle America(R) Solaris(TM) (formerly Sun Solaris)HP HP-UX(R)IBM AIX(R)
The Bank On Yourself Revolution: Fire Your Banker, Bypass Wall Street, and Take Control of Your Own Financial Future
Pamela Yellen - 2014
Wall Street lost more than 49% of the typical investor's money—twice—since the year 2000. And studies show that because they followed the conventional wisdom, almost half of all Boomers won't have enough money to cover even basic living expenses during their retirement years. Now the financial gurus whose advice got you into this mess in the first place are telling you to "take more risk," "work till you drop," and "plan on spending less in retirement." Don't let them fool you again!In The Bank On Yourself Revolution, financial security expert Pamela Yellen details how hundreds of thousands of people of all ages and incomes have bucked the system to secure their families' financial futures without gambling in the Wall Street Casino or taking any unnecessary risks. You'll discover a proven step-by-step plan for growing your wealth safely, predictably, and guaranteed every single year—even when the markets are tumbling. And you'll learn how to bypass banks, credit card and financing companies to become your own source of financing for cars, vacations, a college education, business expenses and other major purchases.The Bank On Yourself Revolution isn't a "get-rich-quick" scheme; it's about having real wealth and financial security for as long as you live. You can finally know how much money you'll have next year, in 10, 20 or 30 years—and at every point along the way. Join the Revolution and take control of your own financial future!