万本电子书0元读

万本电子书0元读

I Know What You Are: The true story of a lonely little girl abused by those she
I Know What You Are: The true story of a lonely little girl abused by those she
Taylor Edison,Jane Smith
¥58.57
The moving true story of a little girl with Asperger syndrome, controlled and abused by the one person she called her friend. Taylor had always struggled to make friends – she felt ‘different’. Taylor never knew her father and her mother wasn’t around much. She just didn’t understand people, and was alone and scared most of the time. That was until, aged just 11, an older married man called Tom befriended her. She loved having someone who would talk to her, listen to her, a protector. But when he moved away a few months later she was easy prey to the gang of drug dealers and petty criminals who groomed and abused her, using her as a form of currency to appease their debtors and amuse their friends. Increasingly isolated and desperate, it began to look as though the pattern of Taylor's life had been set – until she started to fight back, determined to build a safe future for herself, however long it took.
Olive Kitteridge
Olive Kitteridge
Elizabeth Strout
¥41.37
Pl?cerea de a citi Olive Kitteridge vine dintr-o identificare intens? a cititorului cu situa?ii, cu personaje nu icirc;ntotdeauna demne de admirat... Nu e nimic ieftin sau siropos icirc;n aceast? carte. (The New York Times Book Review) Amuzant?, r?ut?cioas? ?i plin? de remu?c?ri, doamna Kitteridge este o for??, un caracter autentic. Cacircnd nu e icircn scen?, icirci a?tept?m cu ner?bdare icircntoarcerea. Paginile c?r?ii se icirc;ntorc datorit? ei... (San Francisco Chronicle) Un portret r?v??itor ?i profund al oamenilor din Maine, tr?indu-?i vie?ile de suferin?? t?cut? icircmpletit? cu izbucniri de apropiere uman?... Aceast? culegere se cite?te u?or ?i e imposibil de uitat. (Publishers Weekly) Intuitiv?, profund empatic? ?i totu?i plin? de defecte, Olive este axa icircn jurul c?reia graviteaz? treisprezece povestiri complexe, profund umane, alc?tuind un veritabil roman. (O Magazine)
History of the Rise, Progress, and Termination of the American Revolution
History of the Rise, Progress, and Termination of the American Revolution
Mercy Otis Warren
¥8.09
Mercy Warren wrote early drafts of this 1300+ page book near the time of the events described. Mercy writes in the third person even when dealing with events involving her immediate family. James Otis (early advocate of the rights of the colonies) was her brother, and James Warren (speaker of the Massachusetts House of Representatives) was her husband. She was a close friend of John Adams, but differed sharply with his policies as President. In the wake of the French Revolution, Adams lost faith in democracy, while Mercy remained a staunch supporter of democracy, despite the risks. According to Wikipedia: "Warren, Mercy (1728-1814), American writer, sister of James Otis, was born at Barnstable, Mass., and in 1754 married James Warren (1726-1808) of Plymouth, Mass., a college friend of her brother. Her literary inclinations were fostered by both these men, and she began early to write poems and prose essays. As member of the Massachusetts House of Representatives (1766-1774) and its speaker (1776-1777 and 1787-1788), member (1774 and 1775) and president (1775) of the Provincial Congress, and paymaster-general in 1775, James Warren took a leading part in the events of the American revolutionary period, and his wife followed its progress with keen interest...In 1805 she published a History of the American Revolution, which was colored by somewhat outspoken personal criticism and was bitterly resented by John Adams..."
Mindset
Mindset
Kevin Gise
¥24.44
Mindset
RESTful Web API Design with Node.js 10
RESTful Web API Design with Node.js 10
Valentin Bojinov
¥54.49
Design and implement scalable and maintainable RESTful solutions with Node.js 10 About This Book ? Create rich and scalable RESTful API solutions from scratch ? Explore the new features of Node.js 10, Express 4.0, and MongoDB ? Integrate MongoDB in your Node.js application to store and secure your data Who This Book Is For If you are a web developer keen to enrich your development skills to create server-side RESTful applications based on the Node.js platform, this book is for you. Some knowledge of REST would be an added advantage, but is definitely not a necessity. What You Will Learn ? Install, develop, and test your own Node.js user modules ? Understand the differences between HTTP and RESTful applications ? Use self-descriptive URLs and set accurate HTTP status codes ? Eliminate third-party dependencies in your tests with mocking ? Implement automation tests for a REST-enabled endpoint with Mocha ? Secure your services with NoSQL database integration within Node.js applications ? Integrate a simple frontend using JavaScript libraries available on a CDN server In Detail When building RESTful services, it is really important to choose the right framework. Node.js, with its asynchronous, event-driven architecture, is exactly the right choice for building RESTful APIs. This third edition of RESTful Web API Design with Node.js 10 will teach you to create scalable and rich RESTful applications based on the Node.js platform. You will be introduced to the latest NPM package handler and understand how to use it to customize your RESTful development process. You will begin by understanding the key principle that makes an HTTP application a RESTful-enabled application. After writing a simple HTTP request handler, you will create and test Node.js modules using automated tests and mock objects; explore using the NoSQL database, MongoDB, to store data; and get to grips with using self-descriptive URLs. You’ll learn to set accurate HTTP status codes along with understanding how to keep your applications backward-compatible. Also, while implementing a full-fledged RESTful service, you will use Swagger to document the API and implement automation tests for a REST-enabled endpoint with Mocha. Lastly, you will explore some authentication techniques to secure your application. Style and approach Step-by-step practical guide to building RESTful applications
Functional Python Programming
Functional Python Programming
Steven F. Lott
¥90.46
Create succinct and expressive implementations with functional programming in Python About This Book ? Learn how to choose between imperative and functional approaches based on expressiveness, clarity, and performance ? Get familiar with complex concepts such as monads, concurrency, and immutability ? Apply functional Python to common Exploratory Data Analysis (EDA) programming problems Who This Book Is For This book is for Python developers who would like to perform Functional programming with Python. Python Programming knowledge is assumed. What You Will Learn ? Use Python's generator functions and generator expressions to work with collections in a non-strict (or lazy) manner ? Utilize Python library modules including itertools, functools, multiprocessing, and concurrent features to ensure efficient functional programs ? Use Python strings with object-oriented suffix notation and prefix notation ? Avoid stateful classes with families of tuples ? Design and implement decorators to create composite functions ? Use functions such as max(), min(), map(), filter(), and sorted() ? Write higher-order functions In Detail If you’re a Python developer who wants to discover how to take the power of functional programming (FP) and bring it into your own programs, then this book is essential for you, even if you know next to nothing about the paradigm. Starting with a general overview of functional concepts, you’ll explore common functional features such as first-class and higher-order functions, pure functions, and more. You’ll see how these are accomplished in Python 3.6 to give you the core foundations you’ll build upon. After that, you’ll discover common functional optimizations for Python to help your apps reach even higher speeds. You’ll learn FP concepts such as lazy evaluation using Python’s generator functions and expressions. Moving forward, you’ll learn to design and implement decorators to create composite functions. You'll also explore data preparation techniques and data exploration in depth, and see how the Python standard library fits the functional programming model. Finally, to top off your journey into the world of functional Python, you’ll at look at the PyMonad project and some larger examples to put everything into perspective. Style and approach This book provides a general overview of functional concepts and then delves deeper into the functional features, showing you how the Python standard library fits the functional programming model. It also demonstrates how to implement common functional programming design patterns and techniques in Python.
Solidity Programming Essentials
Solidity Programming Essentials
Ritesh Modi
¥63.21
Learn the most powerful and primary programming language for writing smart contracts and find out how to write, deploy, and test smart contracts in Ethereum. About This Book ? Get you up and running with Solidity Programming language ? Build Ethereum Smart Contracts with Solidity as your scripting language ? Learn to test and deploy the smart contract to your private Blockchain Who This Book Is For This book is for anyone who would like to get started with Solidity Programming for developing an Ethereum smart contract. No prior knowledge of EVM is required. What You Will Learn ? Learn the basics and foundational concepts of Solidity and Ethereum ? Explore the Solidity language and its uniqueness in depth ? Create new accounts and submit transactions to blockchain ? Get to know the complete language in detail to write smart contracts ? Learn about major tools to develop and deploy smart contracts ? Write defensive code using exception handling and error checking ? Understand Truffle basics and the debugging process In Detail Solidity is a contract-oriented language whose syntax is highly influenced by JavaScript, and is designed to compile code for the Ethereum Virtual Machine. Solidity Programming Essentials will be your guide to understanding Solidity programming to build smart contracts for Ethereum and blockchain from ground-up. We begin with a brief run-through of blockchain, Ethereum, and their most important concepts or components. You will learn how to install all the necessary tools to write, test, and debug Solidity contracts on Ethereum. Then, you will explore the layout of a Solidity source file and work with the different data types. The next set of recipes will help you work with operators, control structures, and data structures while building your smart contracts. We take you through function calls, return types, function modifers, and recipes in object-oriented programming with Solidity. Learn all you can on event logging and exception handling, as well as testing and debugging smart contracts. By the end of this book, you will be able to write, deploy, and test smart contracts in Ethereum. This book will bring forth the essence of writing contracts using Solidity and also help you develop Solidity skills in no time. Style and approach Solidity is a high-level programming language best understood using examples. After covering basic concepts of Ethereum and Solidity, programming constructs will be explained with help of examples. As chapters progress, deployment, usage and testing of contacts will form major aspect of the book. Troubleshooting and unit testing is an important exercise and skill to master this language will also be covered in this book.
How to Learn Any language in 10 Steps
How to Learn Any language in 10 Steps
Neil Mars
¥24.44
How to Learn Any language in 10 Steps
The Mystery of the Four Fingers
The Mystery of the Four Fingers
Fred M. White
¥8.09
The Mystery of the Four Fingers
The Illusion of "Me": Rediscovering my identity with the rest of the world
The Illusion of "Me": Rediscovering my identity with the rest of the world
Bo Karma
¥0.01
The Illusion of "Me": Rediscovering my identity with the rest of the world
History of Europe 1500-1815
History of Europe 1500-1815
Carlton Hayes
¥8.09
History of Europe 1500-1815
A History of the Peninsular War - Vol. III
A History of the Peninsular War - Vol. III
Charles Oman
¥8.09
A History of the Peninsular War - Vol. III
L'?trange Défaite
L'?trange Défaite
Marc Bloch
¥8.01
L'?trange Défaite
How to Live on 24 Hours a Day
How to Live on 24 Hours a Day
Arnold Bennett
¥40.79
Philosophers have explained space. They have not explained time. It is the inexplicable raw material of everything. With it, all is possible; without it, nothing. The supply of time is truly a daily miracle, an affair genuinely astonishing when one examines it.
Daisy Miller by Henry James (Illustrated)
Daisy Miller by Henry James (Illustrated)
Henry James
¥8.09
This eBook features the unabridged text of ‘Daisy Miller’ from the bestselling edition of ‘The Complete Works of Henry James’. Having established their name as the leading publisher of classic literature and art, Delphi Classics produce publications that are individually crafted with superior formatting, while introducing many rare texts for the first time in digital print. The Delphi Classics edition of James includes original annotations and illustrations relating to the life and works of the author, as well as individual tables of contents, allowing you to navigate eBooks quickly and easily.eBook features:* The complete unabridged text of ‘Daisy Miller’* Beautifully illustrated with images related to James’s works* Individual contents table, allowing easy navigation around the eBook* Excellent formatting of the textPlease visit www.delphiclassics.com to learn more about our wide range of titles
Elon Musk: Moving the World One Technology at a Time
Elon Musk: Moving the World One Technology at a Time
JR MacGregor
¥24.44
Put aside what you read on the web about Elon Musk. There is a significant amount more to him than just his genius and his accomplishments. This book lays out the life that he had before arriving in the United States and looks at the boy inside who set a path for himself, and literally went through the fires of hell before getting the opportunities that he wished for.He did not fall into wealth and he did not work his way up the corporate ladder, Elon made every bit of his life that you see today. Some of the stories that you find in this book will shock and awe you and change the way you look at your own challenges. From arriving in a new country with just a few bucks and not knowing anyone, to working in farms and cleaning up after barn animals, to working in the fires of a toxic furnace. Read about the man that is about to make this planet a safer place to live. Elon Musk is an inspiration for a generation because he represents many of the values that define today's Millennials and Generation X. From PayPal to Tesla, the driving force that built these icons of the imagination was the desire to make the world a better place for everyone – it was never about the money. This book gives you a deeper look and analysis of a man that defies the traditional mold of industrialist, entrepreneur, and achiever.? Don't wait any longer! Scroll up and click the 'Buy Now' button to learn more about this technology mogul!
15000 Useful Phrases
15000 Useful Phrases
Kleiser, Grenville
¥58.76
This incredibly useful book will appeal to writers, public speakers and anyone else who would like to improve their vocabulary. It contains a huge number of phrases which you can use in everyday speech and at special occasions, which will help you express your thoughts, ideas and feelings in a brand new way. A classic reference work, this edition has been specially formatted for today's e-readers.
101 Amazing Rihanna Facts
101 Amazing Rihanna Facts
Goldstein, Jack
¥14.62
Are you the world's biggest Rihanna Fan? Do you know everything there is to know about the Good Girl Gone Bad? Then this is the book for you! In this easy-to-digest eBook are 101 facts about your favourite singer - do you know all of them?Test yourself and your friends with these handily-packaged facts easily organised into categories for maximum enjoyment. Sections include her music, friends and family, and some crazy facts about her life! Show everyone that you are the master of Rihanna knowledge!
Applied Unsupervised Learning with Python
Applied Unsupervised Learning with Python
Benjamin Johnston
¥79.56
Design clever algorithms that can uncover interesting structures and hidden relationships in unstructured, unlabeled data Key Features * Learn how to select the most suitable Python library to solve your problem * Compare k-Nearest Neighbor (k-NN) and non-parametric methods and decide when to use them * Delve into the applications of neural networks using real-world datasets Book Description Unsupervised learning is a useful and practical solution in situations where labeled data is not available. Applied Unsupervised Learning with Python guides you on the best practices for using unsupervised learning techniques in tandem with Python libraries and extracting meaningful information from unstructured data. The course begins by explaining how basic clustering works to find similar data points in a set. Once you are well versed with the k-means algorithm and how it operates, you’ll learn what dimensionality reduction is and where to apply it. As you progress, you’ll learn various neural network techniques and how they can improve your model. While studying the applications of unsupervised learning, you will also understand how to mine topics that are trending on Twitter and Facebook and build a news recommendation engine for users. You will complete the course by challenging yourself through various interesting activities such as performing a Market Basket Analysis and identifying relationships between different merchandises. By the end of this course, you will have the skills you need to confidently build your own models using Python. What you will learn * Understand the basics and importance of clustering * Build k-means, hierarchical, and DBSCAN clustering algorithms from scratch with built-in packages * Explore dimensionality reduction and its applications * Use scikit-learn (sklearn) to implement and analyse principal component analysis (PCA)on the Iris dataset * Employ Keras to build autoencoder models for the CIFAR-10 dataset * Apply the Apriori algorithm with machine learning extensions (Mlxtend) to study transaction data Who this book is for This course is designed for developers, data scientists, and machine learning enthusiasts who are interested in unsupervised learning. Some familiarity with Python programming along with basic knowledge of mathematical concepts including exponents, square roots, means, and medians will be beneficial.
Sherlock Holmes and the Adventure of the Tainted Canister
Sherlock Holmes and the Adventure of the Tainted Canister
Turley, Thomas A.
¥19.52
A lost chapter in the Holmes canon finally appears, as Dr. Watson recounts the mystery behind the tragic death of his beloved Mary Morstan. Join him as he attempts to bring a murderer to justice. Along the way, readers will encounter old friends and enemies from several of the other stories, leading to a startling conclusion that may baffle even Sherlock Holmes.
The Chronicles of Barnia: A collection of Awkward Moments
The Chronicles of Barnia: A collection of Awkward Moments
Guy Sigley
¥0.01
The prequel to the hilarious Barney Conroy Trilogy, this collection of short stories will make you laugh, cringe, and face-palm all at the same time! Barney's an average guy in his mid-thirties with questionable social skills and progressive germophobia. He likes routine. He likes to keep his head down. He's trying to live an average life. He's just not as good at it as the rest of us. Laugh along with (or at!) Barney as he struggles with everyday social conventions in this collection of hilarious, bite-sized short stories. Download now if you're ready for plenty of awkward laughter!????
1 2 3 4 5 6 7