JP Investigations


Lola Silverman - 2017
    5 books and NO cliffies! Book 1: Micah Lexi is everything a man like me should steer clear of. Mostly, that means she’s too good for someone like me. But when I realize that her brother is missing because of something that happened in my club, there’s really nothing for me to do but help her out. Something isn’t right around here and I’m ashamed to say that I’ve been a little blind to some stuff that was right under my nose. Lexi has woken me up in so many ways and I’m not sure I’ll ever be the same again. Book 2: Aaron I’m in Boston for one reason, to chase down a lead on my boss’s missing son. Joshua is the owner and CEO of Joshua Pettit Investigations and he tells me where to go and when. But it’s always up to me to find the best way to crack a case wide open. Of course this is the first time that my main informant in any case turned out to be a prostitute. For the moment she and I have mutual goals. But the more time I spend with Johanna, the more time I realize that there’s a lot more to her than anyone has ever given her credit for. Book 3: Zandry Coming to Denver in search of some runaway teens that might or might not be my boss’s kid is about the vaguest assignment I’ve ever had. Now I’m following runaway teens all over town and watching them pull off panhandling schemes that would make an experience thief green with envy. Something isn’t quite adding up here and it has nothing to do with the carnies coming to town. Of course hanging out with pickpockets occasionally means you get accused of doing the deed yourself. Fortunately for me there is a super hot cop that doesn’t mind coming to my rescue. Book 4: Liam Finding the bodies of dead runaway in a hole in the desert isn’t the worst thing I’ve ever seen, but it does come close. These kids are young and their lives had promise. But now I’m here in Albuquerque to see if my boss’s kid might be one of the unfortunates. I’m hoping not because the CEO of JPI is not the type of man who will take the murder of his son lightly. Fortunately for me I’ve happened onto a woman who is up to her ears in the business of runaway teens and also happens to look like an exotic angel come to take my poor Irish butt to heaven. Book 5: Joshua Beth is probably one of the best things that’s ever happened to me. Of course that probably makes me an idiot for constantly telling her that we can’t be a couple. The problem is that I shouldn’t be sleeping with employees. And of course my kid ran away and I’ve been tapping all of my resources trying to find him. Now I’m in New Orleans with Beth following one last lead. Of course this also happens to bring my ex wife out to help. Between her theatrics, a sarcastic local cop, and a voodoo priestess who can’t keep her nose out of other people’s business, all I can hope for is a happy ending that doesn’t end with a permanent stay in one of the Big Easy’s famous crypts.

Pro Git


Scott Chacon - 2009
    It took the open source world by storm since its inception in 2005, and is used by small development shops and giants like Google, Red Hat, and IBM, and of course many open source projects.A book by Git experts to turn you into a Git expert. Introduces the world of distributed version control Shows how to build a Git development workflow.

Python Testing with Pytest: Simple, Rapid, Effective, and Scalable


Brian Okken - 2017
    The pytest testing framework helps you write tests quickly and keep them readable and maintainable - with no boilerplate code. Using a robust yet simple fixture model, it's just as easy to write small tests with pytest as it is to scale up to complex functional testing for applications, packages, and libraries. This book shows you how.For Python-based projects, pytest is the undeniable choice to test your code if you're looking for a full-featured, API-independent, flexible, and extensible testing framework. With a full-bodied fixture model that is unmatched in any other tool, the pytest framework gives you powerful features such as assert rewriting and plug-in capability - with no boilerplate code.With simple step-by-step instructions and sample code, this book gets you up to speed quickly on this easy-to-learn and robust tool. Write short, maintainable tests that elegantly express what you're testing. Add powerful testing features and still speed up test times by distributing tests across multiple processors and running tests in parallel. Use the built-in assert statements to reduce false test failures by separating setup and test failures. Test error conditions and corner cases with expected exception testing, and use one test to run many test cases with parameterized testing. Extend pytest with plugins, connect it to continuous integration systems, and use it in tandem with tox, mock, coverage, unittest, and doctest.Write simple, maintainable tests that elegantly express what you're testing and why.What You Need: The examples in this book are written using Python 3.6 and pytest 3.0. However, pytest 3.0 supports Python 2.6, 2.7, and Python 3.3-3.6.

Composing Software


Eric Elliott - 2018
    Most developers have a limited understanding of compositional techniques. It's time for that to change.In "Composing Software", Eric Elliott shares the fundamentals of composition, including both function composition and object composition, and explores them in the context of JavaScript. The book covers the foundations of both functional programming and object oriented programming to help the reader better understand how to build and structure complex applications using simple building blocks.You'll learn: • Functional programming • Object composition • How to work with composite data structures • Closures • Higher order functions • Functors (e.g., array.map) • Monads (e.g., promises) • Transducers • LensesAll of this in the context of JavaScript, the most used programming language in the world. But the learning doesn't stop at JavaScript. You'll be able to apply these lessons to any language. This book is about the timeless principles of software composition and its lessons will outlast the hot languages and frameworks of today. Unlike most programming books, this one may still be relevant 20 years from now.This book began life as a popular blog post series that attracted hundreds of thousands of readers and influenced the way software is built at many high growth tech startups and fortune 500 companies.

The Art of Readable Code


Dustin Boswell - 2010
    Over the past five years, authors Dustin Boswell and Trevor Foucher have analyzed hundreds of examples of "bad code" (much of it their own) to determine why they’re bad and how they could be improved. Their conclusion? You need to write code that minimizes the time it would take someone else to understand it—even if that someone else is you.This book focuses on basic principles and practical techniques you can apply every time you write code. Using easy-to-digest code examples from different languages, each chapter dives into a different aspect of coding, and demonstrates how you can make your code easy to understand.Simplify naming, commenting, and formatting with tips that apply to every line of codeRefine your program’s loops, logic, and variables to reduce complexity and confusionAttack problems at the function level, such as reorganizing blocks of code to do one task at a timeWrite effective test code that is thorough and concise—as well as readable"Being aware of how the code you create affects those who look at it later is an important part of developing software. The authors did a great job in taking you through the different aspects of this challenge, explaining the details with instructive examples." —Michael Hunger, passionate Software Developer

JavaScript: The Good Parts


Douglas Crockford - 2008
    This authoritative book scrapes away these bad features to reveal a subset of JavaScript that's more reliable, readable, and maintainable than the language as a whole--a subset you can use to create truly extensible and efficient code.Considered the JavaScript expert by many people in the development community, author Douglas Crockford identifies the abundance of good ideas that make JavaScript an outstanding object-oriented programming language-ideas such as functions, loose typing, dynamic objects, and an expressive object literal notation. Unfortunately, these good ideas are mixed in with bad and downright awful ideas, like a programming model based on global variables.When Java applets failed, JavaScript became the language of the Web by default, making its popularity almost completely independent of its qualities as a programming language. In JavaScript: The Good Parts, Crockford finally digs through the steaming pile of good intentions and blunders to give you a detailed look at all the genuinely elegant parts of JavaScript, including:SyntaxObjectsFunctionsInheritanceArraysRegular expressionsMethodsStyleBeautiful featuresThe real beauty? As you move ahead with the subset of JavaScript that this book presents, you'll also sidestep the need to unlearn all the bad parts. Of course, if you want to find out more about the bad parts and how to use them badly, simply consult any other JavaScript book.With JavaScript: The Good Parts, you'll discover a beautiful, elegant, lightweight and highly expressive language that lets you create effective code, whether you're managing object libraries or just trying to get Ajax to run fast. If you develop sites or applications for the Web, this book is an absolute must.

PHP 6 and MySQL 5 for Dynamic Web Sites: Visual Quickpro Guide


Larry Ullman - 2007
    With step-by-step instructions, complete scripts, and expert tips to guide readers, this work gets right down to business - after grounding readers with separate discussions of first the scripting language (PHP) and then the database program (MySQL), it goes on to cover security, sessions and cookies, and using additional Web tools.

Havana Tips and Tricks: Interesting Facts and Tips On Havana And Cuba (With Trinidad Bonus Section)


Mario Rizzi - 2014
    The information presented in this guide was taken from the book Real Havana: Explore Cuba Like A Local And Save Money. This book is available at most online book retailers. It offers a complete description of all the information presented below.In this mini-guide you will learn about:● Dozens of facts and tips on Cuban Culture and daily life.● Money saving tips on Cuban cuisine and dining.● Common restaurant scams in Havana.● Facts about buying alcohol, cigars and shopping in general.● Important tips on using taxis, public transportation and rental cars.● Info on biking in Havana● Booking a cheap apartment in Havana (casa particular)Plus, this updated 2016 edition includes a special Trinidad City Guide. Trinidad is one of the most beautiful towns in Cuba and one of the most popular excursion destinations for travelers. Learn how to explore this wonderful UNESCO World Heritage site for yourself, on your next trip to Cuba.BONUS: As a bonus, this mini-guide also includes the Top Ten Cuba Tip List! It’s packed with the most important information that any traveler must know about Cuba and Havana, in order to maximize their fun, save money and avoid any hassles.The Real Havana guide has all that information and much more. It has been described by industry professionals as being the #1 travel guide for information about Cuban culture. That’s why it is a bestseller and has been a trusted resource to over 200 000 travelers since 2010.About Full Compass GuidesFull Compass Guides are aimed at travelers who want to understand local customs and culture so that they can experience destinations like a local. Unlike regular tourist guides, Full Compass guides are not a list of attractions popular with tourists, and boring restaurant and hotel reviews that are obsolete the moment they are published. With our guides, you get succinct, useful information about the culture, people and geography of your destination so you have the tools and the confidence to explore on your own, experience everything that your destination has to offer, and save money.Our guides are written by experienced travelers who have intimate knowledge of both the location and the culture of the destination. They give you the exact information you need in order to make the most of your travel time. With a Full Compass guide, you will be a knowledgeable explorer, rather than just another flash-happy tourist.

Data Science from Scratch: First Principles with Python


Joel Grus - 2015
    In this book, you’ll learn how many of the most fundamental data science tools and algorithms work by implementing them from scratch. If you have an aptitude for mathematics and some programming skills, author Joel Grus will help you get comfortable with the math and statistics at the core of data science, and with hacking skills you need to get started as a data scientist. Today’s messy glut of data holds answers to questions no one’s even thought to ask. This book provides you with the know-how to dig those answers out. Get a crash course in Python Learn the basics of linear algebra, statistics, and probability—and understand how and when they're used in data science Collect, explore, clean, munge, and manipulate data Dive into the fundamentals of machine learning Implement models such as k-nearest Neighbors, Naive Bayes, linear and logistic regression, decision trees, neural networks, and clustering Explore recommender systems, natural language processing, network analysis, MapReduce, and databases

Damaged Goods


Jenica Johnson - 2016
    After having her daughter at the tender age of 18, her father tried forcing her into marrying her high school sweetheart Ahmod. Ten years later Ahmod is not as sweet as he once was in high school. Shy is very close to her mother and sister but she keeps certain things from them to keep peace in her home and family life. With her father standards so high for his daughters she tends to just hide from the world until she feels that she is worthy enough to be a preacher’s kid. From her father’s rejection and the rejection of Ahmod, she finally finds the courage to leave him and run into the arms of another man. Ahmod wants his cake and eat it too. With two women in his pocket he feels like he would never get caught. When both of the women leave him, he becomes lost. Once Ahmod finds out Shy is fully done with him he tries his best to run back but is it too late? Ahmod doesn’t think so until it’s really too late.

100 RV Tips and Tricks (Mack's RV Handbook)


Malcom "Mack" Massey - 2014
    This BONUS editon offers extra tips to introduce this handbook series.

All-New Amazon Fire TV Stick User Guide - Newbie to Expert in 1 Hour!


Tom Edwards - 2014
     From the Number 1 Best Selling authors in Computers and Technology, this clear and concise guide will show you how to get the very best from your new Amazon Fire TV Streaming Stick Media Player. Step by step instructions will take you from newbie to expert in just one hour! About the Authors: Tom and Jenna Edwards are the Amazon Tech authors behind the Number 1 Best-selling e-books 250+ Best Kindle Fire HD Apps for the New Kindle Fire Owner and Kindle Fire HDX User Guide: Newbie to Expert in 2 Hours!

PYTHON: PROGRAMMING: A BEGINNER’S GUIDE TO LEARN PYTHON IN 7 DAYS


Ramsey Hamilton - 2016
    Python is a beautiful computer language. It is simple, and it is intuitive. Python is used by a sorts of people – data scientists use it for much of their number crunching and analytics; security testers use it for testing out security and IT attacks; it is used to develop high-quality web applications and many of the large applications that you use on the internet are also written in Python, including YouTube, DropBox, and Instagram. Are you interested in learning Python? Then settle in and learn the basics in just 7 days - enough for you to be comfortable in moving on to the next level without any trouble.Are you interested in learning Python? Then settle in and learn the basics in just 7 days - enough for you to be comfortable in moving on to the next level without any trouble. In this book you'll learn: Setting Up Your Environment Let’s Get Programming Variables and Programs in Files Loops, Loops and More Loops Functions Dictionaries, Lists, and Tuples The “for” Loop Classes Modules File Input/Output Error Handling and much more! Now it's time for you to start your journey into Python programming! Click on the Buy Now button above and get started today!

Excel 2007 Bible


John Walkenbach - 2006
    Spreadsheet," is one of the liworld's leading authorities on Excel Thoroughly updated to cover the revamped Excel interface, new file formats, enhanced interactivity with other Office applications, and upgraded collaboration features Includes a valuable CD-ROM with templates and worksheets from the book Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.

Structure and Interpretation of Computer Programs


Harold Abelson - 1984
    This long-awaited revision contains changes throughout the text. There are new implementations of most of the major programming systems in the book, including the interpreters and compilers, and the authors have incorporated many small changes that reflect their experience teaching the course at MIT since the first edition was published. A new theme has been introduced that emphasizes the central role played by different approaches to dealing with time in computational models: objects with state, concurrent programming, functional programming and lazy evaluation, and nondeterministic programming. There are new example sections on higher-order procedures in graphics and on applications of stream processing in numerical programming, and many new exercises. In addition, all the programs have been reworked to run in any Scheme implementation that adheres to the IEEE standard.