Book picks similar to
The Pentium Microprocessor by James L. Antonakos
d
engineering
micro
pentium
The Algorithm Design Manual
Steven S. Skiena - 1997
Drawing heavily on the author's own real-world experiences, the book stresses design and analysis. Coverage is divided into two parts, the first being a general guide to techniques for the design and analysis of computer algorithms. The second is a reference section, which includes a catalog of the 75 most important algorithmic problems. By browsing this catalog, readers can quickly identify what the problem they have encountered is called, what is known about it, and how they should proceed if they need to solve it. This book is ideal for the working professional who uses algorithms on a daily basis and has need for a handy reference. This work can also readily be used in an upper-division course or as a student reference guide. THE ALGORITHM DESIGN MANUAL comes with a CD-ROM that contains: * a complete hypertext version of the full printed book. * the source code and URLs for all cited implementations. * over 30 hours of audio lectures on the design and analysis of algorithms are provided, all keyed to on-line lecture notes.
The Garage Gym Athlete: The Practical Guide to Training like a Pro, Unleashing Fitness Freedom, and Living the Simple Life.
Jerred Moon - 2016
If you're not getting the best workout you can get... You're running the risk of being as far away from your ideal body as the Marianas Trench is from the surface of the Pacific Ocean. That's deep, buddy. Real deep. But here's something else to dive into, all puns aside: how many days are you going to let pass before you finally hit your fitness goals? Not those goals you see on TV. Not the goals your friends have. Your goals. The real ones that hit you at 3am and leave you staring at the ceiling in a wild mix of excitement and sheer panic. The ones that make you a little nervous to admit to anyone but your closest friends. Fitness is life. Moving faster, lifting more, and being better than pool-noodle flexible is the stuff that an optimal life is made out of if you ask me. And people have been asking me how to get the best body without necessarily putting your bank account on life support. That's when it hit me... Most People Are Hustling Backwards! Quick Test: if you want to know whether or not you're the President of the Backwards Fitness Hustlers Club, answer this: Why aren't you already working out on your terms? If your first thought was to pull an excuse out of that fine database you're calling a brain, I have bad news for you: you're not only hustling backwards, but you've voted yourself into the highest office in excuseland in the process! Become and Athlete Let's get down to business. This book is called Garage Gym Athlete: The Practical Guide to Training like a Pro, Unleashing Fitness Freedom, and Living the Simple Life, and it's exactly what it says on the tin. Instead of giving you DIY fantasies, I'm bringing DIY realities to the table. Want to save a bundle of money and still have a real reason to sell tickets to the gun show? This is your guide. Is orange your favorite color? If so, then you're in luck, because Home Depot is going to be in your future...quite often. I'm focused on turning average people into athletes, in both mind and body. That's the mission. That's the big plan. That's where my heart, soul, passion, and experience combine forces to help people go from zero to zealous, and from one to outrageously fit. When you pick up this book, you'll learn: - How to rearrange your budget and family objections so the ideal garage gym can come to life (this is way more effective than another game of Tetris, and much more fun - THE best way to build stability (without a crunch in sight!) - Exactly why you should thank the inventor of PVC (especially after you check out Chapter 13!) - A step by step guide to picking a quality barbell (hint: sporting goods get 3 things wrong, but I get you back on track quick) - A down in the trenches way to build a power rack (warning: for the bold and brazen, but you'll love it) There's plenty more coming your way in this guide. I made sure that if you check it out, you'll walk away with at least a handful of great tactics, tricks, and techniques to get the ultimate job done. Would You Like to Know More? At this point, you're at the usual buyer crossroads. Do I listen to the crazy guy, or click away? If you want to jump in headfirst to some great garage gym DIY, simply cross up and click the "Buy Now" button. That's it!
Python: The Complete Reference
Martin C. Brown - 2001
This text is split into distinct sections, each concentrating on a core angle of the language. The book also contains sections for Web and application development, the two most popular uses for Python. It is designed to teach a programmer how to use Python by explaining the mechanics of Python. The appendixes offer a quick guide to the main features of the Python language, as well as additional guides to non-essential systems such as the IDLE development environment and general guidelines for migrating from another language.
Elementary Differential Equations
Earl D. Rainville - 1962
Each chapter includes many illustrative examples to assist the reader. The book emphasizes methods for finding solutions to differential equations. It provides many abundant exercises, applications, and solved examples with careful attention given to readability. Elementary Differential Equations includes a thorough treatment of power series techniques. In addition, the book presents a classical treatment of several physical problems to show how Fourier series become involved in the solution of those problems. The eighth edition of Elementary Differential Equations has been revised to include a new supplement in many chapters that provides suggestions and exercises for using a computer to assist in the understanding of the material in the chapter. It also now provides an introduction to the phase plane and to different types of phase portraits. A valuable reference book for readers interested in exploring the technological and other applications of differential equations.
How Google Tests Software
James A. Whittaker - 2012
Legendary testing expert James Whittaker, until recently a Google testing leader, and two top Google experts reveal exactly how Google tests software, offering brand-new best practices you can use even if you're not quite Google's size...yet! Breakthrough Techniques You Can Actually Use Discover 100% practical, amazingly scalable techniques for analyzing risk and planning tests...thinking like real users...implementing exploratory, black box, white box, and acceptance testing...getting usable feedback...tracking issues...choosing and creating tools...testing "Docs & Mocks," interfaces, classes, modules, libraries, binaries, services, and infrastructure...reviewing code and refactoring...using test hooks, presubmit scripts, queues, continuous builds, and more. With these techniques, you can transform testing from a bottleneck into an accelerator-and make your whole organization more productive!
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.
Growing Object-Oriented Software, Guided by Tests
Steve Freeman - 2009
This one's a keeper." --Robert C. Martin "If you want to be an expert in the state of the art in TDD, you need to understand the ideas in this book."--Michael Feathers Test-Driven Development (TDD) is now an established technique for delivering better software faster. TDD is based on a simple idea: Write tests for your code before you write the code itself. However, this simple idea takes skill and judgment to do well. Now there's a practical guide to TDD that takes you beyond the basic concepts. Drawing on a decade of experience building real-world systems, two TDD pioneers show how to let tests guide your development and "grow" software that is coherent, reliable, and maintainable. Steve Freeman and Nat Pryce describe the processes they use, the design principles they strive to achieve, and some of the tools that help them get the job done. Through an extended worked example, you'll learn how TDD works at multiple levels, using tests to drive the features and the object-oriented structure of the code, and using Mock Objects to discover and then describe relationships between objects. Along the way, the book systematically addresses challenges that development teams encounter with TDD--from integrating TDD into your processes to testing your most difficult features. Coverage includes - Implementing TDD effectively: getting started, and maintaining your momentum throughout the project - Creating cleaner, more expressive, more sustainable code - Using tests to stay relentlessly focused on sustaining quality - Understanding how TDD, Mock Objects, and Object-Oriented Design come together in the context of a real software development project - Using Mock Objects to guide object-oriented designs - Succeeding where TDD is difficult: managing complex test data, and testing persistence and concurrency
India's Railway Man: A Biography of E. Sreedharan
Rajendra B. Aklekar - 2017
The [Chithoni railway link] bridge was completed eleven weeks ahead of schedule and proved to be helpful to one and all.Two key railway projects changed the way India travels by train—the 760-km stretch of Konkan Railway and the Delhi Metro. Both the projects were up and running in seven years flat and the man in charge was Dr Elattuvalapil Sreedharan, popularly known as the Railway Man. He has been hailed as the messiah of new-age infrastructure projects and his success stories have become railway engineering benchmark.Respected, loved and equally hated, this book covers the amazing story of one man—his perseverance, beliefs, and public and private battles. India’s Railway Man: A Biography of E. Sreedharan is a tribute to this extraordinary man.
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/
The Growth Hacking Book: Most Guarded Growth Marketing Secrets The Silicon Valley Giants Don't Want You To Know
Parul Agrawal - 2019
#2 gives us shortcuts to help us get results in a short span of time.
The book that you are holding in your hands right now is for people who want to sprint on the second path.
The Growth Hacking Book is an almanac for growth in today’s hyper-competitive business world!
Curated by GrowthMedia.AI, this book features more than 35 marketing experts, trailblazing entrepreneurs, industry thought leaders and successful companies from all over the globe who share radical ideas on how you can grow your business using unconventional marketing strategies. Each chapter is a treasure trove of growth ideas that businesses in the “The Valley” try to shield from the public.
But they are not secrets anymore.
This book is for you if you want to learn about:
The concept of Growth Hacking
The best growth strategies from Growth Hackers for Growth Hackers
The mindset, skillset and toolset for Growth Marketers
Identifying and analyzing growth channels
The future of Growth Marketing
...and more.
The fact that you are examining to buy this book is proof that you are hungry to learn growth marketing tactics.
It proves the maxim that says — you don’t choose a book; the book chooses you.
Our Contributing Authors:
Amit Kumar Arun K Sharma Badr Berrada Christian Fictoor Deep Kakkad Deepak V.
Python for Informatics: Exploring Information: Exploring Information
Charles Severance - 2002
You can think of Python as your tool to solve problems that are far beyond the capability of a spreadsheet. It is an easy-to-use and easy-to learn programming language that is freely available on Windows, Macintosh, and Linux computers. There are free downloadable copies of this book in various electronic formats and a self-paced free online course where you can explore the course materials. All the supporting materials for the book are available under open and remixable licenses. This book is designed to teach people to program even if they have no prior experience.
Ghost in the Wires: My Adventures as the World's Most Wanted Hacker
Kevin D. Mitnick - 2011
While other nerds were fumbling with password possibilities, this adept break-artist was penetrating the digital secrets of Sun Microsystems, Digital Equipment Corporation, Nokia, Motorola, Pacific Bell, and other mammoth enterprises. His Ghost in the Wires memoir paints an action portrait of a plucky loner motivated by a passion for trickery, not material game. (P.S. Mitnick's capers have already been the subject of two books and a movie. This first-person account is the most comprehensive to date.)