Book picks similar to
The LEGO MINDSTORMS EV3 Discovery Book: A Beginner's Guide to Building and Programming Robots by Laurens Valk
non-fiction
robotics
lego
nonfiction
A Manual for Writers of Research Papers, Theses, and Dissertations: Chicago Style for Students and Researchers
Kate L. Turabian - 1955
Bellow. Strauss. Friedman. The University of Chicago has been the home of some of the most important thinkers of the modern age. But perhaps no name has been spoken with more respect than Turabian. The dissertation secretary at Chicago for decades, Kate Turabian literally wrote the book on the successful completion and submission of the student paper. Her Manual for Writers of Research Papers, Theses, and Dissertations, created from her years of experience with research projects across all fields, has sold more than seven million copies since it was first published in 1937.Now, with this seventh edition, Turabian’s Manual has undergone its most extensive revision, ensuring that it will remain the most valuable handbook for writers at every level—from first-year undergraduates, to dissertation writers apprehensively submitting final manuscripts, to senior scholars who may be old hands at research and writing but less familiar with new media citation styles. Gregory G. Colomb, Joseph M. Williams, and the late Wayne C. Booth—the gifted team behind The Craft of Research—and the University of Chicago Press Editorial Staff combined their wide-ranging expertise to remake this classic resource. They preserve Turabian’s clear and practical advice while fully embracing the new modes of research, writing, and source citation brought about by the age of the Internet.Booth, Colomb, and Williams significantly expand the scope of previous editions by creating a guide, generous in length and tone, to the art of research and writing. Growing out of the authors’ best-selling Craft of Research, this new section provides students with an overview of every step of the research and writing process, from formulating the right questions to reading critically to building arguments and revising drafts. This leads naturally to the second part of the Manual for Writers, which offers an authoritative overview of citation practices in scholarly writing, as well as detailed information on the two main citation styles (“notes-bibliography” and “author-date”). This section has been fully revised to reflect the recommendations of the fifteenth edition of The Chicago Manual of Style and to present an expanded array of source types and updated examples, including guidance on citing electronic sources.The final section of the book treats issues of style—the details that go into making a strong paper. Here writers will find advice on a wide range of topics, including punctuation, table formatting, and use of quotations. The appendix draws together everything writers need to know about formatting research papers, theses, and dissertations and preparing them for submission. This material has been thoroughly vetted by dissertation officials at colleges and universities across the country.This seventh edition of Turabian’s Manual for Writers of Research Papers, Theses, and Dissertations is a classic reference revised for a new age. It is tailored to a new generation of writers using tools its original author could not have imagined—while retaining the clarity and authority that generations of scholars have come to associate with the name Turabian.
Couponing for the Beginner: A Guide to Couponing for the Uninitiated
Jenny Dean - 2012
Such background knowledge will help you understand why couponing works for not only couponers but also the stores that accept them. You'll feel confident going into the store for your first real deal because of the well-rounded knowledge, couponing advice as well as the online coupon tips you will receive from Couponing for the Beginner: A Guide to Couponing for the Uninitiated. The sensible approach in Couponing for the Beginner: A Guide to Couponing for the Uninitiated will help you shop for free for some of your favorite items at some of your favorite stores like CVS, Rite Aid, Target, and Walgreens. You'll also learn how to find the best savings on items you use every day in your home - learn how to combine them with store sales and promotions, store rewards/loyalty programs, rebates and more.All you have to do is follow Dean's step-by-step guide that teaches you how to get stuff for free and you'll be shopping for free in no time. In fact, you'll be wondering why you didn't shop like this sooner!
Psychology in Action
Karen Huffman - 1987
To meet it, you need a fully integrated text and supplements package that sets the stage for a perfectly choreographed learning experience.
Perl Cookbook
Tom Christiansen - 1998
Perl Cookbook is a comprehensive collection of problems, solutions, and practical examples for anyone programming in Perl. The book contains hundreds of rigorously reviewed Perl "recipes" and thousands of examples ranging from brief one-liners to complete applications.The second edition of Perl Cookbook has been fully updated for Perl 5.8, with extensive changes for Unicode support, I/O layers, mod_perl, and new technologies that have emerged since the previous edition of the book. Recipes have been updated to include the latest modules. New recipes have been added to every chapter of the book, and some chapters have almost doubled in size.Covered topic areas include: • Manipulating strings, numbers, dates, arrays, and hashes • Pattern matching and text substitutions • References, data structures, objects, and classes • Signals and exceptions • Screen addressing, menus, and graphical applications • Managing other processes • Writing secure scripts • Client-server programming • Internet applications programming with mail, news, ftp, and telnet • CGI and mod_perl programming • Web programmingSince its first release in 1998, Perl Cookbook has earned its place in the libraries of serious Perl users of all levels of expertise by providing practical answers, code examples, and mini-tutorials addressing the challenges that programmers face. Now the second edition of this bestselling book is ready to earn its place among the ranks of favorite Perl books as well.Whether you're a novice or veteran Perl programmer, you'll find Perl Cookbook, 2nd Edition to be one of the most useful books on Perl available. Its comfortable discussion style and accurate attention to detail cover just about any topic you'd want to know about. You can get by without having this book in your library, but once you've tried a few of the recipes, you won't want to.
Hadoop: The Definitive Guide
Tom White - 2009
Ideal for processing large datasets, the Apache Hadoop framework is an open source implementation of the MapReduce algorithm on which Google built its empire. This comprehensive resource demonstrates how to use Hadoop to build reliable, scalable, distributed systems: programmers will find details for analyzing large datasets, and administrators will learn how to set up and run Hadoop clusters. Complete with case studies that illustrate how Hadoop solves specific problems, this book helps you:Use the Hadoop Distributed File System (HDFS) for storing large datasets, and run distributed computations over those datasets using MapReduce Become familiar with Hadoop's data and I/O building blocks for compression, data integrity, serialization, and persistence Discover common pitfalls and advanced features for writing real-world MapReduce programs Design, build, and administer a dedicated Hadoop cluster, or run Hadoop in the cloud Use Pig, a high-level query language for large-scale data processing Take advantage of HBase, Hadoop's database for structured and semi-structured data Learn ZooKeeper, a toolkit of coordination primitives for building distributed systems If you have lots of data -- whether it's gigabytes or petabytes -- Hadoop is the perfect solution. Hadoop: The Definitive Guide is the most thorough book available on the subject. "Now you have the opportunity to learn about Hadoop from a master-not only of the technology, but also of common sense and plain talk." -- Doug Cutting, Hadoop Founder, Yahoo!
Programming Rust: Fast, Safe Systems Development
Jim Blandy - 2015
Rust's modern, flexible types ensure your program is free of null pointer dereferences, double frees, dangling pointers, and similar bugs, all at compile time, without runtime overhead. In multi-threaded code, Rust catches data races at compile time, making concurrency much easier to use.Written by two experienced systems programmers, this book explains how Rust manages to bridge the gap between performance and safety, and how you can take advantage of it. Topics include:How Rust represents values in memory (with diagrams)Complete explanations of ownership, moves, borrows, and lifetimesCargo, rustdoc, unit tests, and how to publish your code on crates.io, Rust's public package repositoryHigh-level features like generic code, closures, collections, and iterators that make Rust productive and flexibleConcurrency in Rust: threads, mutexes, channels, and atomics, all much safer to use than in C or C++Unsafe code, and how to preserve the integrity of ordinary code that uses itExtended examples illustrating how pieces of the language fit together
The 125 Best Brain Teasers of All Time: A Mind-Blowing Challenge of Math, Logic, and Wordplay
Marcel Danesi - 2018
Collected here to keep your wits sharp, The Best Brain Teasers of All Time features the cleverest brain teasers from around the world and throughout history.The Best Brain Teasers of All Time gives you hours of fun-filled entertainment with brain teasers that develop your problem-solving skills in math, logic, and wordplay. Organized as an integrated challenge, these brain teasers build in momentum as they increase in difficulty from classic nursery rhymes to the riddle of the sphinx.The Best Brain Teasers of All Time puts your mind to the test with:
125 Brain Teasers that require no special skills to solve. Plus, each question comes with an optional clue in case you get stumped and a handy answer key in the back to test yourself or play with friends
Brain Teasers for Every Level that cater to beginners and advanced masterminds alike, with brain teasers organized by level of difficulty to improve your skills as you move forward
Hints of History that provide fun facts and background information for every brain teaser
Get ready to sharpen your wit with every “aha” moment. The Best Brain Teasers of All Time is a go-to source for timeless fun and mind-blowing challenges.
Programming in Scala
Martin Odersky - 2008
Coauthored by the designer of the Scala language, this authoritative book will teach you, one step at a time, the Scala language and the ideas behind it. The book is carefully crafted to help you learn. The first few chapters will give you enough of the basics that you can already start using Scala for simple tasks. The entire book is organized so that each new concept builds on concepts that came before - a series of steps that promises to help you master the Scala language and the important ideas about programming that Scala embodies. A comprehensive tutorial and reference for Scala, this book covers the entire language and important libraries.
Hunt, Gather, Parent: What Ancient Cultures Can Teach Us About the Lost Art of Raising Happy, Helpful Little Humans
Michaeleen Doucleff - 2021
Michaeleen Doucleff becomes a mother, she examines the studies behind modern parenting guidance and finds the evidence frustratingly limited and the conclusions often ineffective. Curious to learn about more effective parenting approaches, she visits a Maya village in the Yucatán Peninsula. There she encounters moms and dads who parent in a totally different way than we do—and raise extraordinarily kind, generous, and helpful children without yelling, nagging, or issuing timeouts. What else, Doucleff wonders, are Western parents missing out on? In Hunt, Gather, Parent, Doucleff sets out with her three-year-old daughter in tow to learn and practice parenting strategies from families in three of the world’s most venerable communities: Maya families in Mexico, Inuit families above the Arctic Circle, and Hadzabe families in Tanzania. She sees that these cultures don’t have the same problems with children that Western parents do. Most strikingly, parents build a relationship with young children that is vastly different from the one many Western parents develop—it’s built on cooperation instead of control, trust instead of fear, and personalized needs instead of standardized development milestones. Maya parents are masters at raising cooperative children. Without resorting to bribes, threats, or chore charts, Maya parents rear loyal helpers by including kids in household tasks from the time they can walk. Inuit parents have developed a remarkably effective approach for teaching children emotional intelligence. When kids cry, hit, or act out, Inuit parents respond with a calm, gentle demeanor that teaches children how to settle themselves down and think before acting. Hadzabe parents are world experts on raising confident, self-driven kids with a simple tool that protects children from stress and anxiety, so common now among American kids. Not only does Doucleff live with families and observe their techniques firsthand, she also applies them with her own daughter, with striking results. She learns to discipline without yelling. She talks to psychologists, neuroscientists, anthropologists, and sociologists and explains how these strategies can impact children’s mental health and development. Filled with practical takeaways that parents can implement immediately, Hunt, Gather, Parent helps us rethink the ways we relate to our children, and reveals a universal parenting paradigm adapted for American families.
The C# Programming Yellow Book
Rob Miles - 2010
With jokes, puns, and a rigorous problem solving based approach. You can download all the code samples used in the book from here: http://www.robmiles.com/s/Yellow-Book...
The Bearded Dragon Manual
Philippe De Vosjoli - 2001
Since reptiles are cold-blooded creatures, most humans don't instinctively understand their requirements the way they understand the needs of a cat or dog. Herp expert Philippe de Vosjoli and his team of veterinarians and authors seek to make keepers confident in their ability to properly care for their bearded dragons through this most informative book. A key component of caring for bearded dragons, according to the authors, is recognizing that their needs change as they develop. De Vosjoli states in the introduction to the book, "Looking at the life stages of bearded dragons also made [the authors] aware that, like humans, they undergo changes in growth and behavior, which may require the dedicated owner to make adjustments in husbandry (and general care) to meet the needs of each life style." The Bearded Dragon Manual is the first book to present this information that is so critical to the proper maintenance of these very popular reptiles.Colorfully illustrated, The Bearded Dragon Manual provides chapter-length coverage on the following topics: selecting a dragon, making a home for a dragon, heating and lighting, diet and feeding management, and behavior. The feeding chapter, which includes as age-by-age guide to nutrition, was co-written with veterinarian Dr. Susan Donoghue. A chapter on breeding discusses strategies for breeding dragons, requirements, conditioning, incubation, and potential problems encountered. Lizard vet extraordinaire Dr. Roger Klingenberg has written a chapter on recognizing and treating bearded dragon diseases, in which he discusses how to recognize a sick dragon, various internal and external parasites, nutritional disorders as well as kidney disease, prolapses, egg-binding, respiratory infections, and eye problems. The chapter concludes with a four-page chart for troubleshooting health problems. Herb expert Jerry Cole has provided a special chapter on frilled dragons, an agamid similar to the bearded dragon that has attracted many bearded dragon fans. Appendices and index included.
Mastering Regular Expressions
Jeffrey E.F. Friedl - 1997
They are now standard features in a wide range of languages and popular tools, including Perl, Python, Ruby, Java, VB.NET and C# (and any language using the .NET Framework), PHP, and MySQL.If you don't use regular expressions yet, you will discover in this book a whole new world of mastery over your data. If you already use them, you'll appreciate this book's unprecedented detail and breadth of coverage. If you think you know all you need to know about regularexpressions, this book is a stunning eye-opener.As this book shows, a command of regular expressions is an invaluable skill. Regular expressions allow you to code complex and subtle text processing that you never imagined could be automated. Regular expressions can save you time and aggravation. They can be used to craft elegant solutions to a wide range of problems. Once you've mastered regular expressions, they'll become an invaluable part of your toolkit. You will wonder how you ever got by without them.Yet despite their wide availability, flexibility, and unparalleled power, regular expressions are frequently underutilized. Yet what is power in the hands of an expert can be fraught with peril for the unwary. Mastering Regular Expressions will help you navigate the minefield to becoming an expert and help you optimize your use of regular expressions.Mastering Regular Expressions, Third Edition, now includes a full chapter devoted to PHP and its powerful and expressive suite of regular expression functions, in addition to enhanced PHP coverage in the central "core" chapters. Furthermore, this edition has been updated throughout to reflect advances in other languages, including expanded in-depth coverage of Sun's java.util.regex package, which has emerged as the standard Java regex implementation.Topics include:A comparison of features among different versions of many languages and toolsHow the regular expression engine worksOptimization (major savings available here!)Matching just what you want, but not what you don't wantSections and chapters on individual languagesWritten in the lucid, entertaining tone that makes a complex, dry topic become crystal-clear to programmers, and sprinkled with solutions to complex real-world problems, Mastering Regular Expressions, Third Edition offers a wealth information that you can put to immediateuse.Reviews of this new edition and the second edition: "There isn't a better (or more useful) book available on regular expressions."--Zak Greant, Managing Director, eZ Systems"A real tour-de-force of a book which not only covers the mechanics of regexes in extraordinary detail but also talks about efficiency and the use of regexes in Perl, Java, and .NET...If you use regular expressions as part of your professional work (even if you already have a good book on whatever language you're programming in) I would strongly recommend this book to you."--Dr. Chris Brown, Linux Format"The author does an outstanding job leading the reader from regexnovice to master. The book is extremely easy to read and chock full ofuseful and relevant examples...Regular expressions are valuable toolsthat every developer should have in their toolbox. Mastering RegularExpressions is the definitive guide to the subject, and an outstandingresource that belongs on every programmer's bookshelf. Ten out of TenHorseshoes."--Jason Menard, Java Ranch
Letting Go of the Words: Writing Web Content that Works
Janice G. Redish - 2007
Ironically, I must recommend that you read her every word so that you can find out why your customers won't read very many words on your website -- and what to do about it.-- Jakob Nielsen, Principal, Nielsen Norman Group"There are at least twelve billion web pages out there. Twelve billion voices talking, but saying mostly nothing. If just 1% of those pages followed Ginny's practical, clear advice, the world would be a better place. Fortunately, you can follow her advice for 100% of your own site's pages, so pick up a copy of Letting Go of the Words and start communicating effectively today."--Lou Rosenfeld, co-author, Information Architecture for the World Wide WebOn the web, whether on the job or at home, we usually want to grab information and use it quickly. We go to the web to get answers to questions or to complete tasks - to gather information, reading only what we need. We are all too busy to read much on the web.This book helps you write successfully for web users. It offers strategy, process, and tactics for creating or revising content for the web. It helps you plan, organize, write, design, and test web content that will make web users come back again and again to your site.Learn how to create usable and useful content for the web from the master - Ginny Redish. Ginny has taught and mentored hundreds of writers, information designers, and content owners in the principles and secrets of creating web information that is easy to scan, easy to read, and easy to use.This practical, informative book will help anyone creating web content do it better.Features* Clearly-explained guidelines with full color illustrations and examples from actual web sites throughout the book. * Written in easy-to-read style with many befores and afters.* Specific guidelines for web-based press releases, legal notices, and other documents.* Tips on making web content accessible for people with special needs.Janice (Ginny) Redish has been helping clients and colleagues communicate clearly for more than 20 years. For the past ten years, her focus has been helping people create usable and useful web sites. She is co-author of two classic books on usability: A Practical Guide to Usability Testing (with Joseph Dumas), and User and Task Analysis for Interface Design (with JoAnn Hackos), and is the recipient of many awards.
The Ten Basic Principles of Good Parenting
Laurence Steinberg - 2004
In The Ten Basic Principles of Good Parenting, Dr. Steinberg distills decades of research into a parenting book that explains the fundamentals of raising happy, healthy children, giving readers an invaluable map to help them navigate parenthood from infancy to adolescence.Dr. Steinberg found that the basic principles for effective parenting are simple and universal, and apply to all parents and children regardless of background. He explains each principle and shows how to put it into action, using anecdotes and examples: from “What You Do Matters” (parents make an enormous difference; children are not simply the product of their genes) to “Establish Rules and Limits” (how to provide structure in your child's life, and how to handle conflicts over rules) and “Help Foster Your Child's Independence” (help your child think through decisions instead of making them for him or her). Concise and authoritative, written with warmth and compassion, The Ten Basic Principles of Good Parenting is an intelligent guide to raising a happy, healthy child and to becoming a happier, more confident parent in the process.
Facts vs. Opinions vs. Robots
Michael Rex - 2020
Some things are facts--like the number of robots in this book. Other things are opinions--like which robot would make the best friend, or which robot dances best. And sometimes to tell the difference between a fact and an opinion, you need to wait to get more information--that's because facts can be proven true or false, and opinions are things you feel and believe--but that you can't prove.