Discovering Statistics Using R


Andy Field - 2012
    Like its sister textbook, Discovering Statistics Using R is written in an irreverent style and follows the same ground-breaking structure and pedagogical approach. The core material is enhanced by a cast of characters to help the reader on their way, hundreds of examples, self-assessment tests to consolidate knowledge, and additional website material for those wanting to learn more.

Build Your Own Database Driven Website Using PHP & MySQL


Kevin Yank - 2001
    There has been a marked increase in the adoption of PHP, most notably in the beginning to intermediate levels. PHP now boasts over 30% of the server side scripting market (Source: php.weblogs.com).The previous edition sold over 17,000 copies exclusively through Sitepoint.com alone. With the release of PHP 5, SitePoint have updated this bestseller to reflect best practice web development using PHP 5 and MySQL 4.The 3rd Edition includes more code examples and also a new bonus chapter on structured PHP Programming which introduces techniques for organizing real world PHP applications to avoid code duplication and ensure code is manageable and maintainable. The chapter introduces features like include files, user-defined function libraries and constants, which are combined to produce a fully functional access control system suitable for use on any PHP Website.

Robot Building for Beginners


David Cook - 2002
    Not only does author David Cook assist you in understanding the component parts of robot development, but he also presents valuable techniques that prepare you to make new discoveries on your own.Cook begins with the anatomy of a homemade robot and gives you the best advice on how to proceed successfully. General sources for tools and parts are provided in a consolidated list, and specific parts are recommended throughout the book. Also, basic safety precautions and essential measuring and numbering systems are promoted throughout.Specific tools and parts covered include digital multimeters, motors, wheels, resistors, LEDs, photoresistors, transistors, chips, gears, nut drivers, batteries, and more. "Robot Building for Beginners" is an inspiring book that provides an essential base of practical knowledge for anyone getting started in amateur robotics.

The C++ Programming Language


Bjarne Stroustrup - 1986
    For this special hardcover edition, two new appendixes on locales and standard library exception safety (also available at www.research.att.com/ bs/) have been added. The result is complete, authoritative coverage of the C++ language, its standard library, and key design techniques. Based on the ANSI/ISO C++ standard, The C++ Programming Language provides current and comprehensive coverage of all C++ language features and standard library components. For example:abstract classes as interfaces class hierarchies for object-oriented programming templates as the basis for type-safe generic software exceptions for regular error handling namespaces for modularity in large-scale software run-time type identification for loosely coupled systems the C subset of C++ for C compatibility and system-level work standard containers and algorithms standard strings, I/O streams, and numerics C compatibility, internationalization, and exception safety Bjarne Stroustrup makes C++ even more accessible to those new to the language, while adding advanced information and techniques that even expert C++ programmers will find invaluable.

Writing Idiomatic Python 2.7.3


Jeff Knupp - 2013
    Each idiom comes with a detailed description, example code showing the "wrong" way to do it, and code for the idiomatic, "Pythonic" alternative. *This version of the book is for Python 2.7.3+. There is also a Python 3.3+ version available.* "Writing Idiomatic Python" contains the most common and important Python idioms in a format that maximizes identification and understanding. Each idiom is presented as a recommendation to write some commonly used piece of code. It is followed by an explanation of why the idiom is important. It also contains two code samples: the "Harmful" way to write it and the "Idiomatic" way. * The "Harmful" way helps you identify the idiom in your own code. * The "Idiomatic" way shows you how to easily translate that code into idiomatic Python. This book is perfect for you: * If you're coming to Python from another programming language * If you're learning Python as a first programming language * If you're looking to increase the readability, maintainability, and correctness of your Python code What is "Idiomatic" Python? Every programming language has its own idioms. Programming language idioms are nothing more than the generally accepted way of writing a certain piece of code. Consistently writing idiomatic code has a number of important benefits: * Others can read and understand your code easily * Others can maintain and enhance your code with minimal effort * Your code will contain fewer bugs * Your code will teach others to write correct code without any effort on your part

Daily Life in North Korea


Andrei Lankov - 2015
    Andrei Lankov is in a unique position to interpret North Korea's culture and society to a foreign audience. Accepted into the prestigious faculty of Oriental Studies at Leningrad State university during the declining days of the Soviet Union, Lankov had originally hoped to study Chinese. Instead, he found himself specialising in North Korean studies, an eccentric option even within the Soviet Bloc.The Faculty of Oriental Studies was world apart from the daily life of the average Soviet citizen, in which well-paid Professors avoided their students as much as they possibly could and took refuge from current political troubles in obscure corners of classical philology. Even within this world, North Korean studies were a minority interest. As Lankov himself put it: “Most of the time, Korean departments played host to undergraduates deemed not good enough to be accepted to more prestigious and competitive majors like, say, Japanese and Arab studies. This meant that interest in things Korean was present but not necessarily enthusiastic. It did not help, of course, that North Korea, with its bizarre political system, hysterical propaganda and crazy personality cult was seen as a laughing stock in the entire socialist bloc of the time.”Despite this, Lankov pursued his studies and was eventually dispatched to Pyongyang to study at Kim Il Sung University. Here he gained first-hand experience of life in North Korea: restrictions on movement, ideological proselitizing, corruption and black-market trading. After graduating he taught Korean history and language at his alma mater before moving on to the Australian National University and Kookmin University in Seoul and bringing his knowledge of the closed world of North Korea to a wider audience via a variety of media outlets, including NK News.In this volume we bring together a selection of Andrei Lankov's most popular columns for NK News, illustrated with luminous photographs by Eric Lafforgue.

Adventures In Raspberry Pi (Adventures In ...)


Carrie Anne Philbin - 2013
    Written for 11- to 15-year-olds and assuming no prior computing knowledge, this book uses the wildly successful, low-cost, credit-card-sized Raspberry Pi computer to explain fundamental computing concepts. Young people will enjoy going through the book's nine fun projects while they learn basic programming and system administration skills, starting with the very basics of how to plug in the board and turn it on. Each project includes a lively and informative video to reinforce the lessons. It's perfect for young, eager self-learners—your kids can jump in, set up their Raspberry Pi, and go through the lessons on their own. Written by Carrie Anne Philbin, a high school teacher of computing who advises the U.K. government on the revised ICT Curriculum Teaches 11- to 15-year-olds programming and system administration skills using Raspberry Pi Features 9 fun projects accompanied by lively and helpful videos Raspberry Pi is a $35/£25 credit-card-sized computer created by the non-profit Raspberry Pi Foundation; over a million have been sold Help your children have fun and learn computing skills at the same time with Adventures in Raspberry Pi.

What Is Node?


Brett McLaughlin - 2011
    It’s the latest in a long line of “Are you cool enough to use me?” programming languages, APIs, and toolkits. In that sense, it lands squarely in the tradition of Rails, and Ajax, and Hadoop, and even to some degree iPhone programming and HTML5.Dig a little deeper, and you’ll hear that Node.js (or, as it’s more briefly called by many, simply “Node”) is a server-side solution for JavaScript, and in particular, for receiving and responding to HTTP requests. If that doesn’t completely boggle your mind, by the time the conversation heats up with discussion of ports, sockets, and threads, you’ll tend to glaze over. Is this really JavaScript? In fact, why in the world would anyone want to run JavaScript outside of a browser, let alone the server?The good news is that you’re hearing (and thinking) about the right things. Node really is concerned with network programming and server-side request/response processing. The bad news is that like Rails, Ajax, and Hadoop before it, there’s precious little clear information available. There will be, in time — as there now is for these other “cool” frameworks that have matured — but why wait for a book or tutorial when you might be able to use Node today, and dramatically improve the maintainability.

50 Years of Rolling Stone: The Music, Politics and People that Changed Our Culture


Rolling Stone - 2017
    This landmark book documents the magazine’s rise to prominence as the voice of rock and roll and a leading showcase for era-defining photography. From the 1960s to the present day, the book offers a decade-by-decade exploration of American music and history. Interviews with rock legends—Bob Dylan, Mick Jagger, Kurt Cobain, Bruce Springsteen, and more—appear alongside iconic photographs by Baron Wolman, Annie Leibovitz, Mark Seliger, and other leading image-makers. With feature articles, excerpts, and exposés by such quintessential writers as Hunter S. Thompson, Matt Taibbi, and David Harris, this book is an irresistible and essential keepsake of the magazine that has defined American music for generations of readers.

AWS Lambda: A Guide to Serverless Microservices


Matthew Fuller - 2016
    Lambda enables users to develop code that executes in response to events - API calls, file uploads, schedules, etc - and upload it without worrying about managing traditional server metrics such as disk space, memory, or CPU usage. With its "per execution" cost model, Lambda can enable organizations to save hundreds or thousands of dollars on computing costs. With in-depth walkthroughs, large screenshots, and complete code samples, the reader is guided through the step-by-step process of creating new functions, responding to infrastructure events, developing API backends, executing code at specified intervals, and much more. Introduction to AWS Computing Evolution of the Computing Workload Lambda Background The Internals The Basics Functions Languages Resource Allocation Getting Set Up Hello World Uploading the Function Working with Events AWS Events Custom Events The Context Object Properties Methods Roles and Permissions Policies Trust Relationships Console Popups Cross Account Access Dependencies and Resources Node Modules OS Dependencies OS Resources OS Commands Logging Searching Logs Testing Your Function Lambda Console Tests Third-Party Testing Libraries Simulating Context Hello S3 Object The Bucket The Role The Code The Event The Trigger Testing When Lambda Isn’t the Answer Host Access Fine-Tuned Configuration Security Long-Running Tasks Where Lambda Excels AWS Event-Driven Tasks Scheduled Events (Cron) Offloading Heavy Processing API Endpoints Infrequently Used Services Real-World Use Cases S3 Image Processing Shutting Down Untagged Instances Triggering CodeDeploy with New S3 Uploads Processing Inbound Email Enforcing Security Policies Detecting Expiring Certificates Utilizing the AWS API Execution Environment The Code Pipeline Cold vs. Hot Execution What is Saved in Memory Scaling and Container Reuse From Development to Deployment Application Design Development Patterns Testing Deployment Monitoring Versioning and Aliasing Costs Short Executions Long-Running Processes High-Memory Applications Free Tier Calculating Pricing CloudFormation Reusable Template with Minimum Permissions Cross Account Access CloudWatch Alerts AWS API Gateway API Gateway Event Creating the Lambda Function Creating a New API, Resource, and Method Initial Configuration Mapping Templates Adding a Query String Using HTTP Request Information Within Lambda Deploying the API Additional Use Cases Lambda Competitors Iron.io StackHut WebTask.io Existing Cloud Providers The Future of Lambda More Resources Conclusion

Crochet for Beginners: Quick and Easy Way to Master Spectacular Crochet Stitches in 3 Days (Crochet Patterns Book 1)


Emma Brown - 2014
    Crochet books were largely useless because it is difficult to teach a visual art through words—until now. Crochet for Beginners is full of color photos and diagrams that make it easy not only to learn beginning crocket stitches but really begin to put them into use, making more and more complicated projects, all the way up to crochet afghans. If you already know how to do basic crochet stitches and are looking for crocheting books that can help you take your projects to the next level, this book is also perfect for your needs. This books is very specific about not only how to start crocheting, but how to improve your skills with a range of techniques and crochet patterns that train you to make just about anything you want, quickly and easily. All you have to do is look at the pictures and diagrams and you will be able to make any of the 21 crochet patterns included in the book. This book teaches you to complete every single one of our patterns, even the most advanced ones, in less than three days. To speed up the process, the book also includes a full list of Glossary terms, to explain that crochet terminology that patterns and other crocheters use. There are even ten fast-track tips to get you crocheting fast and a FAQ to answer any questions you might have about crocheting, crochet stiches, what hooks to purchase, etc. You will be a master of crocheting in no time! Here are just some of the benefits provided by Crochet for Beginners: • Learn whether or not crocheting is harder than knitting • 21 different crochet projects, teaching you the skills to crochet just about anything • How to easily start crocheting and build your skills • How to join crochet pieces • And many more! Learning how to crochet is not a difficult or protracted process when you have the right tools. That is what Crochet for Beginners provides, a step-by-step, picture and diagram tutorial for simple and highly advanced projects. Scroll up and get your copy today! Check Out What Others Are Saying... "One thing I really love about the book is the abundance of clear, beautiful photos. They feature colorful crochet stitches done, has got to be one of my most favorite books. Why? Because you don't just read it cover to cover and walk away from it. It is useful, it is a resource, and I find myself referring to it time and time again. You see, I am a crocheter, but I don't crochet constantly so I forget stitches. A to Z Crochet is a great tool to remind me how to do a certain stitch. The pictures are helpful and show progressive steps. If there is more than one way to do something, you can bet it is explained.. I really appreciate these pics!I now have enough stitches to keep me crocheting into the next millennium. Easy instructions and great pictures...makes it hard to do anything other than crochet. For the price, this book is an absolutely incredible value. I expect to use this book as a reference for a long time to come." - Michelle Smith "I've always wanted to learn how to crochet, this book makes it so easy! The diagrams of the patterns were really helpful to me (it doesn't matter how many times someone explains something in words, I'm a visual learner!).

A Season in the Sun


Lars Anderson - 2021
    An unprecedented inside look at the Tampa Bay Bucs’ Super Bowl-winning season, written with the participation of Coach Bruce Arians, Tom Brady and the Bucs’ key staff and players.

Titan Screwed: Lost Smiles, Stunners, and Screwjobs


James Dixon - 2016
    ECW with Jerry Lawler pulling the strings, the death of Brian Pillman, Austin vs. Tyson, the seedy story elements that overtook WWF programming, the birth of the nefarious Mr. McMahon, and of course, Montreal: the build-up, the secret plotting, the match, the moment, and the aftermath in all of its incredible details.Exclusive author-conducted interviews for Titan Screwed include Ken Shamrock, Rob Van Dam, Jim Cornette, "The Patriot" Del Wilkes, Dr. Tom Prichard, Danny Doring, former ECW owner Tod Gordon, and more.***Includes foreword from WrestleCrap's RD Reynolds***

The Cambridge Medieval History, Vols 1-5


John Bagnell Bury - 1957
    Planned by one of the most renowned Byzantinists and Medievalists of the day, John B. Bury, it became the de facto standard by which all comprehensive period histories would be measured. Its impact on the field of medieval scholarship is every bit as great as Gibbon’s “Decline and Fall of the Roman Empire”.Volume One – The Christian Roman Empire and the Foundation of the Teutonic Kingdoms begins with the accession of Constantine to the Imperium and ends roughly with reign of Justinian in the East. It covers the migration of Germanic tribes into Roman territories. Significant attention is given the ecumenical church councils of the 4th Century, with particular emphasis on the Arian controversies.Volume Two – The Rise of the Saracens and the Foundation of the Western Empire covers the time period from roughly 500 CE to 814 CE. Beginning with Justinian, it also looks at the Frankish Merovingian dynasty, the Lombard Kingdom in Italy, the Restoration of the Imperium in Italy, and ends with the transition of power from the Merovingians to the Carolingians through Charlemagne’s reign. Chapters covering England and English institution and the conversion of the Celts. Finally, attention is given to the birth and spread of Islam and the growth of the Islamic Caliphate.Volume Three – Germany and the Western Empire covers the period from roughly 814 CE through the end of the first millennium. Beginning with the reign of Louis the Pious, it traces the decline of the Carolingian Empire and the foundation of the Capetian Dynasty. Attention is paid to the Holy Roman Empire in Germany through Henry III. The impact of the Norse Vikings on the political landscape is examined as is the development of the Anglo-Saxon kingdom of England through the death of Edward the Confessor. Throughout the volume development of feudalism as a primary labor, land-owning, and social way of life is highlighted. Finally, the continued growth of the Western Caliphate is looked at.Volume Four – The Eastern Roman Empire focuses primarily on the Byzantine East from roughly 700 CE through the end of the Empire in 1483. The different dynasties (Isaurian, Phrygian, and Macedonian) receive their own chapters, and in-depth attention is paid to the struggle with the emerging Islamic Caliphate. The religious and political relationship with the West is considered and significant attention is paid to the Comneni and Fourth Crusade.Volume Five – The Contest of Empire and Papacy is concerned primarily with the century and a half from 1050 CE to 1200 CE. It looks at the surging political power of the Church and the corresponding growth of nations of Western Europe. The Holy Roman Empire and the Norman Invasion of England, the establishment of the Plantagenet Dynasty in Norman Britain, and the emergence of Monasticism and Scholasticism in the period receive attention.Volumes 6-8 were published after 1923 and are therefore not in the public domain. Plantagenet Publishing will not be able to make them available in this format.

Top Home-Based Job & Business Ideas for 2020: Best Places to Find Jobs to Work from Home Grouped by Interests & Hobbies from Basic to Expert Level (Influencer Fast Track #4)


Gundi Gabrielle - 2019
     Or build long term income streams that you enjoy and that allow you to finally #ClaimYourFREEDOM® and leave that dreary 9-5 job once and for all. PART 1 starts with the Best Places to Find Jobs to Work from Home grouped by skill and experience level: Basic Skills Intermediate Skills PRO Skills College Degree Required This is followed by a number of flexible job options in your local area as well as how and where to find jobs fast. Next, you'll find several innovative ways to monetize your home and car (and no - not just Uber & AirBnB....). Then we get to the first list of Top Home-Based Business Opportunities, some with significant income potential - even on a part time basis. PART 2 lists more home-based job and business ideas grouped by your interests, passions and hobbies: Pets Travel (local) Arts & Crafts Writing Photo + Video Fashion Cooking Health & Wellness Gardening Kids