万本电子书0元读

万本电子书0元读

Here Come The Robots!
Here Come The Robots!
Stan Schatt
¥24.44
Here Come The Robots!
Snapchat Marketing Success
Snapchat Marketing Success
Hillary Scholl
¥23.14
Snapchat ?Marketing ?Success Virtually all social media sites out there have users communicating with text or chat…sure, some social media sites are starting to adopt video and there is some image sharing, but at the core, comments are left and messages are sent. That is NOT the case with Snapchat. Communication is all done through images and videos with the occasional small caption. This is how the younger generation likes to communicate… Short and sweet. Snapchat is one of the most unusual social networks to make it big online. You wouldn’t have thought that such a simple concept, handled arguably quite poorly to begin with, would become the huge behemoth it has today. And yet it has – and right now it’s flying higher than ever thanks to its 2.0 update. Snapchat’s story is surprising enough on face value but when you learn some of the more surprising twists and turns, the plot only thickens. Read on and let’s take a closer look at some of the things you probably didn’t know about Snapchat… ?Snapchat is Highly Personal If you’ve had your ear to the ground, then you may have heard the buzz about live streaming. Live streaming services are quickly becoming incredibly popular thanks to their ability to allow direct and live communication between a brand and its followers. But in fact, Snapchat has been providing something very similar for a long time. Snapchat allows you to update people about your trip to another country, it allows you to invite people to watch the public unveiling of your new product or service and it allows you to share a joke as you’re coming out the shower. This kind of personal communication has the power to create much more engagement, familiarity and trust. And if you look at the big names on Snapchat – like Arnold Schwarzenegger – then you’ll be able to easily see how it can be used to great effect. It Has Incredible Engagement Yes, Snapchat’s ‘instant’ nature gives it the potential to greatly increase engagement. And in reality, that’s exactly what it does. If ever you think you can’t make it big online, let Snapchat be an inspiring story to suggest otherwise. Snapchat is by no means some miracle feat of coding. Rather, this was actually a relatively poorly put together piece of code and would sap huge amounts of battery and CPU power when running in the background even! That’s not to say it’s a bad app – only that it’s all the more impressive it was able to do as well as it did. Facebook Tried to Buy Snapchat When it was enjoying its first major surge in popularity, Snapchat was offered a purchase bid from Facebook worth $3 billion. That’s a huge vote of confidence from the biggest social network on the planet… and Snapchat turned it down! ??Here’s Why You Need To Take A Close Look At Snapchat… ·Although often overlooked, Snapchat is one of the most powerful new social networks for driving traffic online…? ·Snapchatis all about socialization and a great way to interact with your brand? ·Snapchat was recently offered $3 Billion by Facebook… and they turned it down… this makes it clear that Snapchat is sure that it’s only getting bigger and better!? ·Engagement on Snapchat is MASSIVE, and growing… because all communication is focused on image and video sharing, your audience is very attentive and interested in anything you put in front of them…...Snapchat is adding 200 million new active users every single month!
Learning Go Programming
Learning Go Programming
Vladimir Vivien
¥371.39
An insightful guide to learning the Go programming languageAbout This Book·Insightful coverage of Go programming syntax, constructs, and idioms to help you understand Go code effectively·Push your Go skills, with topics such as, data types, channels, concurrency, object-oriented Go, testing, and network programming·Each chapter provides working code samples that are designed to help reader quickly understand respective topicWho This Book Is ForIf you have prior exposure to programming and are interested in learning the Go programming language, this book is designed for you. It will quickly run you through the basics of programming to let you exploit a number of features offered by Go programming language.What You Will Learn·Install and configure the Go development environment to quickly get started with your first program.·Use the basic elements of the language including source code structure, variables, constants, and control flow primitives to quickly get started with Go·Gain practical insight into the use of Go's type system including basic and composite types such as maps, slices, and structs.·Use interface types and techniques such as embedding to create idiomatic object-oriented programs in Go.·Develop effective functions that are encapsulated in well-organized package structures with support for error handling and panic recovery.·Implement goroutine, channels, and other concurrency primitives to write highly-concurrent and safe Go code·Write tested and benchmarked code using Go's built test tools·Access OS resources by calling C libraries and interact with program environment at runtimeIn DetailThe Go programming language has firmly established itself as a favorite for building complex and scalable system applications. Go offers a direct and practical approach to programming that let programmers write correct and predictable code using concurrency idioms and a full-featured standard library.This is a step-by-step, practical guide full of real world examples to help you get started with Go in no time at all. We start off by understanding the fundamentals of Go, followed by a detailed description of the Go data types, program structures and Maps. After this, you learn how to use Go concurrency idioms to avoid pitfalls and create programs that are exact in expected behavior. Next, you will be familiarized with the tools and libraries that are available in Go for writing and exercising tests, benchmarking, and code coverage.Finally, you will be able to utilize some of the most important features of GO such as, Network Programming and OS integration to build efficient applications. All the concepts are explained in a crisp and concise manner and by the end of this book; you would be able to create highly efficient programs that you can deploy over cloud.Style and approachThe book is written to serve as a reader-friendly step-by-step guide to learning the Go programming language. Each topic is sequentially introduced to build on previous materials covered. Every concept is introduced with easy-to-follow code examples that focus on maximizing the understanding of the topic at hand.
Mastering Hibernate
Mastering Hibernate
Ramin Rad
¥222.81
Learn how to correctly utilize the most popular Object-Relational Mapping tool for your Enterprise applicationAbout This Book·Understand the internals of Hibernate and its architecture, and how it manages Entities, Events, Versioning, Filters, and Cache·Observe how Hibernate bridges the gap between object-oriented concepts and relational models·Discover how Hibernate can address architectural concerns such as Transaction, Database Multi-tenancy, Clustering, and Database ShardsWho This Book Is ForMastering Hibernate is intended for those who are already using or considering using Hibernate as the solution to address the problem of Object Relational Mapping. If you are already using Hibernate, this book will help you understand the internals and become a power user of Hibernate.What You Will Learn·Understand the internals of a Hibernate session and how Entities are managed·Declare better mapping between entity classes and database tables·Manage entity associations and collections·Fetch data not just by entity ID, but also using HQL, Criteria Objects, Filters, and Native SQL·Observe the first and second level caches and find out how to manage them·Collect statistics and metrics data for further observation·Make your application work with multi-tenant databasesIn DetailHibernate has been so successful since its inception that it even influenced the Java Enterprise Edition specification in that the Java Persistence API was dramatically changed to do it the Hibernate way. Hibernate is the tool that solves the complex problem of Object Relational Mapping. It can be used in both Java Enterprise applications as well as .Net applications. Additionally, it can be used for both SQL and NoSQL data stores.Some developers learn the basics of Hibernate and hit the ground quickly. But when demands go beyond the basics, they take a reactive approach instead of learning the fundamentals and core concepts. However, the secret to success for any good developer is knowing and understanding the tools at your disposal. It's time to learn about your tool to use it betterThis book first explores the internals of Hibernate by discussing what occurs inside a Hibernate session and how Entities are managed. Then, we cover core topics such as mapping, querying, caching, and we demonstrate how to use a wide range of very useful annotations.Additionally, you will learn how to create event listeners or interceptors utilizing the improved architecture in the latest version of Hibernate.Style and approachThis book takes a close look at the core topics, and helps you understand the complex topics by showing you examples and giving you in-depth discussions.
C++ Game Development Cookbook
C++ Game Development Cookbook
Druhin Mukherjee
¥334.25
Over 90 recipes to get you creating modern, fast, and high-quality games with C++About This Book·Level up your game programming skills with insightful recipes on building games in C++·Analyze the less commonly discussed problems with C++ applications to develop the best games·Improve the performance of your games with the new multi-threading and networking features of C++11Who This Book Is ForThis book is ideal for aspiring game developers who are proficient in C++ programming and are interested in developing games with C++. Some basic knowledge of game programming will be useful but is not necessary.What You Will Learn·Explore the basics of game development to build great and effective features for your game·Develop your first text-based game using the various concepts of object-oriented programming·Use algorithms when developing games with various sorting and searching techniques·Exploit data structures in a game's development for data storage·Create your first 2D game using GDI library and sprite sheet.·Build your first advanced 2D game of space invaders using patterns such as observer, fly-weight, abstract factory, command, state, and moreIn DetailC++ is one of the preferred languages for game development as it supports a variety of coding styles that provides low-level access to the system. C++ is still used as a preferred game programming language by many as it gives game programmers control of the entire architecture, including memory patterns and usage. However, there is little information available on how to harness the advanced features of C++ to build robust games.This book will teach you techniques to develop logic and game code using C++. The primary goal of this book is to teach you to create high-quality games using C++ game programming scripts and techniques, regardless of the library or game engine you use. It will show you how to make use of the object-oriented capabilities of C++ so you can write well-structured and powerful games of any genre. The book also explores important areas such as physics programming and audio programming, and gives you other useful tips and tricks to improve your code.By the end of this book, you will be competent in game programming using C++, and will be able to develop your own games in C++.Style and approachEvery recipe of this guide covers a task that will help you build different aspects of a game, such as taking player input and displaying the output, using control flow to implement decision making, and so on. Each recipe begins with gentle introduction and key concepts, has illustrated examples of use, and ends with a detailed but informative description of the inner workings.
Expert Python Programming - Second Edition
Expert Python Programming - Second Edition
Michal Jaworski, Tarek Ziade
¥334.25
Become an ace Python programmer by learning best coding practices and advance-level concepts with Python 3.5About This Book·Based on the latest stable version of Python (version 3.5)·Creating well manageable code that will run in various environments with different sets of dependencies·Packed with advanced concepts and best practices to write efficient Python codeWho This Book Is ForThe book would appeal to web developers and Python programmers who want to start using version 3.5 and write code efficiently. Basic knowledge of Python programming is expected.What You Will Learn·Conventions and best practices that are widely adopted in the python community·Package python code effectively for community and production use·Easy and lightweight ways to automate code deployment on remote systems·Improve your code's quality, reliability, and performance·Write concurrent code in python·Extend python with code written in different languagesIn DetailPython is a dynamic programming language, used in a wide range of domains by programmers who find it simple, yet powerful. Even if you find writing Python code easy, writing code that is efficient and easy to maintain and reuse is a challenge.The focus of the book is to familiarize you with common conventions, best practices, useful tools and standards used by python professionals on a daily basis when working with code.You will begin with knowing new features in Python 3.5 and quick tricks for improving productivity. Next, you will learn advanced and useful python syntax elements brought to this new version. Using advanced object-oriented concepts and mechanisms available in python, you will learn different approaches to implement metaprogramming. You will learn to choose good names, write packages, and create standalone executables easily.You will also be using some powerful tools such as buildout and vitualenv to release and deploy the code on remote servers for production use. Moving on, you will learn to effectively create Python extensions with C, C++, cython, and pyrex. The important factors while writing code such as code management tools, writing clear documentation, and test-driven development are also covered.You will now dive deeper to make your code efficient with general rules of optimization, strategies for finding bottlenecks, and selected tools for application optimization.By the end of the book, you will be an expert in writing efficient and maintainable code.Style and approach An easy-to-follow guide that covers industry followed best practices in Python programming
Mastering Akka
Mastering Akka
Christian Baxter
¥371.39
Master the art of creating scalable, concurrent, and reactive applications using AkkaAbout This Book·This book will help you cure anemic models with domain-driven design·We cover major Akka programming concepts such as concurrency, scalability, and reactivity·You will learn concepts like Event Sourcing and CQRS via Akka Persistence, Akka Streams, Akka Http as well as Akka ClusteringWho This Book Is ForIf you want to use the Lightbend platform to create highly performant reactive applications, then this book is for you. If you are a Scala developer looking for techniques to use all features of the new Akka release and want to incorporate these solutions in your current or new projects, then this book is for you. Expert Java developers who want to build scalable, concurrent, and reactive application will find this book helpful.What You Will Learn·Use Akka actors to enable parallel execution·Build out domain-driven design based components like entities and aggregates·Respond to command requests on that aggregate root that affect the internal state·Leverage Akka Persistence, protobuf and Cassandra to save the persistent state of you entities·Build out complex processing graphs with the Graph Builder DSL·Understand the dynamic push/pull nature of backpressure handling within Akka Streams·Route HTTP requests to an actor and return a response·Deploy actor instances across a set of nodes via ConductR for high availabilityIn DetailFor a programmer, writing multi-threaded applications is critical as it is important to break large tasks into smaller ones and run them simultaneously. Akka is a distributed computing toolkit that uses the abstraction of the Actor model, enabling developers to build correct, concurrent, and distributed applications using Java and Scala with ease. The book begins with a quick introduction that simplifies concurrent programming with actors. We then proceed to master all aspects of domain-driven design. We'll teach you how to scale out with Akka Remoting/Clustering. Finally, we introduce Conductr as a means to deploy to and manage microservices across a cluster.Style and approachThis comprehensive, fast-paced guide is packed with several real-world use cases that will help you understand concepts, issues, and resolutions while using Akka to create highly performant, scalable, and concurrency-proof reactive applications.
Machine Learning For Beginners Guide Algorithms
Machine Learning For Beginners Guide Algorithms
William Sullivan
¥32.62
Machines can LEARN ?!?! Machine learning occurs primarily through the use of " algorithms" and other elaborate procedures Whether you're a novice, intermediate or expert this book will teach you all the ins, outs and everything you need to know about machine learning Note: Bonus chapters included inside! Instead of spending hundreds or even thousands of dollars on courses/materials why not read this book instead? Its a worthwhile read and the most valuable investment you can make for yourself Other books easily retail for $50-$100+ and have far less quality content. This book is by far superior and exceeds any other book available for beginners. What You'll Learn Supervised Learning Unsupervised Learning Reinforced Learning Algorithms Decision Tree Random Forest Neural Networks Python Deep Learning And much, much more! This is the most comprehensive and easy to read step by step guide in machine learning that exists. Learn from one of the most reliable programmers alive and expert in the field You do not want to miss out on this incredible offer!
Secrets to Effective Author Marketing: It’s More Than “Buy My Book”
Secrets to Effective Author Marketing: It’s More Than “Buy My Book”
Maggie Lynch
¥46.36
Have you put your book out there and been disappointed in your sales? Perhaps you’ve tried a variety of marketing tactics to boost discoverability: blog posts, social media, book tours, paid ads in a variety of venues. But nothing is working. The publishing landscape changes every year. The number of books published has increased and the competition for readers is more than it has been before. The key is to?define your audience and then convince those potential readers of the?value?of your book. Your marketing time and money should primarily be spent on a message of value–not price, not story, and not genre. This book provides specific techniques to exploit that value without resorting to the typical overexposure in social media and newsletters with “Buy My Book” sales messaging. Instead, focus on the top three proven techniques that actually sell books. Follow step-by-step instructions and timelines to learn how to: 1) Create an Effective Plan for Communicating to Readers; 2) Use Social Media and Email lists to Engage with Your Readers; and 3) Plan for Effective Campaigns for both Book Launches and Backlist Rejuvenation throughout the year. In addition this book provides techniques to: Distinguish specific groups of readers most likely to buy your novel or nonfiction book. Understand your competition and the advantages that your book offers. Clarify hooks that capture attention of the media, reviewers, and readers. Identify where and how to reach readers, reviewers, and media. Create and implement a consistent brand throughout all marketing efforts. Effectively select, from 100+ options, the appropriate marketing tactics and timing that matches your book intentions and values. Maximize organic reach and stay to a budget of less than $100 per book campaign. Develop a long-term online marketing plan.
Secrets to Pricing and Distribution: Ebook, Print and Direct Sales
Secrets to Pricing and Distribution: Ebook, Print and Direct Sales
Maggie McVay Lynch
¥30.88
Once you have a finished book, you need to get it into readers’ hands. Loading your book to a vendor looks deceivingly easy. However, the career author knows that each vendor has its own methods for promoting books, performing searches, and identifying ready buyers. You need to take advantage of these differences in order to maximize your profits and discoverability. Capitalize on competitive retail pricing in different markets, and use effective metadata to draw more readers to your books. Learn to: Write compelling book blurbs for each title that focus on “reader cookies” and marketing. Unlock keywords and get access to hidden category options. Take advantage of search algorithm nuances at Amazon, Barnes and Noble, Kobo, and Apple. Use aggregators to increase distribution opportunities around the world. Evaluate opportunities for direct sales to bookstores and individual consumers.
A hárem bábája
A hárem bábája
Roberta Rich
¥74.74
Válaszok a nap mint nap el?forduló gyakorlati iratkezelési kérdésekre! Hogyan feleljünk meg a jogszabályoknak? Mik azok a SZE?SZ-?k és milyen el?ny?kkel jár az alkalmazásuk? Mi a kül?nbség a digitális és az elektronikus aláírás k?z?tt? Mikor javasolt a vonalkódos digitalizálás használata? Mire kell figyelnem egy iratkezel? rendszer bevezetésénél? ?Az egységes iratkezelés k?zelmúltban bet?lt?tt 10. évfordulója az ágazat felel?s vezet?it és munkatársait is visszatekintésre, ?sszegzésre és a j?v?re irányuló útkeresésre ?szt?nzi. Remek segédeszk?z ehhez e kiadvány, ami professzionális módon foglalja ?ssze az iratkezelés napjainkban aktuális témáit, problémáit. Bízom benne, hogy mindennapi munkájuk során az iratkezel?i állomány, az iratkezelésért felel?s szervezeti egységek vezet?i gyakran kezükbe veszik majd és ?sorvezet?ként” alkalmazzák. Kovács Rezs? – Belügyminisztérium, Iratkezelési és Adatvédelmi F?osztály, f?osztályvezet? ?Lehet-e izgalmasabb annál, mint amikor kit?n? szakemberek vallanak munkájukról, annak jogi és természetes k?rnyezetér?l, a fejl?dés irányairól? A válogatott fejezetek az iratkezelés-, az elektronizálás- és az elektronikus iratkezelés ábécéjének foglalatát adják olyan szerz?k tollából, akik maguk is jártasak a témában és végigjárták annak útveszt?it.” Surányiné dr. Temesi Mária - K?zigazgatási és Elektronikus K?zszolgáltatások K?zponti Hivatala, Kormányzati K?zponti ?rkeztet? F?osztály, f?osztályvezet?
Apache Superset Quick Start Guide
Apache Superset Quick Start Guide
Shashank Shekhar
¥54.49
Integrate open source data analytics and build business intelligence on SQL databases with Apache Superset. The quick, intuitive nature for data visualization in a web application makes it easy for creating interactive dashboards. Key Features *Work with Apache Superset's rich set of data visualizations *Create interactive dashboards and data storytelling *Easily explore data Book Description Apache Superset is a modern, open source, enterprise-ready business intelligence (BI) web application. With the help of this book, you will see how Superset integrates with popular databases like Postgres, Google BigQuery, Snowflake, and MySQL. You will learn to create real time data visualizations and dashboards on modern web browsers for your organization using Superset. First, we look at the fundamentals of Superset, and then get it up and running. You'll go through the requisite installation, configuration, and deployment. Then, we will discuss different columnar data types, analytics, and the visualizations available. You'll also see the security tools available to the administrator to keep your data safe. You will learn how to visualize relationships as graphs instead of coordinates on plain orthogonal axes. This will help you when you upload your own entity relationship dataset and analyze the dataset in new, different ways. You will also see how to analyze geographical regions by working with location data. Finally, we cover a set of tutorials on dashboard designs frequently used by analysts, business intelligence professionals, and developers. What you will learn *Get to grips with the fundamentals of data exploration using Superset *Set up a working instance of Superset on cloud services like Google Compute Engine *Integrate Superset with SQL databases *Build dashboards with Superset *Calculate statistics in Superset for numerical, categorical, or text data *Understand visualization techniques, filtering, and grouping by aggregation *Manage user roles and permissions in Superset *Work with SQL Lab Who this book is for This book is for data analysts, BI professionals, and developers who want to learn Apache Superset. If you want to create interactive dashboards from SQL databases, this book is what you need. Working knowledge of Python will be an advantage but not necessary to understand this book.
Learn Clip Studio Paint
Learn Clip Studio Paint
Liz Staley
¥71.93
Take your comics and illustrations to the next level with the powerful art tools in Clip Studio Paint 1.8 Key Features *Overcome “interface overwhelm” with a practical breakdown of the Clip Studio interface *Comprehensive guide on the Clip Studio Paint with detailed coverage of all the tools and concepts of designing comics *Streamline your workflow to create faster and easier using Clip Studio’s features Book Description Clip Studio Paint, the successor to Manga Studio, is used by over four million illustrators and comic creators around the world. This book will guide you through every step of learning this software, from system requirements and installation, all the way through to exporting your work for print or the web. Learn how to create new documents, customize tools to fit your working style, use ruler tools to create anything from straight lines to intricate backgrounds, add 3D elements, create comic panels using the specialized panel tools, utilize screentones and materials, add text and word balloons to your comics, create sound effects, easily flat and color your comics using reference layers, and bring your drawings to life using the animation features. By the end of this book, you will be able to navigate the Clip Studio Interface and program preferences, customize the various tools, and be able to create your own black-and-white and color illustrations and comics from start to finish. What you will learn *Understand the differences between Clip Studio Paint Pro and EX *Discover how to navigate and customize the user interface *Creating custom tools that fit your unique style of illustration *Using the ruler tools to create intricate perspective shots and complex symmetry *Discover how to use 3D elements in your work *Learn how to create lettering and word balloons to bring your comic stories to life *Understand the process of digital art creation from pencils to inks to color *Understand how to use the animation tools available in Clip Studio Paint Who this book is for If you are a beginning digital artist or are switching to Clip Studio from another graphics software, this book is for you. This book is excellent for those with no knowledge of digital art up to intermediate users looking to explore the unique features of Clip Studio Paint.
Learn Type-Driven Development
Learn Type-Driven Development
Yawar Amin
¥63.21
A fast paced guide for JavaScript developers for writing safe, fast, and reusable code by leveraging ResaonML's strong static type system Key Features *Reduce code errors with the power of type systems *Employ static typechecking and genericity to promote code reuse and consistency *Understand functional programming which is the foundation of type-driven development Book Description Type-driven development is an approach that uses a static type system to achieve results including safety and efficiency. Types are used to express relationships and other assumptions directly in the code, and these assumptions are enforced by the compiler before the code is run. Learn Type-Driven Development covers how to use these type systems to check the logical consistency of your code. This book begins with the basic idea behind type-driven development. You’ll learn about values (or terms) and how they contrast with types. As you progress through the chapters, you’ll cover how to combine types and values inside modules and build structured types out of simpler ones. You’ll then understand how to express choices or alternatives directly in the type system using variants, polymorphic variants, and generalized algebraic data types. You’ll also get to grips with sum types, build sophisticated data types from generics, and explore functions that express change in the types of values. In the concluding chapters, you’ll cover advanced techniques for code reuse, such as parametric polymorphism and subtyping. By end of this book, you will have learned how to iterate through a type-driven process of solving coding problems using static types, together with dynamic behavior, to obtain more safety and speed. What you will learn *Use static types to capture information, making programs safer and faster *Learn ReasonML from experienced type-driven developers *Enhance safety by simply using basic types *Understand the most important type-driven concepts with simple examples *Explore a design space using static typing and find the best way to express your system rules *Use static types and dynamic runtime in harmony to write even safer and faster code Who this book is for If you’re a programmer working with dynamically typed languages and are looking for ways to mitigate production runtime errors, Learn Type-Driven Development is for you. You’ll also find this book helpful if you’re a programmer working with statically typed languages looking for increased safety and improved performance.
Hands-On Artificial Intelligence for IoT
Hands-On Artificial Intelligence for IoT
Amita Kapoor
¥90.46
Build smarter systems by combining artificial intelligence and the Internet of Things—two of the most talked about topics today Key Features * Leverage the power of Python libraries such as TensorFlow and Keras to work with real-time IoT data * Process IoT data and predict outcomes in real time to build smart IoT models * Cover practical case studies on industrial IoT, smart cities, and home automation Book Description There are many applications that use data science and analytics to gain insights from terabytes of data. These apps, however, do not address the challenge of continually discovering patterns for IoT data. In Hands-On Artificial Intelligence for IoT, we cover various aspects of artificial intelligence (AI) and its implementation to make your IoT solutions smarter. This book starts by covering the process of gathering and preprocessing IoT data gathered from distributed sources. You will learn different AI techniques such as machine learning, deep learning, reinforcement learning, and natural language processing to build smart IoT systems. You will also leverage the power of AI to handle real-time data coming from wearable devices. As you progress through the book, techniques for building models that work with different kinds of data generated and consumed by IoT devices such as time series, images, and audio will be covered. Useful case studies on four major application areas of IoT solutions are a key focal point of this book. In the concluding chapters, you will leverage the power of widely used Python libraries, TensorFlow and Keras, to build different kinds of smart AI models. By the end of this book, you will be able to build smart AI-powered IoT apps with confidence. What you will learn * Apply different AI techniques including machine learning and deep learning using TensorFlow and Keras * Access and process data from various distributed sources * Perform supervised and unsupervised machine learning for IoT data * Implement distributed processing of IoT data over Apache Spark using the MLLib and H2O.ai platforms * Forecast time-series data using deep learning methods * Implementing AI from case studies in Personal IoT, Industrial IoT, and Smart Cities * Gain unique insights from data obtained from wearable devices and smart devices Who this book is for If you are a data science professional or a machine learning developer looking to build smart systems for IoT, Hands-On Artificial Intelligence for IoT is for you. If you want to learn how popular artificial intelligence (AI) techniques can be used in the Internet of Things domain, this book will also be of benefit. A basic understanding of machine learning concepts will be required to get the best out of this book.
Mastering VMware vSphere 6.7
Mastering VMware vSphere 6.7
Martin Gavanda
¥73.02
Unleash the benefits of VMware vSphere 6.7 to provide a powerful, flexible and secure digital infrastructure Key Features * Deep dive into areas like management, security, scalability, availability and more with vSphere 6.7 * Design, deploy and manage VMware vSphere virtual datacenters * Implement monitoring and security of VMware workloads with ease Book Description vSphere 6.7 is the latest release of VMware’s industry-leading, virtual cloud platform. It allows organisations to move to hybrid cloud computing by enabling them to run, manage, connect and secure applications in a common operating environment. This up-to-date, 2nd edition provides complete coverage of vSphere 6.7. Complete with step-by-step explanations of essential concepts, practical examples and self-assessment questions, you will begin with an overview of the products, solutions and features of the vSphere 6.7 suite. You’ll learn how to design and plan a virtual infrastructure and look at the workflow and installation of components. You'll gain insight into best practice configuration, management and security. By the end the book you'll be able to build your own VMware vSphere lab that can run even the most demanding of workloads. What you will learn * Explore the immense functionality of vSphere 6.7 * Design, manage and administer a virtualization environment * Get tips for the VCP6-DCV and VCIX6-DCV exams * Understand how to implement different migration techniques across different environments * Explore vSphere 6.7s powerful capabilities for patching, upgrading and managing the configuration of virtual environments. * Understand core vSphere components * Master resource management, disaster recovery, troubleshooting, monitoring and security Who this book is for This book is for Administrators, Infrastructure Engineers, Architects, and Consultants with basic knowledge of VMware vSphere.
Learning Python Networking
Learning Python Networking
José Manuel Ortega
¥90.46
Achieve improved network programmability and automation by leveraging powerful network programming concepts, algorithms, and tools Key Features * Deal with remote network servers using SSH, FTP, SNMP and LDAP protocols. * Design multi threaded and event-driven architectures for asynchronous servers programming. * Leverage your Python programming skills to build powerful network applications Book Description Network programming has always been a demanding task. With full-featured and well-documented libraries all the way up the stack, Python makes network programming the enjoyable experience it should be. Starting with a walk through of today's major networking protocols, through this book, you'll learn how to employ Python for network programming, how to request and retrieve web resources, and how to extract data in major formats over the web. You will utilize Python for emailing using different protocols, and you'll interact with remote systems and IP and DNS networking. You will cover the connection of networking devices and configuration using Python 3.7, along with cloud-based network management tasks using Python. As the book progresses, socket programming will be covered, followed by how to design servers, and the pros and cons of multithreaded and event-driven architectures. You'll develop practical clientside applications, including web API clients, email clients, SSH, and FTP. These applications will also be implemented through existing web application frameworks. What you will learn * Execute Python modules on networking tools * Automate tasks regarding the analysis and extraction of information from a network * Get to grips with asynchronous programming modules available in Python * Get to grips with IP address manipulation modules using Python programming * Understand the main frameworks available in Python that are focused on web application * Manipulate IP addresses and perform CIDR calculations Who this book is for If you're a Python developer or a system administrator with Python experience and you're looking to take your first steps in network programming, then this book is for you. If you're a network engineer or a network professional aiming to be more productive and efficient in networking programmability and automation then this book would serve as a useful resource. Basic knowledge of Python is assumed.
Mastering IOT
Mastering IOT
Colin Dow
¥88.28
Leverage the full potential of IoT with the combination of Raspberry Pi 3 and Python and architect a complete IoT system that is the best fit for your organization Key Features * Build complex Python-based applications with IoT * Explore different concepts, technologies, and tradeoffs in the IoT architectural stack * Delve deep into each element of the IoT design—from sensors to the cloud Book Description The Internet of Things (IoT) is the fastest growing technology market. Industries are embracing IoT technologies to improve operational expenses, product life, and people's well-being. We’ll begin our journey with an introduction to Raspberry Pi and quickly jump right into Python programming. We’ll learn all concepts through multiple projects, and then reinforce our learnings by creating an IoT robot car. We’ll examine modern sensor systems and focus on what their power and functionality can bring to our system. We’ll also gain insight into cloud and fog architectures, including the OpenFog standards. The Learning Path will conclude by discussing three forms of prevalent attacks and ways to improve the security of our IoT infrastructure. By the end of this Learning Path, we will have traversed the entire spectrum of technologies needed to build a successful IoT system, and will have the confidence to build, secure, and monitor our IoT infrastructure. This Learning Path includes content from the following Packt products: * Internet of Things Programming Projects by Colin Dow * Internet of Things for Architects by Perry Lea What you will learn * Build a home security dashboard using an infrared motion detector * Receive data and display it with an actuator connected to the Raspberry Pi * Build an IoT robot car that is controlled via the Internet * Use IP-based communication to easily and quickly scale your system * Explore cloud protocols, such as Message Queue Telemetry Transport (MQTT) and CoAP * Secure communication with encryption forms, such as symmetric key Who this book is for This Learning Path is designed for developers, architects, and system designers who are interested in building exciting projects with Python by understanding the IoT ecosphere, various technologies, and tradeoffs. Technologists and technology managers who want to develop a broad view of IoT architecture, will also find this Learning Path useful. Prior programming knowledge of Python is a must.
Generative Adversarial Networks Cookbook
Generative Adversarial Networks Cookbook
Josh Kalin
¥81.74
Simplify next-generation deep learning by implementing powerful generative models using Python, TensorFlow and Keras Key Features *Understand the common architecture of different types of GANs *Train, optimize, and deploy GAN applications using TensorFlow and Keras *Build generative models with real-world data sets, including 2D and 3D data Book Description Developing Generative Adversarial Networks (GANs) is a complex task, and it is often hard to find code that is easy to understand. This book leads you through eight different examples of modern GAN implementations, including CycleGAN, simGAN, DCGAN, and 2D image to 3D model generation. Each chapter contains useful recipes to build on a common architecture in Python, TensorFlow and Keras to explore increasingly difficult GAN architectures in an easy-to-read format. The book starts by covering the different types of GAN architecture to help you understand how the model works. This book also contains intuitive recipes to help you work with use cases involving DCGAN, Pix2Pix, and so on. To understand these complex applications, you will take different real-world data sets and put them to use. By the end of this book, you will be equipped to deal with the challenges and issues that you may face while working with GAN models, thanks to easy-to-follow code solutions that you can implement right away. What you will learn *Structure a GAN architecture in pseudocode *Understand the common architecture for each of the GAN models you will build *Implement different GAN architectures in TensorFlow and Keras *Use different datasets to enable neural network functionality in GAN models *Combine different GAN models and learn how to fine-tune them *Produce a model that can take 2D images and produce 3D models *Develop a GAN to do style transfer with Pix2Pix Who this book is for This book is for data scientists, machine learning developers, and deep learning practitioners looking for a quick reference to tackle challenges and tasks in the GAN domain. Familiarity with machine learning concepts and working knowledge of Python programming language will help you get the most out of the book.
Serverless Architectures with AWS
Serverless Architectures with AWS
Mohit Gupta
¥54.49
Don't waste your energy thinking about servers; use AWS to build enterprise-grade serverless applications. Key Features *Learn how to quickly and easily go serverless *Explore AWS and Lambda: the first building blocks of serverless applications on AWS *Study different approaches to deploy and maintain serverless applications Book Description Serverless Architecture with AWS begins with an introduction to the serverless model and helps you get started with AWS and Lambda. You'll also get to grips with other capabilities of the AWS Serverless Platform and see how AWS supports enterprise-grade serverless applications with and without Lambda. This book will guide you in deploying your first serverless project and exploring the capabilities of serverless Amazon Athena, an interactive query service that makes it easy to analyze data in Amazon Simple Storage Service (S3 Amazon) using standard SQL. You’ll also learn about AWS Glue, a fully managed ETL service that makes categorizing data easy and cost-effective. You'll study how Amazon Kinesis makes it possible to unleash the potential of real-time data insights and analytics with capabilities such as video streams, data streams, data firehose, and data analytics. Last but not least, you’ll be equipped to combine Amazon Kinesis capabilities with AWS Lambda to create lightweight serverless architectures. By the end of the book, you will be ready to create and run your first serverless application that takes advantage of the high availability, security, performance, and scalability of AWS. What you will learn *Explore AWS services for supporting a serverless environment *Set up AWS services to make applications scalable and highly available *Deploy a static website with a serverless architecture *Build your first serverless web application *Study the changes in a deployed serverless web application *Apply best practices to ensure overall security, availability, and reliability Who this book is for This book is for you if you want to develop serverless applications and have some prior coding experience. Though no prior experience of AWS is needed, basic knowledge of Java or Node.js will be an added advantage.
Hands-On Reactive Programming with Clojure
Hands-On Reactive Programming with Clojure
Konrad Szydlo
¥63.21
Learn how to use RxClojure to deal with stateful computations Key Features * Leverage the features of Functional Reactive Programming using Clojure * Create dataflow-based systems that are the building blocks of Reactive Programming * Use different Functional Reactive Programming frameworks, techniques, and patterns to solve real-world problems Book Description Reactive Programming is central to many concurrent systems, and can help make the process of developing highly concurrent, event-driven, and asynchronous applications simpler and less error-prone. This book will allow you to explore Reactive Programming in Clojure 1.9 and help you get to grips with some of its new features such as transducers, reader conditionals, additional string functions, direct linking, and socket servers. Hands-On Reactive Programming with Clojure starts by introducing you to Functional Reactive Programming (FRP) and its formulations, as well as showing you how it inspired Compositional Event Systems (CES). It then guides you in understanding Reactive Programming as well as learning how to develop your ability to work with time-varying values thanks to examples of reactive applications implemented in different frameworks. You'll also gain insight into some interesting Reactive design patterns such as the simple component, circuit breaker, request-response, and multiple-master replication. Finally, the book introduces microservices-based architecture in Clojure and closes with examples of unit testing frameworks. By the end of the book, you will have gained all the knowledge you need to create applications using different Reactive Programming approaches. What you will learn * Understand how to think in terms of time-varying values and event streams * Create, compose, and transform observable sequences using Reactive extensions * Build a CES framework from scratch using core.async as its foundation * Develop a simple ClojureScript game using Reagi * Integrate Om and RxJS in a web application * Implement a reactive API in Amazon Web Services (AWS) * Discover helpful approaches to backpressure and error handling * Get to grips with futures and their applications Who this book is for If you’re interested in using Reactive Programming to build asynchronous and concurrent applications, this is the book for you. Basic knowledge of Clojure programming is necessary to understand the concepts covered in this book.