Node: Up and Running: Scalable Server-Side Code with JavaScript


Tom Hughes-Croucher - 2011
    You'll learn hands-on how Node makes life easier for experienced JavaScript developers: not only can you work on the front end and back end in the same language, you'll also have more flexibility in choosing how to divide application logic between client and server.Written by a core contributor to the framework, Node: Up and Running shows you how Node scales up to support large numbers of simultaneous connections across multiple servers, and scales down to let you create quick one-off applications with minimal infrastructure. Built on the V8 JavaScript engine that runs Google Chrome, Node is already winning the hearts and minds of many companies, including Google and Yahoo! This book shows you why.Understand Node's event-loop architecture, non-blocking I/O, and event-driven programmingDiscover how Node supports a variety of database and data storage toolsLearn best practices for writing easy-to-maintain code for NodeGet concrete examples of how to use the various Node APIs in practiceTake advantage of the book’s complete API reference

Professional PHP Programming


Sascha Schumann - 1999
    PHP is a server-side, HTML-embedded scripting language. It is an open source technology, rapidly gaining popularity as a scripting language for people running dynamic websites. One of its major attractions over Perl, JavaScript and other scripting languages is that PHP has a built-in database integration layer and seamless IP connectivity, with LDAP and TCP as well as the IMAP mail interface. Features; Real world, practical experience and techniques From installation and configuration of the PHP engine to advanced dynamic application design Definitive coverage of core PHP language and database addressing: MySQL is covered in depth. Practical e-commerce and business scripting including database application development, together with PHP and XML applications. LDAP connectivity addressed.

Pragmatic Guide to Git


Travis Swicegood - 2010
    Git tasks displayed on two-page spreads provide all the context you need, without the extra fluff. Get up to speed on Git right now with Pragmatic Guide to Git. Task-oriented two-page spreads get you up and running with minimal fuss. Each left-hand page dives into the underlying implementation for each task. The right-hand page contains commands that focus on the task at hand, and cross references to other tasks that are related. You'll find what you need fast. Git is rapidly becoming the de-facto standard for the open source community. Its excellent merging capabilities, coupled with its speed and relative ease of use, make it an indispensable tool for any developer. New Git users will learn the basic tasks needed to work with Git every day, including working with remote repositories, dealing with branches and tags, exploring the history, and fixing problems when things go wrong. If you're already familiar with Git, this book will be your go-to reference for Git commands and best practices. You won't find a more practical approach to learning Git than Pragmatic Guide to Git.

Alexa: 1200 Best Things To Ask Alexa - The Top Alexa Questions You Wish You Knew (2017 Edition): (FREE: Download Inside)


James Ryan - 2016
    Well, look no further. This book contains the top Alexa dot questions that you wish you knew. After hours of searching, I have found and compiled the best questions you can ask. Each one has been tested and works perfectly. In this eBook, you'll discover... - Helpful ways to get the most out of your Alexa-enabled device - Fun questions to ask Alexa echo with your friends and family - Tips, tricks, and hours of entertainment with Alexa FREE DOWNLOAD INSIDE: "10 Alexa Skills You Need to Know" Buy this book now for only $.99 to get the most out of your Amazon product!

MongoDB Applied Design Patterns


Rick Copeland - 2013
    You’ll learn how to apply MongoDB design patterns to several challenging domains, such as ecommerce, content management, and online gaming. Using Python and JavaScript code examples, you’ll discover how MongoDB lets you scale your data model while simplifying the development process.Many businesses launch NoSQL databases without understanding the techniques for using their features most effectively. This book demonstrates the benefits of document embedding, polymorphic schemas, and other MongoDB patterns for tackling specific big data use cases, including:Operational intelligence: Perform real-time analytics of business dataEcommerce: Use MongoDB as a product catalog master or inventory management systemContent management: Learn methods for storing content nodes, binary assets, and discussionsOnline advertising networks: Apply techniques for frequency capping ad impressions, and keyword targeting and biddingSocial networking: Learn how to store a complex social graph, modeled after Google+Online gaming: Provide concurrent access to character and world data for a multiplayer role-playing game

Build APIs You Won't Hate


Phil Sturgeon - 2013
    Everyone and their dog wants an API, so you should probably learn how to build them.Tasked with building an API for your company but don't have a clue where to start? Taken over an existing API and hate it? Built your own API and still hate it? This book is for you.

Wordpress for Beginners - A Visual Step-by-Step Guide to Creating your Own Wordpress Site in Record Time, Starting from Zero! (Webmaster Series)


Andy Williams - 2012
    Not any more. Wordpress makes it possible for anyone to create and run a professional looking website.While Wordpress is an amazing tool, the truth is it does have a steep learning curve, even if you have built websites before. Therefore, the goal of this book is to take anyone, even a complete beginner and get them building a professional looking website. I'll hold your hand, step-by-step, all the way. As I was planning this book, I made one decision early on. I wanted to use screenshots of everything, so the reader wasn't left looking for something on their screen that I was describing in text. This book has screenshots. I haven't counted them all, but it must be close to 300. These screenshots will help you find the things I am talking about. They'll help you check your settings and options against the screenshot of mine. No more doubt, no more wondering if you have it correct. Look, compare and move on to the next section.With so many screenshots, you may be worried that the text might be a little on the skimpy side. No need to worry there. I have described in the minutest detail, every step on your journey to a great looking website. In all, this book has over 35,000 words. This book will cut your learning curve associated with WordpressEvery chapter of the book ends with a "Tasks to Complete" section. By completing these tasks, you'll not only become proficient at using Wordpress, you'll become confident & enjoy using Wordpress.

Testable JavaScript


Mark Ethan Trostler - 2012
    This book shows you what writing and maintaining testable JavaScript for the client- or server-side actually entails, whether you’re creating a new application or rewriting legacy code.From methods to reduce code complexity to unit testing, code coverage, debugging, and automation, you’ll learn a holistic approach for writing JavaScript code that you and your colleagues can easily fix and maintain going forward. Testing JavaScript code is complicated. This book helps you simply the process considerably.Get an overview of Agile, test-driven development, and behavior-driven developmentUse patterns from static languages and standards-based JavaScript to reduce code complexityLearn the advantages of event-based architectures, including modularity, loose coupling, and reusabilityExplore tools for writing and running unit tests at the functional and application levelGenerate code coverage to measure the scope and effectiveness of your testsConduct integration, performance, and load testing, using Selenium or CasperJSUse tools for in-browser, Node.js, mobile, and production debuggingUnderstand what, when, and how to automate your development processes

The Insurance Code of the Philippines Annotated


Hector S. De Leon - 1988
    

Redis in Action


Josiah L. Carlson - 2013
    You'll begin by getting Redis set up properly and then exploring the key-value model. Then, you'll dive into real use cases including simple caching, distributed ad targeting, and more. You'll learn how to scale Redis from small jobs to massive datasets. Experienced developers will appreciate chapters on clustering and internal scripting to make Redis easier to use.About the TechnologyWhen you need near-real-time access to a fast-moving data stream, key-value stores like Redis are the way to go. Redis expands on the key-value pattern by accepting a wide variety of data types, including hashes, strings, lists, and other structures. It provides lightning-fast operations on in-memory datasets, and also makes it easy to persist to disk on the fly. Plus, it's free and open source.About this bookRedis in Action introduces Redis and the key-value model. You'll quickly dive into real use cases including simple caching, distributed ad targeting, and more. You'll learn how to scale Redis from small jobs to massive datasets and discover how to integrate with traditional RDBMS or other NoSQL stores. Experienced developers will appreciate the in-depth chapters on clustering and internal scripting.Written for developers familiar with database concepts. No prior exposure to NoSQL database concepts nor to Redis itself is required. Appropriate for systems administrators comfortable with programming.Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.What's InsideRedis from the ground upPreprocessing real-time dataManaging in-memory datasetsPub/sub and configurationPersisting to diskAbout the AuthorDr. Josiah L. Carlson is a seasoned database professional and an active contributor to the Redis community.Table of ContentsPART 1 GETTING STARTEDGetting to know RedisAnatomy of a Redis web applicationPART 2 CORE CONCEPTSCommands in RedisKeeping data safe and ensuring performanceUsing Redis for application supportApplication components in RedisSearch-based applicationsBuilding a simple social networkPART 3 NEXT STEPSReducing memory useScaling RedisScripting Redis with Lua

Tea-Blender's Daughter


Pamela Evans - 1994
    But he is a cold man, with little time for his children, Dolly and Ken. Dolly works for the company and is set to marry her father's deputy, Frank Mitchell. But during the General Strike, Dolly is rescued from a dangerous riot by factory hand Bill Drake, and the pair soon fall in love. But Henry Slafer is displeased by the match, and does everything in his power to destroy their relationship. Confused and alone, Dolly agrees to marry Frank and Bill, heartbroken, takes a job elsewhere. Will Dolly and Bill ever see each other again? And can Bill forgive her for turning her back on him?

Electronic Devices and Circuits: [With CDROM]


Theodore F. Bogart Jr. - 1990
    KEY TOPICS Topical selection is based on the significance of each topic in modern industrial applications and the impact that each topic is likely to have in emerging technologies. Integrated circuit theory is covered extensively, including coverage of analog and digital integrated circuit design, operational amplifier theory and applications, and specialized electronic devices and circuits such as switching regulators and optoelectronics. For electronic engineers and technologists.

Developing Backbone.js Applications


Addy Osmani - 2012
    You’ll learn how to create structured JavaScript applications, using Backbone’s own flavor of model-view-controller (MVC) architecture.Start with the basics of MVC, SPA, and Backbone, then get your hands dirty building sample applications—a simple Todo list app, a RESTful book library app, and a modular app with Backbone and RequireJS. Author Addy Osmani, an engineer for Google’s Chrome team, also demonstrates advanced uses of the framework.Learn how Backbone.js brings MVC benefits to the client-sideWrite code that can be easily read, structured, and extendedWork with the Backbone.Marionette and Thorax extension frameworksSolve common problems you’ll encounter when using Backbone.jsOrganize your code into modules with AMD and RequireJSPaginate data for your Collections with the Backbone.Paginator pluginBootstrap a new Backbone.js application with boilerplate codeUse Backbone with jQuery Mobile and resolve routing problems between the twoUnit-test your Backbone apps with Jasmine, QUnit, and SinonJS

Whatever it Takes: An Erotic Novella


Monica Walters - 2019
    As a successful dietician, she started her own business, by traveling and doing home visits for patients instead of working for someone else. She always knew she was destined for greatness. The only area she struggles in is her love life. After taking a trip home to visit her parents, she runs into her high school sweetheart. It has been seven years since she’s seen him, but her feelings haven’t changed, and she discovers that immediately after seeing him. Chance Sylvester has accepted mediocrity in his love life, since he felt like he couldn’t have the woman he wants. As a successful accountant, he’s made the best of life and his career, feeling like he was on the brink of making partner. His mediocre love life comes to a screeching halt when he sees Amesha, after seven years, in the grocery store. He is determined to hold onto her this time, no matter what it takes. This chance encounter is only the beginning. Despite the rekindling, they are now adults and don’t know if they will be as compatible as they once were as kids. Can they turn a past, immature attraction into an undeniable love?

Indoor Games: 21 Fun Indoor Games for Kids


Camelia Gherib - 2017
    Maybe your kids have never liked games. Are you out of fun ideas to try? Whatever your situation you are sure to find some amazing games in this book!Would you like your child to get up and get moving? You will find lots of amusing games that incorporate all types of movement to get the wiggles and giggles out of your child. Does your child love watching stories where the hero beats the bad guy? Would your kid enjoy hunting for lost treasure? Can you imagine playing basketball inside? Are you interested in helping your child learn new things while having fun? No problem! This book includes different games for a variety of interests.If you are looking for new ideas or want an update on an old game, there is something here for you to share with your kids to keep them entertained for hours! Most of the games are designed to be played alone, with a parent, or with a group. If you have an only child, don’t worry about inviting a whole brigade of neighborhood children into the house to play these games. Another great thing about the indoor games you will find in this book is that they are played with relatively few items. Most of the parts are made from items lying about your house, like construction paper, paper plates, masking tape, ping pong balls, bean bags, pool noodles, and a timer. This means there’s no need for you to run out and get anything before you can begin playing. So even if a rainy day catches you by surprise, you will be ready to roll, hop, hide, kick, and toss with just a few household items.21 Fun Indoor Games for Kids Book Includes FREE BONUS Baskets, Balls & Drinking Straws Stand Up, Sit Down, Turn Around, Touch the Ground Don’t Stand By . . . Let It Fly Indoor games will have you laughing and playing in all new ways with your child! In the process of learning the games, you will spend quality time teaching and learning from each other. Isn’t that what every parent wants? Extra special time set aside with their kids to connect and have fun? You bet it is!So take a few minutes to read through the instructions and then pick out one game to try today. You will not regret the time invested in creating meaningful and active play experiences for your child!