Book picks similar to
Juran's Quality Control Handbook by Joseph M. Juran
quality
business
management
economics
The Supply Chain Revolution: Innovative Sourcing and Logistics for a Fiercely Competitive World
Suman Sarkar - 2017
When CEOs think about the supply chain, it's usually to cut costs. But the smartest leaders see supply chain and sourcing for what they can be: hidden tools for outperforming the competition. Steve Jobs, upon returning to Apple in 1997, focused on transforming the supply chain. He hired Tim Cook-and the company sped up the development of new products, getting them into consumers' hands faster. The rest is history. Across a range of industries, once-leading companies are in trouble: Walmart, IBM, Pfizer, HP, and The Gap to name a few. But others thrive. While competitors were shutting stores, Zara's highly responsive supply chain made it the most valued company in the retail space and its founder, the richest man in Europe. The success of TJX, Amazon, Starbucks, and Airbus, is fueled by supply chain and sourcing. Showcasing real solutions, The Supply Chain Revolution will: Improve customer satisfaction and increase revenue * Make alliances more successful * Simplify and debottleneck the supply chain * Boost retail success by managing store investment * Drive excellence Technology is disrupting business models. Strategies must change. The Supply Chain Revolution flips conventional thinking and offers a powerful way for companies to compete in challenging times.
The Systems Bible: The Beginner's Guide to Systems Large and Small: Being the Third Edition of Systemantics
John Gall - 1977
Hardcover published by Quadragle/The New York Times Book Co., third printing, August 1977, copyright 1975.
Revenue Management
Robert G. Cross - 1996
Cross answers this question with his ground-breaking approach to revitalizing businesses: focusing on the revenue side of the ledger instead of the cost side. The antithesis of slash-and-burn methods that left companies with empty profits and dissatisfied stockholders, Revenue Management overturns conventional thinking on marketing strategies and offers the key to initiating and sustaining growth.Using case studies from a variety of industries, small businesses, and nonprofit organizations, Cross describes no-tech, low-tech, and high-tech methods that managers can use to increase revenue without increasing products or promotions; predict consumer behavior; tap into new markets; and deliver products and services to customers effectively and efficiently. His proven tactics will help any business dramatically improve its bottom line by meeting the challenge of matching supply with demand.
Data Modeling Essentials
Graeme Simsion - 1992
In order to enable students to apply the basics of data modeling to real models, the book addresses the realities of developing systems in real-world situations by assessing the merits of a variety of possible solutions as well as using language and diagramming methods that represent industry practice.This revised edition has been given significantly expanded coverage and reorganized for greater reader comprehension even as it retains its distinctive hallmarks of readability and usefulness. Beginning with the basics, the book provides a thorough grounding in theory before guiding the reader through the various stages of applied data modeling and database design. Later chapters address advanced subjects, including business rules, data warehousing, enterprise-wide modeling and data management. It includes an entirely new section discussing the development of logical and physical modeling, along with new material describing a powerful technique for model verification. It also provides an excellent resource for additional lectures and exercises.This text is the ideal reference for data modelers, data architects, database designers, DBAs, and systems analysts, as well as undergraduate and graduate-level students looking for a real-world perspective.
Fundamentals of Software Architecture: An Engineering Approach
Mark Richards - 2020
Until now. This practical guide provides the first comprehensive overview of software architecture's many aspects. You'll examine architectural characteristics, architectural patterns, component determination, diagramming and presenting architecture, evolutionary architecture, and many other topics.Authors Neal Ford and Mark Richards help you learn through examples in a variety of popular programming languages, such as Java, C#, JavaScript, and others. You'll focus on architecture principles with examples that apply across all technology stacks.
The Apple Way
Jeffrey L. Cruikshank - 2005
More than 10 million iPods have sold, putting Apple at the forefront of the digital music revolution. This book is filled with real-world examples of Apple's phenomenally successful management principles, and is written by the bestselling author of several Harvard Business School Press titles.
Death March
Edward Yourdon - 1997
This work covers the project lifecycle, addressing every key issue participants face: politics, people, process, project management, and tools.
APIs: A Strategy Guide
Daniel Jacobson - 2011
Salesforce.com (more than 50%) and Twitter (more than 75% fall into this category. Ebay gets more than 8 billion API calls a month. Facebook and Google, have dozens of APIs that enable both free services and e-commerce, get more than 5 billion API calls each day. Other companies like NetFlix have expanded their service of streaming movies over the the web to dozens of devices using API. At peak times, more than 20 percent of all traffic is accounted for by Netflix through its APIs. Companies like Sears and E-Trade are opening up their catalogs and other services to allow developers and entrepreneurs to create new marketing experiences.
Making an API work to create a new channel is not just a matter of technology. An API must be considered in terms of business strategy, marketing, and operations as well as the technical aspects of programming. This book, written by Greg Brail, CTO of Apigee, and Brian Mulloy, VP of Products, captures the knowledge of all these areas gained by Apigee, the leading company in supporting the rollout of high traffic APIs.
The Agile Samurai: How Agile Masters Deliver Great Software
Jonathan Rasmusson - 2010
Combining tools, core principles, and plenty of humor, The Agile Samurai gives you the tools and the attitude to deliver something of value every week, and make rolling software into production a non-event. You’ll see how agile software delivery really works and how to help your team get agile fast, while having fun along the way.
xUnit Test Patterns: Refactoring Test Code
Gerard Meszaros - 2003
An effective testing strategy will deliver new functionality more aggressively, accelerate user feedback, and improve quality. However, for many developers, creating effective automated tests is a unique and unfamiliar challenge. xUnit Test Patterns is the definitive guide to writing automated tests using xUnit, the most popular unit testing framework in use today. Agile coach and test automation expert Gerard Meszaros describes 68 proven patterns for making tests easier to write, understand, and maintain. He then shows you how to make them more robust and repeatable--and far more cost-effective. Loaded with information, this book feels like three books in one. The first part is a detailed tutorial on test automation that covers everything from test strategy to in-depth test coding. The second part, a catalog of 18 frequently encountered "test smells," provides trouble-shooting guidelines to help you determine the root cause of problems and the most applicable patterns. The third part contains detailed descriptions of each pattern, including refactoring instructions illustrated by extensive code samples in multiple programming languages. Topics covered includeWriting better tests--and writing them faster The four phases of automated tests: fixture setup, exercising the system under test, result verification, and fixture teardown Improving test coverage by isolating software from its environment using Test Stubs and Mock Objects Designing software for greater testability Using test "smells" (including code smells, behavior smells, and project smells) to spot problems and know when and how to eliminate them Refactoring tests for greater simplicity, robustness, and execution speed This book will benefit developers, managers, and testers working with any agile or conventional development process, whether doing test-driven development or writing the tests last. While the patterns and smells are especially applicable to all members of the xUnit family, they also apply to next-generation behavior-driven development frameworks such as RSpec and JBehave and to other kinds of test automation tools, including recorded test tools and data-driven test tools such as Fit and FitNesse.Visual Summary of the Pattern Language Foreword Preface Acknowledgments Introduction Refactoring a Test PART I: The Narratives Chapter 1 A Brief Tour Chapter 2 Test Smells Chapter 3 Goals of Test Automation Chapter 4 Philosophy of Test Automation Chapter 5 Principles of Test Automation Chapter 6 Test Automation Strategy Chapter 7 xUnit Basics Chapter 8 Transient Fixture Management Chapter 9 Persistent Fixture Management Chapter 10 Result Verification Chapter 11 Using Test Doubles Chapter 12 Organizing Our Tests Chapter 13 Testing with Databases Chapter 14 A Roadmap to Effective Test Automation PART II: The Test Smells Chapter 15 Code Smells Chapter 16 Behavior Smells Chapter 17 Project Smells PART III: The Patterns Chapter 18 Test Strategy Patterns Chapter 19 xUnit Basics Patterns Chapter 20 Fixture Setup Patterns Chapter 21 Result Verification Patterns Chapter 22 Fixture Teardown Patterns Chapter 23 Test Double Patterns Chapter 24 Test Organization Patterns Chapter 25 Database Patterns Chapter 26 Design-for-Testability Patterns Chapter 27 Value Patterns PART IV: Appendixes Appendix A Test Refactorings Appendix B xUnit Terminology Appendix C xUnit Family Members Appendix D Tools Appendix E Goals and Principles Appendix F Smells, Aliases, and Causes Appendix G Patterns, Aliases, and Variations Glossary References Index "
Messy: The Power of Disorder to Transform Our Lives
Tim Harford - 2016
His liberating message: you'll be more successful if you stop struggling so hard to plan or control your success. Messy is a deeply researched, endlessly eye-opening adventure in the life-changing magic of not tidying up' Oliver BurkemanThe urge to tidiness seems to be rooted deep in the human psyche. Many of us feel threatened by anything that is vague, unplanned, scattered around or hard to describe. We find comfort in having a script to rely on, a system to follow, in being able to categorise and file away.We all benefit from tidy organisation - up to a point. A large library needs a reference system. Global trade needs the shipping container. Scientific collaboration needs measurement units. But the forces of tidiness have marched too far. Corporate middle managers and government bureaucrats have long tended to insist that everything must have a label, a number and a logical place in a logical system. Now that they are armed with computers and serial numbers, there is little to hold this tidy-mindedness in check. It's even spilling into our personal lives, as we corral our children into sanitised play areas or entrust our quest for love to the soulless algorithms of dating websites. Order is imposed when chaos would be more productive. Or if not chaos, then . . . messiness.The trouble with tidiness is that, in excess, it becomes rigid, fragile and sterile. In Messy, Tim Harford reveals how qualities we value more than ever - responsiveness, resilience and creativity - simply cannot be disentangled from the messy soil that produces them. This, then, is a book about the benefits of being messy: messy in our private lives; messy in the office, with piles of paper on the desk and unread spreadsheets; messy in the recording studio, the laboratory or in preparing for an important presentation; and messy in our approach to business, politics and economics, leaving things vague, diverse and uncomfortably made-up-on-the-spot. It's time to rediscover the benefits of a little mess.
Large-Scale C++ Software Design
John S. Lakos - 1996
It is the first C++ book that actually demonstrates how to design large systems, and one of the few books on object-oriented design specifically geared to practical aspects of the C++ programming language. In this book, Lakos explains the process of decomposing large systems into physical (not inheritance) hierarchies of smaller, more manageable components. Such systems with their acyclic physical dependencies are fundamentally easier and more economical to maintain, test, and reuse than tightly interdependent systems. In addition to explaining the motivation for following good physical as well as logical design practices, Lakos provides you with a catalog of specific techniques designed to eliminate cyclic, compile-time, and link-time (physical) dependencies. He then extends these concepts from large to very large systems. The book concludes with a comprehensive top-down approach to the logical design of individual components. Appendices include a valuable design pattern Protocol Hierarchy designed to avoid fat inte
The Annotated Turing: A Guided Tour Through Alan Turing's Historic Paper on Computability and the Turing Machine
Charles Petzold - 2008
Turing
Mathematician Alan Turing invented an imaginary computer known as the Turing Machine; in an age before computers, he explored the concept of what it meant to be "computable," creating the field of computability theory in the process, a foundation of present-day computer programming.The book expands Turing's original 36-page paper with additional background chapters and extensive annotations; the author elaborates on and clarifies many of Turing's statements, making the original difficult-to-read document accessible to present day programmers, computer science majors, math geeks, and others.Interwoven into the narrative are the highlights of Turing's own life: his years at Cambridge and Princeton, his secret work in cryptanalysis during World War II, his involvement in seminal computer projects, his speculations about artificial intelligence, his arrest and prosecution for the crime of "gross indecency," and his early death by apparent suicide at the age of 41.
To Pixar and Beyond: My Unlikely Journey with Steve Jobs to Make Entertainment History
Lawrence Levy - 2016
“This is Steve Jobs. I saw your picture in a magazine a few years ago and thought we’d work together someday.” After Steve Jobs was unceremoniously dismissed from Apple, he bought a little-known graphics company called Pixar. One day, out of the blue, Jobs called Lawrence Levy, a Harvard-trained lawyer and executive to whom he had never spoken before, to persuade Levy to help him get Pixar off the ground. What Levy found was a company on the verge of failure. To Pixar and Beyond is the story of what happened next: how, working closely with Jobs, Levy produced and implemented a highly improbable plan that transformed Pixar into one of Hollywood’s greatest success stories. Set in the worlds of Silicon Valley and Hollywood, the book takes readers inside Pixar, Disney, law firms, and investment banks. It provides an up-close, firsthand account of Pixar’s ascent, how it made creative choices, Levy’s enduring collaboration and friendship with Jobs, and how Levy came to see in Pixar deeper lessons that can apply to many aspects of our lives.
How to Make Big Money in Your Own Small Business: Unexpected Rules Every Small Business Owner Needs to Know
Jeffrey J. Fox - 2004
In How to Make Big Money in Your Own Small Business, bestselling business author Jeffrey Fox offers sound rules to succeeding in small business, whether you're running a bookstore, consulting business, or restaurant. In short chapters that range from administration and cash flow to marketing and hiring, Fox reminds entrepreneurs what's important and what's not, what makes a business succeed, and what causes it to fail.