The Darwin Effect


Mark Lukens - 2016
    They are all suffering from short-term memory loss and they can't remember why or how they got on this ship. The onboard computer (MAC) tells them that it was programmed to wake them up early. They believe MAC woke them up by mistake. They can't re-enter suspended animation, there's only enough food for a few months, and they are too far away to return to Earth ... but even if they could return, MAC tells them that the Earth has been destroyed by nuclear war. They realize that they are all going to die on this ship.Cromartie, the unelected leader of their group, tries his best to keep the others calm, but soon they are at each other's throats. After one of them is found murdered, Cromartie and Sanders form an alliance. Cromartie tells Sanders that pieces of his memories are beginning to come back to him in his dreams; he believes he's seeing clues to their survival.But after the next murder, Cromartie and Sanders must work fast to find the mind-blowing key to their survival and figure out which one of them is the killer before it's too late.

The Courier


Jon F. Merz - 2011
    A cynical, wise-cracking vampire charged with protecting the Balance between vampires and humans, he is part cop, part spy, and part commando -- James Bond with fangs. Lawson mixes shrewd cunning with unmatched lethality to get his job done. He tries his best to dismantle conspiracies, dispatch bad guys, and live long enough to get home.

A Software Engineer Learns HTML5, JavaScript and jQuery


Dane Cameron - 2013
    Due to their monopoly position in web browsers, and the fact web browsers have spread from PCs to phones, tablets and TVs; their status will continue to grow and grow. Despite their success, many software engineers are apprehensive about JavaScript and HTML. This apprehensiveness is not completely unfounded; both JavaScript and HTML were rushed in their early years, and driven by commercial rather than engineering interests. As a result, many dubious features crept into these languages. Due to backwards compatibility concerns, most of these features still remain. In addition, many software engineers have used these languages without ever learning them. JavaScript and HTML have low barriers to entry, and this, along with their similarity to other languages, led many software engineers to conclude that there really was nothing much to learn. If you have not used JavaScript and HTML for a number of years, or if you are a programmer or software engineer using other languages, you may be surprised at what they now offer. Browser based web applications are now capable of matching or exceeding the sophistication and scale of traditional desktop applications. In order to create complex web applications however, it is essential to learn these languages. This book takes the point of view that once you have a strong grasp of the fundamentals, the details will take care of themselves. It will not present you with long lists of APIs, or intricate details of every attribute, these can be found in reference manuals. It will focus on the details of each language that are fundamental to understanding how they work. This book will guide you through the process of developing a web application using HTML5, Javascript, jQuery and CSS. It contains the following content: 1. An introduction to the HTML5 markup language, and how it differs from HTML4 and XHTML. 2. An introduction to JavaScript, including an in-depth look at its use of objects and functions, along with the design patterns that support the development of robust web applications. 3. An introduction to jQuery selection, traversal, manipulation and events. 4. An in-depth look at the Web storage and IndexedDB APIs for client side data storage. 5. A guide to implementing offline web applications with the Application Cache API. 6. An introduction to the ways JavaScript can interact with the users file-system using the FileReader API. 7. The use of Web Workers in a web application to execute algorithms on background threads. 8. An introduction to AJAX, and the jQuery API supporting AJAX. 9. An introduction to Server Sent Events and Web Sockets. All subjects are introduced in the context of a sample web application. This book is intended for anyone with at least a superficial knowledge of HTML and programming.

Beach Traffic: The Ocean Can Be Deadly


Judith Lucci - 2019
    Kat’s childhood friend, Heidi is looking for great sex and a fantastic weekend hookup. But, things turned bad quickly when they learn a friend of theirs had been brutally attacked. Federal and local law enforcement officials are concerned about a vicious murder on the beach and the disappearance of five women. Scroll Up and Grab Your Copy Today!

Professional ASP.NET MVC 3


Jon Galloway - 2011
    Book content includes:Getting started with MVC 3, including a rundown of the new project dialog, directory structure and an introduction to NuGet (PowerShell inside Visual Studio 2010)Controllers and Actions View and ViewModelsModels and Databases, including using NuGet to install Entity Framework Code FirstForms and HTML HelpersValidation and Data AnnotationsMembership, Authorization and SecurityAjaxRouting, including routing to Http HandlersNuGet, including using it from the Dialog 'and Package Console, creating a package, custom PowerShell actions and running from both a local repository and the WebDependency InjectionUnit testingExtending ASP.NET MVC with filters and Extensibility pointsWhat's new in MVC 3

HTML5 & CSS3 For The Real World


Estelle Weyl - 2011
    This easy-to-follow guide is illustrated with lots of examples, and leads readers through the process of creating great websites from start to finish using HTML5 and CSS3.It also features details on all the new HTML5 and CSS3 elements and features information on the current level of browser support advice for creating great experiences for all users thanks to progressive enhancement.

Web Development with Clojure: Build Bulletproof Web Apps with Less Code


Dmitri Sotnikov - 2013
    Web Development With Clojure shows you how to apply Clojure programming fundamentals to build real-world solutions. You'll develop all the pieces of a full web application in this powerful language. If you already have some familiarity with Clojure, you'll learn how to put it to serious practical use. If you're new to the language, the book provides just enough Clojure to get down to business.You'll learn the full process of web development using Clojure while getting hands-on experience with current tools, libraries, and best practices in the language. You'll develop Clojure apps with both the Light Table and Eclipse development environments. Rather than frameworks, Clojure development builds on rich libraries. You'll acquire expertise in the popular Ring/Compojure stack, and you'll learn to use the Liberator library to quickly develop RESTful services. Plus, you'll find out how to use ClojureScript to work in one language on the client and server sides.Throughout the book, you'll develop key components of web applications, including multiple approaches to database access. You'll create a simple guestbook app and an app to serve resources to users. By the end, you will have developed a rich Picture Gallery web application from conception to packaging and deployment.This book is for anyone interested in taking the next step in web development.Q&A with Dmitri SotnikovWhy did you write Web Development with Clojure?When I started using Clojure, I found that it took a lot of work to find all the pieces needed to put together a working application. There was very little documentation available on how to organize the code, what libraries to use, or how to package the application for deployment. Having gone through the process of figuring out what works, I thought that it would be nice to make it easier for others to get started.What are the advantages of using a functional language?Over the course of my career, I have developed a great appreciation for functional programming. I find that it addresses a number of shortcomings present in the imperative paradigm. For example, in a functional language any changes to the data are created via revisions to the existing data. So they only exist in the local scope. This fact allows us to safely reason about individual parts of the program in isolation, which is critical for writing and supporting large applications.Why use Clojure specifically?Clojure is a simple and pragmatic language that is designed for real-world usage. It combines the productivity of a high-level language with the excellent performance seen in languages like C# or Java. It's also very easy to learn because it allows you to use a small number of concepts to solve a large variety of problems.If I already have a preferred web development platform, what might I get out of this book?If you're using an imperative language, you'll get to see a very different approach to writing code. Even if you're not going to use Clojure as your primary language, the concepts you'll learn will provide you with new ways to approach problems.Is the material in the book accessible to somebody who is not familiar with Clojure?Absolutely. The book targets developers who are already familiar with the basics of web development and are interested in learning Clojure in this context. The book introduces just enough of the language to get you productive and allows you to learn by example.

SOA Design Patterns


Thomas Erl - 2008
    More than three years in development and subjected to numerous industry reviews, the 85 patterns in this full-color book provide the most successful and proven design techniques to overcoming the most common and critical problems to achieving modern-day SOA. Through numerous examples, individually documented pattern profiles, and over 400 color illustrations, this book provides in-depth coverage of:• Patterns for the design, implementation, and governance of service inventories–collections of services representing individual service portfolios that can be independently modeled, designed, and evolved.• Patterns specific to service-level architecture which pertain to a wide range of design areas, including contract design, security, legacy encapsulation, reliability, scalability, and a variety of implementation and governance issues.• Service composition patterns that address the many aspects associated with combining services into aggregate distributed solutions, including topics such as runtime messaging and message design, inter-service security controls, and transformation.• Compound patterns (such as Enterprise Service Bus and Orchestration) and recommended pattern application sequences that establish foundational processes. The book begins by establishing SOA types that are referenced throughout the patterns and then form the basis of a final chapter that discusses the architectural impact of service-oriented computing in general. These chapters bookend the pattern catalog to provide a clear link between SOA design patterns, the strategic goals of service-oriented computing, different SOA types, and the service-orientation design paradigm.This book series is further supported by a series of resources sites, including soabooks.com, soaspecs.com, soapatterns.org, soamag.com, and soaposters.com.

Creating Mobile Apps with Xamarin.Forms: Cross-Platform C# Programming for iOS, Android, and Windows Phone


Charles Petzold - 2014
    Xamarin.Forms lets you write shared user-interface code in C# and XAML that maps to native controls on these three platforms.

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

The Fabric of Us


Kimberly Wenzler - 2018
    Their children are settled; Ella is married and planning a family and Nick is starting his senior year at college. After thirty years of sacrifices and struggles for their family, it is finally time to do all the things they've dreamed to do as a couple.Always unpredictable, life has other plans for the Bennets when Olivia gets shocking news that threatens all that she and Chris have built together.* * *Alternating between the past and present, THE FABRIC OF US beautifully unfolds the layers of a devoted marriage, exposing an interwoven thread of secrets and consequences that threaten to unravel a relationship once believed to be built on love, trust and faith.

Keeper part 2


Tiffany Evans - 2013
    Her ability to control minds in their hands could mean the destruction of the Kember and Drea race. Laced with speed, strength, and a physical ability, each Kember holds the key to not only defeat the Rygons, but to protect one Drea until death. But what happens when one who’s born to protect, hunts instead? During a heated battle with a rogue Kember, Taylee’s forced to run and let her own Kember—the man who raised her—face him alone. With the announcement of her protector’s death, Taylee’s anger and obsession regarding the mysterious murderer take over. She’s hell-bent on bringing her guardian justice, even if it means walking into the enemy’s trap.

The Carving Tree


Terry Thomas Bowman - 2015
    Forty-six years ago Jake pledged his love to Sadie by carving their names into the Carving Tree. Now newly retired, Sadie is eager to take on life’s newest adventures with Jake by her side. But when the symbol of their enduring love begins to wither and Jake is diagnosed with a heart condition, Sadie’s dreams are put on hold.Bitter towards God, Sadie is determined to nurse Jake and their beloved Carving Tree back to health on her own. Sadie’s luck takes a turn for the worse when she and Jake are threatened with a false lawsuit and Megan Thompson, an aspiring model, goes missing after leaving her young son in Sadie’s care. Overwhelmed with stress, medical bills, and Jake’s deteriorating health, Sadie’s notion of retired life is turning out to be quite different than she anticipated. Miles away, Megan Thompson’s world is also shaken. When what she thought was an audition for a modeling gig turns out to be a hoax, Megan � finds herself a victim of a human-traf�ficking ring. Terri�fied and far from home, Megan knows only one thing is certain: she must, against all odds, escape and return to her son.Will Sadie be able to regain her footing and � nd peace with God, and will Megan ever escape and return to her young son? Both women’s courage and resilience are put to the test in Terry Bowman’s captivating novel, The Carving Tree.

Junior Ghost Hunters - Case of the Chadwick Ghost


Sam Grasdin - 2014
    are there any ghosts here?" HAVE YOU EVER wondered why no one that claims to have seen a ghost ever has any evidence of it? You know – some pictures or a video from their cellphone? It's the same with UFO's. There are all these blurry pictures of weird objects in the sky that could be an alien space ship or it could be a toaster. It's tough to tell. I'm Nathaniel Parker and I think about these things. A lot. I asked my dad once why he thought there wasn't any clear pictures of ghosts. You know what he said? “Maybe ghosts are just blurry, Natty.” My dad said. Then, he cracked up like he'd said the funniest thing ever. That's my dad, a real comedian. My friends call me Nate. I'm 12 years old and I'm kind of a nerd. I mean, I like science and stuff, and I read a lot of comic books. If you read comic books, you know why science is so cool. Most of the superheroes out there got to be super thanks to science. Take Spiderman for instance. He got bit by this genetically altered spider and woke up with spider powers. How cool would that be? Anyway, the point that I was trying to make about ghosts is, that the reason that no one has been able to capture any really good images yet is because the only people who see them are a group of kids going into a haunted house on a dare. They are probably trying to take a picture while they are running away and screaming. That got me thinking about what I would do if I saw a ghost. I’d like to think that I’d walk right up and try to shake its hand but I guess I won't know the answer until I actually see one. But that could be sooner than you think..... Tags: ghost stories, ghost hunters, ghost hunting, ghosts, ghost, ghost mystery, ghost diaries, ghost tales, ghost detectives, paranormal, ghost busters, ghost squad, goonies, ghost hunter, the real ghostbusters, ghost house, abandoned house, junior detectives, junior books, junior novels, detective mysteries, detective novels, mystery, mystery stories, detective stories, detective series, detective fiction, spooky stories, paranormal activity, children;'s books, children's book, kids books, kids books 9-12

Kit: Finding Freedom and Love


Katherine St. Clair - 2017
    She’s had a bit of schoolin, and now she works at the local cannery. Her friend Letty dreams of marriage and a family of her own. Kit could choose that life, but she wants more. But it’s 1895 in North Carolina, and her options are limited. In the newspaper, she sees an advertisement calling for young women to go and work for the Harvey Company – a growing chain of restaurants - that serves hungry railway passengers traveling to the untamed west. But the interview is miles away in Raleigh…does she dare? Will she leave her family and the life she knows, and risk everything for independence and adventure? Yes, she will! But it’s not easy. Leaving home is only the first of many challenges for Kit, from facing her own doubts, to proving herself, and standing up to the judgment of others – including her closest new friend. With hard work and an instinctive knowledge of how to bring out the best in others, Kit progresses in her career, until she gets a message from home. Racing back across the country to the bedside of a loved one, Kit begins to question what will make her happy. When it looks like love will be a better choice, Kit is tempted to leave her life out west behind. Are fate, friendship, determination, and good advice enough to keep Kit on the right path? Can she have a successful career, and also the love and respect of a good man? Is there a man out there who is strong enough to value her, and give her wild heart a home? Read on to learn Kit’s fate, and discover the famous Harvey Girls, whose hard work and courage helped build a restaurant empire like no other.