Euclid's Elements


Euclid
    Heath's translation of the thirteen books of Euclid's Elements. In keeping with Green Lion's design commitment, diagrams have been placed on every spread for convenient reference while working through the proofs; running heads on every page indicate both Euclid's book number and proposition numbers for that page; and adequate space for notes is allowed between propositions and around diagrams. The all-new index has built into it a glossary of Euclid's Greek terms.Heath's translation has stood the test of time, and, as one done by a renowned scholar of ancient mathematics, it can be relied upon not to have inadvertantly introduced modern concepts or nomenclature. We have excised the voluminous historical and scholarly commentary that swells the Dover edition to three volumes and impedes classroom use of the original text. The single volume is not only more convenient, but less expensive as well.

Crisis Preparedness Handbook: A Comprehensive Guide to Home Storage and Physical Survival


Jack A. Spigarelli - 1984
    Virtually an encyclopedia of food storage and personal preparedness, it covers topics from exactly how to design a food storage program tailored for your particular family to growing and preserving food, storing fuel, alternate energy, emergency evacuation kits, medical and dental, surviving biological, chemical and nuclear terrorism, communications, selection of firearms and other survival tools, and preparing for earthquakes. Dozens of detailed, expert checklists and tables with photographs and index. Extensive book and resource lists with regular and Internet addresses. An absolute must for those serious about preparing for and surviving during our dangerous times.

Working Effectively with Legacy Code


Michael C. Feathers - 2004
    This book draws on material Michael created for his renowned Object Mentor seminars, techniques Michael has used in mentoring to help hundreds of developers, technical managers, and testers bring their legacy systems under control. The topics covered include: Understanding the mechanics of software change, adding features, fixing bugs, improving design, optimizing performance Getting legacy code into a test harness Writing tests that protect you against introducing new problems Techniques that can be used with any language or platform, with examples in Java, C++, C, and C# Accurately identifying where code changes need to be made Coping with legacy systems that aren't object-oriented Handling applications that don't seem to have any structureThis book also includes a catalog of twenty-four dependency-breaking techniques that help you work with program elements in isolation and make safer changes.

Coders at Work: Reflections on the Craft of Programming


Peter Seibel - 2009
    As the words "at work" suggest, Peter Seibel focuses on how his interviewees tackle the day–to–day work of programming, while revealing much more, like how they became great programmers, how they recognize programming talent in others, and what kinds of problems they find most interesting. Hundreds of people have suggested names of programmers to interview on the Coders at Work web site: http://www.codersatwork.com. The complete list was 284 names. Having digested everyone’s feedback, we selected 16 folks who’ve been kind enough to agree to be interviewed:- Frances Allen: Pioneer in optimizing compilers, first woman to win the Turing Award (2006) and first female IBM fellow- Joe Armstrong: Inventor of Erlang- Joshua Bloch: Author of the Java collections framework, now at Google- Bernie Cosell: One of the main software guys behind the original ARPANET IMPs and a master debugger- Douglas Crockford: JSON founder, JavaScript architect at Yahoo!- L. Peter Deutsch: Author of Ghostscript, implementer of Smalltalk-80 at Xerox PARC and Lisp 1.5 on PDP-1- Brendan Eich: Inventor of JavaScript, CTO of the Mozilla Corporation - Brad Fitzpatrick: Writer of LiveJournal, OpenID, memcached, and Perlbal - Dan Ingalls: Smalltalk implementor and designer- Simon Peyton Jones: Coinventor of Haskell and lead designer of Glasgow Haskell Compiler- Donald Knuth: Author of The Art of Computer Programming and creator of TeX- Peter Norvig: Director of Research at Google and author of the standard text on AI- Guy Steele: Coinventor of Scheme and part of the Common Lisp Gang of Five, currently working on Fortress- Ken Thompson: Inventor of UNIX- Jamie Zawinski: Author of XEmacs and early Netscape/Mozilla hackerWhat you’ll learn:How the best programmers in the world do their jobWho is this book for?Programmers interested in the point of view of leaders in the field. Programmers looking for approaches that work for some of these outstanding programmers.

When There Is No Doctor: Preventive and Emergency Healthcare in Uncertain Times


Gerard S. Doyle - 2010
    At a time when our health system has become particularly susceptible to strain, it should be no further than an arm’s reach away in your household.This is a book about sustainable health, primarily having to do with your health and what you can do to protect it—in bad times certainly, but also in good. I will help you ensure the health of those you love, yourself and, should you so choose, your community, if and when the world changes. World may come to mean your little town or the whole globe. It could change for a few days or weeks, or for a few years. It could change because of a flood, financial crisis, flu pandemic, or failure of our energy procurement, production or distribution systems.I will not teach you to be a lone survivalist who anticipates doing an appendectomy on himself or a loved one on the kitchen table with a steak knife and a few spoons, although I will discuss techniques of austere and improvised medicine for really hard times.Gerard S. Doyle, MD, teaches and practices emergency medicine at the University of Wisconsin, Madison, where he also plans the hospital’s response to disasters.

Energy: A Human History


Richard Rhodes - 2018
    Ultimately, the history of these challenges tells the story of humanity itself. Through an unforgettable cast of characters, Pulitzer Prize-winning author Richard Rhodes explains how wood gave way to coal and coal made room for oil, as we now turn to natural gas, nuclear power, and renewable energy. Rhodes looks back on five centuries of progress, through such influential figures as Queen Elizabeth I, King James I, Benjamin Franklin, Herman Melville, John D. Rockefeller, and Henry Ford. In Energy, Rhodes highlights the successes and failures that led to each breakthrough in energy production; from animal and waterpower to the steam engine, from internal-combustion to the electric motor. He addresses how we learned from such challenges, mastered their transitions, and capitalized on their opportunities. Rhodes also looks at the current energy landscape, with a focus on how wind energy is competing for dominance with cast supplies of coal and natural gas. He also addresses the specter of global warming, and a population hurtling towards ten billion by 2100. Human beings have confronted the problem of how to draw life from raw material since the beginning of time. Each invention, each discovery, each adaptation brought further challenges, and through such transformations, we arrived at where we are today. In Rhodes’s singular style, Energy details how this knowledge of our history can inform our way tomorrow.

The Science Book: Big Ideas Simply Explained


Rob Scott Colson - 2014
     The Science Book covers every area of science--astronomy, biology, chemistry, geology, math, and physics, and brings the greatest scientific ideas to life with fascinating text, quirky graphics, and pithy quotes.

A Guide to the Project Management Body of Knowledge (PMBOK® Guide)


Project Management Institute - 1995
    This internationally recognized standard provides the essential tools to practice project management and deliver organizational results.

Effective Java


Joshua Bloch - 2001
    The principal enhancement in Java 8 was the addition of functional programming constructs to Java's object-oriented roots. Java 7, 8, and 9 also introduced language features, such as the try-with-resources statement, the diamond operator for generic types, default and static methods in interfaces, the @SafeVarargs annotation, and modules. New library features include pervasive use of functional interfaces and streams, the java.time package for manipulating dates and times, and numerous minor enhancements such as convenience factory methods for collections. In this new edition of Effective Java, Bloch updates the work to take advantage of these new language and library features, and provides specific best practices for their use. Java's increased support for multiple paradigms increases the need for best-practices advice, and this book delivers. As in previous editions, each chapter consists of several "items," each presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and updated code examples. The comprehensive descriptions and explanations for each item illuminate what to do, what not to do, and why. Coverage includes:Updated techniques and best practices on classic topics, including objects, classes, methods, libraries, and generics How to avoid the traps and pitfalls of commonly misunderstood subtleties of the platform Focus on the language and its most fundamental libraries, such as java.lang and java.util

Nightwatch: A Practical Guide to Viewing the Universe


Terence Dickinson - 1983
    The key feature of this classic title is the section of star charts that are cherished by backyard astronomers everywhere. Each new edition has outsold the previous one because of thorough revisions and additional new material.NightWatch has been acclaimed as the best general interest introduction to astronomy. The fourth edition has improvements over the 3rd edition in every chapter, including:The famous charts, ideal for stargazers using a small telescope or binoculars A complete update of the equipment section, including computerized telescopes An enlarged photography section, including how-to instructions for using the new generation of digital cameras for astronomical photography, both with and without a telescope The tables of future solar and lunar eclipses, planetary conjunctions and planet locations, updated through 2025. This edition includes star charts for use in the southern hemisphere. There are also dozens of new photographs throughout the book that show the latest thrilling discoveries made by current space observatories and probes.

Sneaky Uses for Everyday Things


Cy Tymony - 2003
    With over 80 solutions and bonus applications at your disposal, you will be ready for almost any situation.Do you know how to make something that can tell whether the $20 bill in your wallet is a fake? Or how to generate battery power with simple household items? Or how to create your own home security system? Science-savvy author Cy Tymony does. And now you can learn how to create these things and more than 40 other handy gadgets and gizmos in Sneaky Uses for Everyday Things. More than a simple do-it-yourself guide, this quirky collection is a valuable resource for transforming ordinary objects into the extraordinary. With over 80 solutions and bonus applications at your disposal, you will be ready for almost any situation. Included are survival, security, self-defense, and silly applications that are just plain fun. You'll be seen as a superhero as you amaze your friends by:* Transforming a simple FM radio into a device that enables you to eavesdrop on tower-to-air conversations.* Creating your own personalized electronic greeting cards.* Making a compact fire extinguisher from items typically found in a kitchen pantry.* Thwarting intruders with a single rubber band.By using run-of-the-mill household items and the easy-to-follow instructions and diagrams within, you'll be able to complete most projects in just a few minutes. Whether you use Sneaky Uses for Everyday Things as a practical tool to build useful devices, a fun little fantasy escape, or as a trivia guide to impress friends and family, this book is sure to be a reference favorite for years to come.

How to Solve It: A New Aspect of Mathematical Method


George Pólya - 1944
    Polya, How to Solve It will show anyone in any field how to think straight. In lucid and appealing prose, Polya reveals how the mathematical method of demonstrating a proof or finding an unknown can be of help in attacking any problem that can be reasoned out--from building a bridge to winning a game of anagrams. Generations of readers have relished Polya's deft--indeed, brilliant--instructions on stripping away irrelevancies and going straight to the heart of the problem.

Chemistry: Concepts and Problems: A Self-Teaching Guide


Clifford C. Houk - 1979
    Whether you are studying chemistry forthe first time on your own, want to refresh your memory for a test, or need a little help for a course, this concise, interactive guidegives you a fresh approach to this fascinating subject. This fullyup-to-date edition of Chemistry: Concepts and Problems: * Has been tested, rewritten, and retested to ensure that you canteach yourself all about chemistry * Requires no prerequisites * Lets you work at your own pace with a helpful question-and-answerformat * Lists objectives for each chapter--you can skip ahead or findextra help if you need it * Reinforces what you learn with chapter self-tests

Why There's Antifreeze in Your Toothpaste: The Chemistry of Household Ingredients


Simon Quellen Field - 2007
    Decoding more than 150 cryptic ingredients, the guide explains each component's structural formula, offers synonymous names, and describes its common uses. This informative resource can serve curious readers as a basic primer to commercial chemistry or as an indexed reference for specific compounds found on a product label. Grouped according to type, these chemical descriptions will dissolve common misunderstandings and help make consumers more product savvy.

The Message Remix (Bible in Contemporary Language)


Eugene H. Peterson - 1997
    Peterson. It features expanded introductions to each book of the Bible that explain the purpose of the book, who wrote it, and for whom it was written. The introductions help set the stage for the book and help you understand each book's unique message. A reading Bible in contemporary language, The Message//REMIX also has a unique verse-numbering system, charts and maps, and a topical guide for students. Trim size: 5 3/16 x 7 1/8