Book picks similar to
DK Workbooks: Coding in Scratch: Games Workbook by D.K. Publishing
kids
coding
read-aloud-coding
reference
Learning Theories Simplified: ...and How to Apply Them to Teaching
Bob Bates - 2015
Willingham on educational neuroscience? Written for busy teachers, trainers, managers and students, this dip-in dip-out guide makes theories of learning accessible and practical. It explores over 100 classic and contemporary learning theorists in an easy-to-use, bite-sized format with clear relevant illustrations on how each theory will benefit your teaching and learning.Each model or theory is explained in less than 350 words, many with accompanying diagrams, and the 'how to use it' sections, in less than 500 words. Every entry includes:Do it steps in order to apply the theory or modelReflection points & challenges to develop your understanding of how to apply itAnalogies & metaphors from which understanding and meaning can be drawnTips for the classroomFurther reading if you want to explore a theory in greater depth. More titles by Bob Bates: Educational Leadership Simplified A Quick Guide to Special Needs and Disabilities
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.
The Joy of Search: A Google Insider's Guide to Going Beyond the Basics
Daniel M. Russell - 2019
We do this so often that we have made the most famous search engine a verb: we Google it—“Japan population” or “Nobel Peace Prize” or “poison ivy” or whatever we want to know. But knowing how to Google something doesn't make us search experts; there's much more we can do to access the massive collective knowledge available online. In The Joy of Search, Daniel Russell shows us how to be great online researchers. We don't have to be computer geeks or a scholar searching out obscure facts; we just need to know some basic methods. Russell demonstrates these methods with step-by-step searches for answers to a series of intriguing questions—from “what is the wrong side of a towel?” to “what is the most likely way you will die?” Along the way, readers will discover essential tools for effective online searches—and learn some fascinating facts and interesting stories.Russell explains how to frame search queries so they will yield information and describes the best ways to use such resources as Google Earth, Google Scholar, Wikipedia, and Wikimedia. He shows when to put search terms in double quotes, how to use the operator (*), why metadata is important, and how to triangulate information from multiple sources. By the end of this engaging journey of discovering, readers will have the definitive answer to why the best online searches involve more than typing a few words into Google.
The Best Joke Book (Period): Hundreds of the Funniest, Silliest, Most Ridiculous Jokes Ever
William Donohue - 2014
Inside, you'll find hundreds of jokes that are guaranteed to stir up a room full of smiles, including knock-knocks, witty puns, and one-liners. Complete with hilarious quotes from celebrities like Jon Stewart, Lewis Black, and Jerry Seinfeld, everyone will revel in each gut-busting moment.So whether you're looking to add a few jokes to your repertoire, impress your buds, or improve your banter, this sidesplitting book arms you with the perfect joke for any occasion!
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.
Three Steps to a Strong Family
Linda Eyre - 1994
The methods described in Three Steps to a Strong Family aim to help parents give children a sense of security and stability and prepare them for the adult world.Linda and Richard Eyre's Three Steps to a Strong Family shows how to create a family legal system, a family economy and a sense of family identity which work together to provide rules, limits and goals.
Striped Pears and Polka Dots: The Art of Being Happy
Kirsten Sevig - 2018
She paints rainbow-colored rooftops, striped pears, birds in hats, teacups, cats, and more—all drawn to bring joy to anyone who views them. When the weather is rainy and gray, Sevig paints herself some sunshine. When she feels sad, she paints something colorful to cheer herself up; when anxious, something soothing and repetitive; when overwhelmed, she makes a series of small decisions about what to put on the page and begins to feel empowered.In Striped Pears and Polka Dots, Sevig invites readers into her cozy, sunny world of snail mail, patterned socks and knitted sweaters, ice cream and flaky croissants, and dachshunds in sweaters. This perfect gift book will inspire readers to look around and notice all the little happy-makers that surround them in their daily lives.
Elixir in Action
Saša Jurić - 2015
Revised and updated for the Elixir 1.7, Elixir in Action, Second Edition teaches you how to apply Elixir to practical problems associated with scalability, fault tolerance, and high availability. Along the way, you'll develop an appreciation for, and considerable skill in, a functional and concurrent style of programming.
Sinatra: Up and Running
Alan Harris - 2011
With this concise book, you will quickly gain working knowledge of Sinatra and its minimalist approach to building both standalone and modular web applications.
Sinatra serves as a lightweight wrapper around Rack middleware, with syntax that maps closely to functions exposed by HTTP verbs, which makes it ideal for web services and APIs. If you have experience building applications with Ruby, you’ll quickly learn language fundamentals and see under-the-hood techniques, with the help of several practical examples. Then you’ll get hands-on experience with Sinatra by building your own blog engine.
Learn Sinatra’s core concepts, and get started by building a simple application
Create views, manage sessions, and work with Sinatra route definitions
Become familiar with the language’s internals, and take a closer look at Rack
Use different subclass methods for building flexible and robust architectures
Put Sinatra to work: build a blog that takes advantage of service hooks provided by the GitHub API
Aha! Insight
Martin Gardner - 1978
Aha! Insight challenges the reader's reasoning power and intuition while encouraging the development of 'aha! reactions'.
The Mindful Parent: Strategies from Peaceful Cultures to Raise Compassionate, Competent Kids
Charlotte Peterson - 2015
To figure out why this is happening and how to put an end to it, child psychologist Dr. Charlotte Peterson has been spending six months every five years living in indigenous villages and observing their parenting practices. What she's found is that the people of peaceful cultures, particularly the Tibetan, Bhutanese, and Balinese people, know something we Westerners, despite our modernity, don't, and their children are happier, healthier, and more balanced because of it.What Dr. Peterson has found is that the children in these cultures are raised with a high degree of cherishing and empathy. Attachments are promoted by intensive nurturing of infants and gentle, clear limit-setting with toddlers that teaches self-control and builds self-esteem. The result, as Dr. Peterson has found after visiting these places again and again, is children who are trusting, enjoyable, and kind, —not “spoiled,” as we might imagine.The Mindful Parent brings together Dr. Peterson's village interviews, observations, research, and over thirty-five years of work as a psychologist to teach modern parents how to raise healthier, more well-balanced, and kinder children. It includes creative ideas from parents who are currently adopting these practices and balancing other aspects of their personal, career, and financial responsibilities to assure their children get the support they need to thrive.
The Children's Machine: Rethinking School In The Age Of The Computer
Seymour Papert - 1993
In The Children's Machine he now looks back over a decade during which American schools acquired more than three million computers and assesses progress and resistance to progress.
Hacking School Libraries: 10 Ways to Incorporate Library Media Centers into Your Learning Community (Hack Learning Series Book 20)
Kristina A. Holzweiss - 2018
They are places for research, refuge, and reflection--where students create, collaborate, communicate, and develop skills in critical thinking and compassion. Learn 10 ways to create the library learning environment that every child deserves. In Hacking School Libraries, 2015 School Librarian of the Year, Kristina A. Holzweiss, and 2017 Sensational Student Voice Award finalist, Stony Evans, bring you 10 practical hacks that will help you create a welcoming and exciting school library program. They show you how to rethink your library to become the hub of the school community, whether you are a veteran librarian or just beginning your career. Hacking School Libraries isn't just for librarians. It's for any educator who wants to learn how to transform your learning space provide hands-on learning opportunities empower your students bring curriculum to life differentiate instruction effectively raise funds advocate for modern school libraries establish global connections celebrate reading What the experts say: "When I learned that Kristina and Stony were writing a book to fit into one of my favorite series, I was so excited and couldn’t think of a better duo to do so! School librarians will find Hacking School Libraries such an amazing read and resource in so many ways. The hacks found in this book are terrific for any grade level and will help guide librarians to make a difference in their library, school, and community!" -Shannon McClintock Miller, Teacher Librarian and Iowa Future Ready Librarian Spokesperson "Authors Kristina Holzweiss and Stony Evans are two of the most respected thought leaders and practitioners in the school library field. Their book, Hacking School Libraries, is an essential resource for any modern-day library media specialist. It is filled with actionable tips and strategies that anyone can easily implement tomorrow." -Laura Fleming, Library Media Specialist, bestselling author of Worlds of Making and The Kickstart Guide to Making Great Makerspaces Grab Hacking School Libraries today, and incorporate library media centers into your learning community tomorrow.
Help for the Harried Homeschooler: A Practical Guide to Balancing Your Child's Education with the Rest of Your Life
Christine M. Field - 2002
Between their children’s educational needs; their roles as spouse, parent, and more; and their own individual desires and goals, these mothers and fathers struggle to accomplish all that must be done. In Help for the Harried Homeschooler, experienced homeschooler, author, and mother of four Christine Field offers sound advice for parents who want not only to achieve homeschooling success but also to reach a balance in their lives.
Show Stopper!: The Breakneck Race to Create Windows NT and the Next Generation at Microsoft
G. Pascal Zachary - 1994
Describes the five-year, 150 million dollar project Microsoft undertook to develop an advanced PC operating system.