0328~0329_新天鵝堡
0328~0329_mamayo迷你磁力片

英文書 > 全部商品

Visual Studio Code for Python Programmers

Wiley 出版
2021/06/22 出版

Become proficient and efficient with Visual Studio Code and learn how to integrate all your external tools! Visual Studio Code for Python Programmers helps Python developers become not just familiar, but productive in Visual Studio Code. To start, you'll find the steps for installing Visual Studio Code on Windows, Mac and Linux platforms, along with an introduction to the editing features of the workspace. Coverage of more advanced functionality includes managing source code, debugging, unit testing, and Jupyter Notebook support. The book finishes with a walk-through of real-world projects which utilize Visual Studio Code features introduced in the book. For developers, the choice of an editor is a very personal one. You have idiosyncratic needs and wants that are unique to you as a developer. This book will help you learn how to customize Visual Studio Code to meet your needs and Python development workflow. Introduces you to the features of the Visual Studio Code workspace and how those features can be customized Demonstrates how Visual Studio Code allows you to choose your structure according to your needs Covers editing code in Python, including syntax highlighting, code completion, object definition, refactoring, and code navigation Describes Git integration and how to perform common Git functions (commits, checkouts, branches, and merges) from within Visual Studio Code Highlights debugging features for Python developers A final section on Real World Applications will step you through several examples (and features integration with Django, Flask, Jupyter Notebook, Docker, and Azure), so you can hit the ground running with Visual Studio Code.

9 特價1710
立即代訂
下次再買

Introduction to R for Terrestrial Ecology

Springer 出版
2021/06/22 出版

This textbook covers R data analysis related to environmental science, starting with basic examples and proceeding up to advanced applications of the R programming language. The main objective of the textbook is to serve as a guide for undergraduate students, who have no previous experience with R, but part of the textbook is dedicated to advanced R applications, and will also be useful for Masters and PhD students, and professionals. The textbook deals with solving specific programming tasks in R, and tasks are organized in terms of gradually increasing R proficiency, with examples getting more challenging as the chapters progress. The main competencies students will acquire from this textbook are: manipulating and processing data tablesperforming statistical testscreating maps in R This textbook will be useful in undergraduate and graduate courses in Advanced LandscapeEcology, Analysis of Ecological and Environmental Data, Ecological Modeling, Analytical Methods for Ecologists, Statistical Inference for Applied Research, Elements of Statistical Methods, Computational Ecology, Landscape Metrics and Spatial Statistics.

9 特價3653
立即代訂
下次再買

Kotlin and Android Development Featuring Jetpack

Pragmatic 出版
2021/06/22 出版

Start building native Android apps the modern way in Kotlin with Jetpack's expansive set of tools, libraries, and best practices. Learn how to create efficient, resilient views with Fragments and share data between the views with ViewModels. Use Room to persist valuable data quickly, and avoid NullPointerExceptions and Java's verbose expressions with Kotlin. You can even handle asynchronous web service calls elegantly with Kotlin coroutines. Achieve all of this and much more while building two full-featured apps, following detailed, step-by-step instructions. With Kotlin and Jetpack, Android development is now smoother and more enjoyable than ever before. Dive right in by developing two complete Android apps. With the first app, Penny Drop, you create a full game complete with random die rolls, customizable rules, and AI opponents. Build lightweight Fragment views with data binding, quickly and safely update data with ViewModel classes, and handle all app navigation in a single location. Use Kotlin with Android-specific Kotlin extensions to efficiently write null-safe code without all the normal boilerplate required for pre-Jetpack + Kotlin apps. Persist and retrieve data as full objects with the Room library, then display that data with ViewModels and list records in a RecyclerView. Next, you create the official app for the Android Baseball League. It's a fake league but a real app, where you use what you learn in Penny Drop and build up from there. Navigate all over the app via a Navigation Drawer, including specific locations via Android App Links. Handle asynchronous and web service calls with Kotlin Coroutines, display that data smoothly with the Paging library, and send notifications to a user's phone from your app. Come build Android apps the modern way with Kotlin and Jetpack! What You Need: You'll need the Android SDK, a text editor, and either a real Android device or emulator for testing. While not strictly required, it's assumed you're using Android Studio, which comes with the Android SDK and simplifies creating an emulator. Also, a few examples require JDK 1.8 or later, though all of these pieces can be completed in other ways when using JDK 1.6.

9 特價2472
立即代訂
下次再買

Securing Mobile Devices and Technology

Kutub,Thakur  著
Ingram 出版
2021/06/20 出版

This book describes the detailed concepts of mobile security. The first two chapters provide a deeper perspective on communication networks while the rest of the book focuses on different aspects of mobile security, wireless networks, and cellular networks.

9 特價3548
立即代訂
下次再買

Flutter Cookbook

Packt 出版
2021/06/18 出版

Discover how to build, scale, and debug native iOS and Android applications from a single codebase using the Dart programming language Key Features: Quickly build and iterate on your user interface (UI) with hot reloadFix bugs and prevent them from reappearing using Flutter's developer tools and test suitesDiscover practical recipes for building mobile applications with FlutterBook Description: Flutter is an open-source framework for building mobile, web, and desktop apps using the Dart language. With this recipe-based guide, which focuses on robust app design and core principles, you'll learn how to solve cross-platform development issues in a practical way.The Flutter Cookbook covers error handling and debugging to ensure that your apps run more efficiently. You'll start by setting up Flutter and customizing your development environment. The book will explain the main tasks involved in app development, such as user interface and user experience (UI/UX) design, API design, and creating animations. Later chapters get you up to speed with routing, retrieving data from web services, and persisting data locally. A dedicated section also focuses on Firebase and its machine learning capabilities. The last chapter is specifically designed to help you create apps for the web and desktop (Windows, Mac, and Linux). Throughout the book, you'll find recipes that cover the most important features needed to build a cross-platform application, along with insights into running a single codebase on different platforms.By the end of this Flutter book, you'll have learned everything you need to be able to write and deliver fully functional apps.What You Will Learn: Use Dart programming to customize your Flutter applicationsDiscover how to develop and think like a Dart programmerLeverage Firebase Machine Learning capabilities to create intelligent appsCreate reusable architecture that can be applied to any type of appUse web services and persist data locallyDebug and solve problems before users can see themUse asynchronous programming with Future and StreamManage the app state with Streams and the BLoC patternWho this book is for: This app development book is for beginner to intermediate-level developers who want to become mobile developers. Basic knowledge of modern programming languages such as JavaScript, Swift, Kotlin, Java, Objective-C, or C# will help you to understand the concepts covered in the book more easily.

9 特價2248
立即代訂
下次再買

Programming Rust

Jim,Blandy  著
Ingram 出版
2021/06/16 出版

Systems programming provides the foundation for the world's computation. Writing performance-sensitive code requires a programming language that puts programmers in control of how memory, processor time, and other system resources are used. The Rust systems programming language combines that control with a modern type system that catches broad classes of common mistakes, from memory management errors to data races between threads. With this practical guide, experienced systems programmers will learn how to successfully bridge the gap between performance and safety using Rust. Jim Blandy, Jason Orendorff, and Leonora Tindall demonstrate how Rust's features put programmers in control over memory consumption and processor use by combining predictable performance with memory safety and trustworthy concurrency. You'll learn: Rust's fundamental data types and the core concepts of ownership and borrowing How to write flexible, efficient code with traits and generics How to write fast, multithreaded code without data races Rust's key power tools: closures, iterators, and asynchronous programming Collections, strings and text, input and output, macros, unsafe code, and foreign function interfaces This revised, updated edition covers the Rust 2021 Edition.

9 特價2736
立即代訂
下次再買

Modern API Development with Spring and Spring Boot

Packt 出版
2021/06/16 出版

A developer's guide to designing, testing, and securing production-ready modern APIs with the help of practical ideas to improve your application's functionalityKey Features: Build resilient software for your enterprises and customers by understanding the complete API development life cycleOvercome the challenges of traditional API design by adapting to a new and evolving culture of modern API developmentUse Spring and Spring Boot to develop future-proof scalable APIsBook Description: The philosophy of API development has evolved over the years to serve the modern needs of enterprise architecture, and developers need to know how to adapt to these modern API design principles. Apps are now developed with APIs that enable ease of integration for the cloud environment and distributed systems. With this Spring book, you'll discover various kinds of production-ready API implementation using REST APIs and explore async using the reactive paradigm, gRPC, and GraphQL.You'll learn how to design evolving REST-based APIs supported by HATEOAS and ETAGs and develop reactive, async, non-blocking APIs. After that, you'll see how to secure REST APIs using Spring Security and find out how the APIs that you develop are consumed by the app's UI. The book then takes you through the process of testing, deploying, logging, and monitoring your APIs. You'll also explore API development using gRPC and GraphQL and design modern scalable architecture with microservices. The book helps you gain practical knowledge of modern API implementation using a sample e-commerce app.By the end of this Spring book, you'll be able to develop, test, and deploy highly scalable, maintainable, and developer-friendly APIs to help your customers to transform their business.What You Will Learn: Understand RESTful API development, its design paradigm, and its best practicesBecome well versed in Spring's core components for implementing RESTful web servicesImplement reactive APIs and explore async API developmentApply Spring Security for authentication using JWT and authorization of requestsDevelop a React-based UI to consume APIsImplement gRPC inter-service communicationDesign GraphQL-based APIs by understanding workflows and toolingGain insights into how you can secure, test, monitor, and deploy your APIsWho this book is for: This book is for inexperienced Java programmers, comp science, or coding boot camp graduates who have knowledge of basic programming constructs, data structures, and algorithms in Java but lack the practical web development skills necessary to start working as a developer. Professionals who've recently joined a startup or a company and are tasked with creating real-world web APIs and services will also find this book helpful. This book is also a good resource for Java developers who are looking for a career move into web development to get started with the basics of web service development.

9 特價2248
立即代訂
下次再買

Linux System Programming Techniques

Packt 出版
2021/06/16 出版

Find solutions to all your problems related to Linux system programming using practical recipes for developing your own system programsKey Features: Develop a deeper understanding of how Linux system programming worksGain hands-on experience of working with different Linux projects with the help of practical examplesLearn how to develop your own programs for LinuxBook Description: Linux is the world's most popular open source operating system (OS). Linux System Programming Techniques will enable you to extend the Linux OS with your own system programs and communicate with other programs on the system.The book begins by exploring the Linux filesystem, its basic commands, built-in manual pages, the GNU compiler collection (GCC), and Linux system calls. You'll then discover how to handle errors in your programs and will learn to catch errors and print relevant information about them. The book takes you through multiple recipes on how to read and write files on the system, using both streams and file descriptors. As you advance, you'll delve into forking, creating zombie processes, and daemons, along with recipes on how to handle daemons using systemd. After this, you'll find out how to create shared libraries and start exploring different types of interprocess communication (IPC). In the later chapters, recipes on how to write programs using POSIX threads and how to debug your programs using the GNU debugger (GDB) and Valgrind will also be covered.By the end of this Linux book, you will be able to develop your own system programs for Linux, including daemons, tools, clients, and filters.What You Will Learn: Discover how to write programs for the Linux system using a wide variety of system callsDelve into the working of POSIX functionsUnderstand and use key concepts such as signals, pipes, IPC, and process managementFind out how to integrate programs with a Linux systemExplore advanced topics such as filesystem operations, creating shared libraries, and debugging your programsGain an overall understanding of how to debug your programs using ValgrindWho this book is for: This book is for anyone who wants to develop system programs for Linux and gain a deeper understanding of the Linux system. The book is beneficial for anyone who is facing issues related to a particular part of Linux system programming and is looking for specific recipes or solutions.

9 特價2018
立即代訂
下次再買

Java

Andy,Vickler  著
Ingram 出版
2021/06/16 出版

Simplicity sets this book apart from all the others. This book contains proven strategies to learn Java programming in a short time. The market is replete with Java books, but the problem is that they are written in a complex and difficult to understand manner. In this book, you'll be able to easily understand each line of code with added explanations and comments for each code.Unlike many other authors, I have taken great care in producing the codes, ensuring they are all functional. However, you need to install the Eclipse compiler and configure it before practicing the codes.Coding is a fun and productive activity if you are not just reading it. I encourage you to take the code samples in the book, edit them per your choice, and run them in a compiler to see what output you can produce after the changes to the code. The more you do the edits, the better you will be at coding in Java Swing. This is one of the best languages to do front-end programming. You will enjoy it when you start producing the results of your choice.Are you interested in learning the ins and outs of backend development? Have you learned the basics of the Java computer programming language and want to take your learning further? Then you've picked up the right guide.Backend programming is not the easiest, nor is it the hardest part of developing a web application. However, it is an incredibly satisfying part. Backend development is all about making a web application work; it's the ins and outs of the server-side of the application, what the user sees, how they can interact with it, and much more.

9 特價1531
立即代訂
下次再買

Introduction to Python for Kids

Apress 出版
2021/06/15 出版

Want to create cool games and apps to impress your friends (or yourself), but not sure where to start? Or, have you tried your hand at programming, but got utterly bored after combing through hundreds of pages of dry text? Then you've come to the right place! This book is the perfect blend of education and fun for kids 8 years and above looking to learn the magic of Python, one of the easiest and most powerful programming languages around, all while solving fun puzzles and building your own projects on the way. Yes, there'll be chapters on the fundamentals of Python, such as variables, numbers, strings, automation with conditions, loops and functions, objects, and files. But, early on in the book you'll get started with Turtle, a Python package that was custom-made for kids like you. It lets you literally draw and animate on your computer! Every concept will be interspersed with a fun mini project with Turtle, so you'll never get bored. Once you get the fundamentals down, you'll dive right into Tkinter and Pygame, more fun Python packages (goodbye theory!) and you'll learn all about creating apps and games like the ones you see and use every day (bouncing ball, temperature converter, calculator, rock-paper-scissors, and so much more!). There are also four capstone projects at the end of the book that convert everything you've learned so far into full-blown apps and games that you can show off to your friends, parents, and even teachers! You'll be creating a snake game with Turtle, a tic tac toe game with Tkinter, a full-fledged paint app, again with Tkinter, and finally, a classic space shooters game with Pygame (the cherry on top). Every project chapter will be accompanied with the logic behind the game/app and an explanation on how you've arrived at the logic. You'll develop strong problem solving skills that'll help you create future projects on your own. There are also two chapters dedicated to just creating fun mini projects and puzzles, one of them placed in the middle of the book to give you a welcome break from all the learning. The book ends with an overview on web development with Python and ideas for more fun projects and puzzles you can solve on your own. Become the "most likely to succeed" kid in your grade while having the most fun getting there! What You'll Learn Gain a gentle, but thorough introduction into the world of programming and Python Create programs and solve problems with core Python concepts Build mini projects and capstone projects (showcase worthy) with Turtle, Tkinter, and Pygame Develop programming skills while doing the puzzles and activities described in the book Who This Book Is For Kids 8 years and above.

9 特價1539
立即代訂
下次再買

Server-Side Swift with Vapor (Third Edition)

Tim,Condon  著
Ingram 出版
2021/06/15 出版

Learn How to Use Swift on the Server!Server Side Swift with Vapor introduces you to the world of server development with the added bonus of using Swift. You'll learn how to build APIs, web sites, databases, application servers and use off site hosting solutions such as Heroku and AWS. You'll use many of Vapor's modules such as Fluent, Vapor's ORM, and Leaf, the templating engine for building web pages.Who This Book Is ForThis book is for iOS developers who already know the basics of iOS and Swift development and want to transfer that knowledge to writing server based applications.Topics Covered in Server Side Swift with Vapor: - HTTP Learn the basics of how to make requests to and from servers.- Fluent Learn how to use Fluent to save and manage your models in databases.- Controllers Learn how to use controllers to route your requests and responses.- Leaf Learn how Vapor's Leaf module and its templating language allow you to build dynamic web sites directly.- Middleware Learn how built-in Vapor modules can assist with common tasks such as validating users, settings required response headers, serving static files and more.One thing you can count on: After reading this book, you'll be prepared to write your own server-side applications using Vapor and, of course, Swift.

9 特價2538
立即代訂
下次再買

Entity Framework Core in Action, Second Edition

Jon P,Smith  著
Ingram 出版
2021/06/13 出版

Entity Framework Core in Action, Second Edition teaches you to write flawless database interactions for .NET applications. Summary Entity Framework Core in Action, Second Edition is an in-depth guide to reading and writing databases with EF Core. Revised from the bestselling original edition, it's filled with over 100 diagrams, code snippets, and examples--including building and scaling your own bookselling web application. Learn from author Jon Smith's extensive experience working with EF Core in production, as you discover time-saving patterns and best practices for security, performance tuning, and unit testing. All of the book's code is available on GitHub. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology Entity Framework radically simplifies data access in .NET applications. This easy-to-use object-relational mapper (ORM) lets you write database code in pure C#. It automatically maps classes to database tables and enables queries with standard LINQ commands. It even generates SQL, so you don't have to! About the book Entity Framework Core in Action, Second Edition teaches you to write flawless database interactions for .NET applications. Following relevant examples from author Jon Smith's extensive experience, you'll progress quickly from EF basics to advanced techniques. In addition to the latest EF features, this book addresses performance, security, refactoring, and unit testing. This updated edition also contains new material on NoSQL databases. What's inside Configure EF to define every table and column Update your schema as your app grows Integrating EF with existing C# application Write and test business logic for database access Applying a Domain-Driven Design to EF Core Getting the best performance out of EF Core About the reader For .NET developers familiar with relational databases. About the author Jon P. Smith is a freelance software developer and architect with a special focus on .NET and Azure. Table of Contents PART 1 1 Introduction to Entity Framework Core 2 Querying the database 3 Changing the database content 4 Using EF Core in business logic 5 Using EF Core in ASP.NET Core web applications 6 Tips and techniques for reading and writing with EF Core PART 2 7 Configuring nonrelational properties 8 Configuring relationships 9 Handling database migrations 10 Configuring advanced features and handling concurrency conflicts 11 Going deeper into the DbContext PART 3 12 Using entity events to solve business problems 13 Domain-Driven Design and other architectural approaches 14 EF Core performance tuning 15 Master class on performance-tuning database queries 16 Cosmos DB, CQRS, and other database types 17 Unit testing EF Core applications

9 特價2969
立即代訂
下次再買

Web development

Andy,Vickler  著
Ingram 出版
2021/06/12 出版

Build Websites with Style !A practical and easy introduction to CSS coding.The world is changing fast. The Covid-19 pandemic has taught us that the world should go online. All the products and services have turned the tables on physical work and sales. These changes have made it necessary to learn to build websites. Whether you are learning CSS coding to build your own website or you are a professional web designer, this book will help you learn CSS coding faster. I have worked hard to create live code samples for you to try, edit, and produce the desired results for your web page. I have included step-by-step instructions to make the learning curve smooth and digestible. CSS is all about taking care of the little things like width, length, margins, and padding. If you master the art by practicing the codes in this book, you will be able to design a visually amazing and responsive website, which will raise your business's revenue overnight. This book is filled with easy coding samples and step-by-step instructions to help you learn CSS coding.In this book you'll discover how to utilize the following: Internal & External CSS sheetsBackgroundsMargins & PaddingBox PropertiesDropdown Menus & FormsWebpage layoutsAlignmentsColors, Fonts Styles, Display PropertiesCSS tables and listsIf you've always dreamed of creating beautiful, easy to navigate web pages, then now is your chance to learn.

9 特價987
立即代訂
下次再買

Android Studio 4.2 Development Essentials - Java Edition

Neil,Smyth  著
Ingram 出版
2021/06/11 出版

Fully updated for Android Studio 4.2, the goal of this book is to teach the skills necessary to develop Android-based applications using the Java programming language.Beginning with the basics, this book provides an outline of the steps necessary to set up an Android development and testing environment.An overview of Android Studio is included covering areas such as tool windows, the code editor, and the Layout Editor tool. An introduction to the architecture of Android is followed by an in-depth look at the design of Android applications and user interfaces using the Android Studio environment.Chapters are also included covering the Android Architecture Components including view models, lifecycle management, Room database access, the Database Inspector, app navigation, live data, and data binding.More advanced topics such as intents are also covered, as are touch screen handling, gesture recognition, and the recording and playback of audio. This edition of the book also covers printing, transitions, cloud-based file storage, and foldable device support.The concepts of material design are also covered in detail, including the use of floating action buttons, Snackbars, tabbed interfaces, card views, navigation drawers, and collapsing toolbars.Other key features of Android Studio 4.2 and Android are also covered in detail including the Layout Editor, the ConstraintLayout and ConstraintSet classes, MotionLayout Editor, view binding, constraint chains, barriers, and direct reply notifications.Chapters also cover advanced features of Android Studio such as App Links, Dynamic Delivery, the Android Studio Profiler, Gradle build configuration, and submitting apps to the Google Play Developer Console.Assuming you already have some programming experience, are ready to download Android Studio and the Android SDK, have access to a Windows, Mac, or Linux system, and ideas for some apps to develop, you are ready to get started.

9 特價2156
立即代訂
下次再買

Web development

Andy,Vickler  著
Ingram 出版
2021/06/07 出版

Are you interested in going back to the basics? Do you want to learn how to develop web pages the old way? Then welcome to this guide.In the same way that a building can only be as strong as its foundation, a webpage can only be as good as the bits and pieces that hold it together. In this case, we're talking about HTML.Hyper Text Markup Language, HTML is the glue that ensures a web page is held together and can be used on many different browsers and devices successfully. It also provides the structure needed to expand your webpages using JavaScript and CSS.This guide focuses purely on HTML, and here's what you can expect to learn: - What HTML is and how it works- How to use an HTML text editor- The HTML building blocks - attributes, elements, and tags- How to format your HTML- How to use heading, paragraph, and phrase tags- How to insert links, images, and tables- What HTML lists are- Using HTML classes, frames, and iFrames- Html Comments and File Paths- What's in the HTML head- Techniques for layout and design- How to use the HTML entities, charset, and symbols- How to add HTML backgrounds, colors, and fonts- How to create a webpage from start to finishAnd much more!HTML is the backbone of any website, and it makes perfect sense to learn how to code in HTML before you try anything fancier.

9 特價982
立即代訂
下次再買

Egyptian Language

Ingram 出版
2021/06/02 出版
9 特價684
立即代訂
下次再買

Data Science Fundamentals Pocket Primer

Ingram 出版
2021/06/02 出版

As part of the best-selling Pocket Primer series, this book is designed to introduce the reader to the basic concepts of data science using Python 3 and other computer applications. It is intended to be a fast-paced introduction to some basic features of data analytics and also covers statistics, data visualization, linear algebra, and regular expressions. The book includes numerous code samples using Python, NumPy, R, SQL, NoSQL, and Pandas. Companion files with source code and color figures are available. FEATURES: Includes a concise introduction to Python 3 and linear algebraProvides a thorough introduction to data visualization and regular expressionsCovers NumPy, Pandas, R, and SQLIntroduces probability and statistical conceptsFeatures numerous code samples throughoutCompanion files with source code and figuresThe companion files are available online by emailing the publisher with proof of purchase at info@merclearning.com.

9 特價2050
立即代訂
下次再買

Scala CookbookRecipes for Object-Oriented and Functional Programming

Ingram 出版
2021/06/01 出版

Save time and trouble building object-oriented, functional, and concurrent applications with Scala. The latest edition of this comprehensive cookbook is packed with more than 250 ready-to-use recipes and 1,000 code examples to help you solve the most common problems when working with Scala 3 and its popular libraries. Scala changes the way you think about programming--and that's a good thing. Whether you're working on web, big data, or distributed applications, this cookbook provides recipes based on real-world scenarios for both experienced Scala developers and programmers just learning to use this JVM language. Author Alvin Alexander includes practical solutions from his experience using Scala for component-based, highly scalable applications that support concurrency and distribution. Recipes cover: Strings, numbers, and control structures Classes, methods, objects, traits, packaging, and imports Functional programming techniques Scala's wealth of collections classes and methods Building and publishing Scala applications with sbt Actors and concurrency with Scala Future and Akka Typed Popular libraries, including Spark, Scala.js, Play Framework, and GraalVM Types, such as variance, givens, intersections, and unions Best practices, including pattern matching, modules, and functional error handling

9 特價2736
立即代訂
下次再買

JavaScript Cookbook

Adam D,Scott  著
Ingram 出版
2021/06/01 出版

Why reinvent the wheel every time you run into a problem with JavaScript? This cookbook is chock-full of code recipes for common programming tasks, along with techniques for building apps that work in any browser. You'll get adaptable code samples that you can add to almost any project--and you'll learn more about JavaScript in the process. The recipes in this book take advantage of the latest features in ECMAScript 2020 and beyond and use modern JavaScript coding standards. You'll learn how to: Set up a productive development environment with a code editor, linter, and test server Work with JavaScript data types, such as strings, arrays, and BigInts Improve your understanding of JavaScript functions, including arrow functions, closures, and generators Apply object-oriented programming concepts like classes and inheritance Work with rich media in JavaScript, including audio, video, and SVGs Manipulate HTML markup and CSS styles Use JavaScript anywhere with Node.js Access and manipulate remote data with REST, GraphQL, and Fetch Get started with the popular Express application-building framework Perform asynchronous operations with Promises, async/await, and web workers

9 特價2736
立即代訂
下次再買

Robotic Prozessautomatisierung in der Industrie 4.0 mit Hilfe von k羹nstlicher Intelligenz und Blockchain. Technische M繹glichkeiten

Ingram 出版
2021/06/01 出版

Akademische Arbeit aus dem Jahr 2019 im Fachbereich Informatik - Wirtschaftsinformatik, Note: 2,0, Wilhelm B羹chner Hochschule Private Fernhochschule Darmstadt, Sprache: Deutsch, Abstract: In dieser Arbeit soll mit Hilfe einer Studie folgende Fragestellung bearbeitet werden: In der ?ra der Industrie 4.0, welche technische M繹glichkeiten der Robotic Prozessautomatisierung mit Hilfe von k羹nstlicher Intelligenz und Blockchain erweitert werden k繹nnen? In der ?ra der vierten industriellen Revolution sind die gro?en Flaggschiff-Technologien k羹nstliche Intelligenz und Blockchain. Eine Abfrage in Google Trends l瓣sst erkennen, dass Robotic Process Automation in der Wirtschaft mit dem Wind segelt. Robotic Processautomatisierung, die auf rein deterministischer Basis arbeitet, hat inh瓣rente Einschr瓣nkungen, die es nicht erlauben, Prozesse, die mit unstrukturierten Daten, probabilistischen Entscheidungen oder mit Lern-, Analyse- oder Authentifizierungsaktivit瓣ten umgehen, automatisiert zu werden. Diese unz瓣hligen Einschr瓣nkungen verhindern die vollst瓣ndige Automatisierung einer gro?en Anzahl von Gesch瓣ftsprozessen, die teilweise oder gar nicht automatisiert werden k繹nnen. In dieser Arbeit schlagen wir einen methodischen Ansatz vor, auf dessen Grundlage wir eine Fallstudie durchf羹hren, um die Technischen F瓣higkeiten der Robotic Processautomatisierung durch k羹nstliche Intelligenz und Blockchain zu erweitern.

9 特價2517
立即代訂
下次再買

Android Studio 4.2 Development Essentials - Kotlin Edition

Neil,Smyth  著
Ingram 出版
2021/05/31 出版

Fully updated for Android Studio 4.2, the goal of this book is to teach the skills necessary to develop Android-based applications using the Kotlin programming language.Beginning with the basics, this book provides an outline of the steps necessary to set up an Android development and testing environment followed by an introduction to programming in Kotlin including data types, flow control, functions, lambdas, and object-oriented programming.An overview of Android Studio is included covering areas such as tool windows, the code editor, and the Layout Editor tool. An introduction to the architecture of Android is followed by an in-depth look at the design of Android applications and user interfaces using the Android Studio environment.Chapters are also included covering the Android Architecture Components including view models, lifecycle management, Room database access, the Database Inspector, app navigation, live data, and data binding.More advanced topics such as intents are also covered, as are touch screen handling, gesture recognition, and the recording and playback of audio. This edition of the book also covers printing, transitions, cloud-based file storage, and foldable device support.The concepts of material design are also covered in detail, including the use of floating action buttons, Snackbars, tabbed interfaces, card views, navigation drawers, and collapsing toolbars.Other key features of Android Studio 4.2 and Android are also covered in detail including the Layout Editor, the ConstraintLayout and ConstraintSet classes, MotionLayout Editor, view binding, constraint chains, barriers, and direct reply notifications.Chapters also cover advanced features of Android Studio such as App Links, Dynamic Delivery, the Android Studio Profiler, Gradle build configuration, and submitting apps to the Google Play Developer Console.Assuming you already have some programming experience, are ready to download Android Studio and the Android SDK, have access to a Windows, Mac, or Linux system, and ideas for some apps to develop, you are ready to get started.

9 特價2294
立即代訂
下次再買

Android for Absolute Beginners

Grant,Allen  著
Apress 出版
2021/05/30 出版

Get started as a mobile app developer and learn the art and science of Android app development. With no assumed knowledge about programming languages or Android required, you will gain the key skills for constructing fully functional Android apps for smartphones, tablets, and other devices.You will also build a solid foundation in the Java programming language and the business of creating and releasing software for Android. Along the way you'll get comfortable with Android Studio - the best way to write modern Android apps - before diving into your first Android code. The author spends plenty of time explaining how to build a robust UI with widgets, menus, layouts and more. These components will be the basis of your Android apps and so are covered in depth.Having grasped the basics, you'll move onto what will make your app stand out: sound, music, images, animations, and notifications. Taking these elements and combining them with phone features like calling and sensors, will take your apps to the next level.The final part of the book covers services, events, intents, receivers, files and databases, essential sources of information and functionality for users and your app. In addition, you'll see how to protect your users and their data with permissions and security in examples throughout the bookWhat You Will LearnGet started with Android and build your first apps with itInstall and use the Android Studio IDESet up and manage the app development life cycleMaster the basics of Java and XML required to create Android appsDiscover the strengths and features of the Android APIs and device capabilitiesWho This Book Is For Total beginners who have little or no exposure to software development. This book is also useful for developers who are completely new to Android.

9 特價2394
立即代訂
下次再買

Intuitive Python

David,Muller  著
Pragmatic 出版
2021/05/29 出版

Developers power their projects with Python because it emphasizes readability, ease of use, and access to a meticulously maintained set of packages and tools. The language itself continues to improve with every release: writing in Python is full of possibility. But to maintain a successful Python project, you need to know more than just the language. You need tooling and instincts to help you make the most out of what's available to you. Use this book as your guide to help you hone your skills and sculpt a Python project that can stand the test of time. No matter your experience level or background, Python's batteries-included standard library and rich third-party ecosystem provide a solid foundation to build your projects on. With the right intuition and background knowledge, you can take advantage of all the power Python offers. Take a guided tour of some of Python's high points to craft a project that you can sustain and build on for a long time. Run static analysis tools to detect and eliminate classes of bugs before you run code. Experiment with Python's concurrency model and develop patterns for using Python's thread and process abstractions to their full potential. Introduce yourself to Python's type hinting system: mypy. Download and run third-party Python packages and do so safely without compromising on security. Debug code using Python's built in debugger, and try procedures out in the interactive console. Run your code under new versions of the Python interpreter to unlock performance and usability improvements. All along the way, sharpen your Python instincts so you can keep your code clean and reduce the chance of bugs. Mine Python for all you can by playing to its strengths and embracing patterns that harness its potential. What You Need: The books assumes you have some experience programming in any language (not necessarily Python). To run the code presented in the book, you'll need a Python environment which you can download from https: //www.python.org/downloads

9 特價1333
立即代訂
下次再買

Smaller C

Marc,Loy  著
Ingram 出版
2021/05/28 出版

For makers looking to use the smallest microcontrollers or to wring the highest performance out of larger ones, the C language is still the best option. This practical book provides a solid grounding in C basics for anyone who tinkers with programming microcontrollers. You'll explore the many ways C enables developers and makers to get big results out of tiny devices. Author Marc Loy shows you how to write clean, maintainable C code from scratch. This language and its cousin, C++, are still widely used to write low-level code for device drivers or operating systems. By understanding C syntax and its quirks, you'll gain an enduring computer language literacy that will help you pick up new languages and styles more easily. Learn C fundamentals, such as data types, flow control, and functions Explore memory management including how programs work on small devices Understand answers provided in online forums such as Reddit or Stack Overflow Write efficient, custom C code that's both readable and maintainable Analyze the performance of your code and weigh optimizations Evaluate third-party libraries for use in your own projects Create your own libraries to share with others

9 特價2257
立即代訂
下次再買

Expert Python Programming - Fourth Edition

Packt 出版
2021/05/28 出版

Attain a deep understanding of building, maintaining, packaging, and shipping robust Python applicationsKey Features: Discover the new features of Python, such as dictionary merge, the zoneinfo module, and structural pattern matchingCreate manageable code to run in various environments with different sets of dependenciesImplement effective Python data structures and algorithms to write, test, and optimize codeBook Description: Python is used in a wide range of domains owing to its simple yet powerful nature. Although writing Python code is easy, making it readable, reusable, and easy to maintain can be challenging. Complete with best practices, useful tools, and standards implemented by professional Python developers, this fourth edition will help you in not only overcoming such challenges but also learning Python's latest features and advanced concepts.The book begins with a warm-up, where you will catch-up with the latest Python improvements, syntax elements, and interesting tools to boost your development efficiency. Further, the initial few chapters should allow experienced programmers coming from different languages to safely land in the Python ecosystem.As you progress, you will explore common software design patterns and various programming methodologies, such as event-driven programming, concurrency, and metaprogramming. You will also go through complex code examples and try to solve meaningful problems by bridging Python with C and C++, writing extensions that benefit from the strengths of multiple languages. Finally, you will understand the complete lifetime of any application after it goes live.By the end of the book, you should be proficient in writing efficient and maintainable Python code.What You Will Learn: Explore modern ways of setting up repeatable and consistent Python development environmentsEffectively package Python code for community and production useLearn modern syntax elements of Python programming, such as f-strings, enums, and lambda functionsDemystify metaprogramming in Python with metaclassesWrite concurrent code in PythonExtend and integrate Python with code written in different languagesWho this book is for: The Python programming book is intended for expert programmers who want to learn Python's advanced-level concepts and latest features.Anyone who has basic Python skills should be able to follow the content of the book, although it might require some additional effort from less experienced programmers. It should also be a good introduction to Python 3.9 for those who are still a bit behind and continue to use other older versions.

9 特價2248
立即代訂
下次再買

Programming Scala

Wampler  著
Ingram 出版
2021/05/27 出版

Get up to speed on Scala--the JVM, JavaScript, and natively compiled language that offers all the benefits of functional programming, a modern object model, and an advanced type system. Packed with code examples, this comprehensive book shows you how to be productive with the language and ecosystem right away. You'll learn why Scala is ideal for building today's highly scalable, data-centric applications, while maximizing developer productivity. While Java remains popular and Kotlin has become popular, Scala hasn't been sitting still. This third edition covers the new features in Scala 3.0 with updates throughout the book. Programming Scala is ideal for beginning to advanced developers who want a complete understanding of Scala's design philosophy and features with a thoroughly practical focus. Program faster with Scala's succinct and flexible syntax Dive into basic and advanced functional programming techniques Build killer big data and distributed apps using Scala's functional combinators and tools like Spark and Akka Create concise solutions to challenging design problems with the sophisticated type system, mixin composition with traits, pattern matching, and more

9 特價2736
立即代訂
下次再買

SQL Pocket Guide

Alice,Zhao  著
Ingram 出版
2021/05/27 出版

If you use SQL in your day-to-day work as a data analyst, data scientist, or data engineer, this popular pocket guide is your ideal on-the-job reference. You'll find many examples that address the language's complexities, along with key aspects of SQL used in Microsoft SQL Server, MySQL, Oracle Database, PostgreSQL, and SQLite. In this updated edition, author Alice Zhao describes how these database management systems implement SQL syntax for both querying and making changes to a database. You'll find details on data types and conversions, regular expression syntax, window functions, pivoting and unpivoting, and more. Quickly look up how to perform specific tasks using SQL Apply the book's syntax examples to your own queries Update SQL queries to work in five different database management systems NEW: Connect Python and R to a relational database NEW: Look up frequently asked SQL questions in the "How Do I?" chapter

9 特價1231
立即代訂
下次再買

C The Basics

Notion Press  著
Ingram 出版
2021/05/25 出版

C - The Basics have been established explicitly to meet the necessity of students keen to know all the basics of C-Programming and easy coding. Brief solutions to programs and exercises to practice on each chapter are offered here. It explains the widely misunderstood programming syntax and semantics. This book enlightens the concepts from elementary to advanced levels with an emphasis on the introduction to programming. It covers arrays, strings, functions, pointers, and files. Several solved examples make the content more relevant and improve the learning outcomes. It is a textbook for the first-level course on Computers and Programming. The whole emphasis of this book is to enhance the skills in Program Development instead of providing the readers with handy material.

9 特價549
立即代訂
下次再買

Practical Vaadin

Apress 出版
2021/05/24 出版

Implement web applications in Java using the open-source Vaadin framework version 20 and later. This easy-to-follow book covers all the key concepts and steps to become competent with modern versions of Vaadin. The book covers everything from setting up the development environment to implementing advanced features such as Server Push and database connectivity. The book helps you become proficient in the Vaadin framework, prepare for Vaadin certifications, and shows you how to apply the power of the Java programming language in developing applications for the web. Author Alejandro Duarte starts with an introduction to web development and its key technologies. He then describes and demonstrates how Vaadin simplifies web development by allowing you to implement web graphical user interfaces using the Java programming language without having to code in JavaScript or HTML. Once a solid foundation on the key web and Vaadin concepts is established, Duarte digs deeper into explaining layouts and user interface components such as combo boxes, dialogs, upload fields, and data grids. He also covers topics such as styling with CSS, data binding, client-side views implementation with TypeScript, and integration with Spring Boot and Jakarta EE.What You Will LearnBuild web applications in Java using Servlet technology and VaadinCombine layouts and user interface components to create views in JavaConnect values in UI components to Java objects in the server through data bindingCustomize display styles and add responsive capabilities using CSSDisplay tabular data using the Grid componentImplement client-side views using TypeScriptIntegrate Vaadin applications with Spring Boot and Jakarta EEConnect Vaadin applications to SQL databasesWho This Book Is ForDevelopers with a basic or higher knowledge of Java programming who want to build on their Java skills to create web graphical user interfaces, Java developers who want to create web applications without having to code in JavaScript, and developers who are preparing to take and pass Vaadin certification exams

9 特價2223
立即代訂
下次再買

PHP in Easy Steps

Mike,McGrath  著
Ingram 出版
2021/05/20 出版

PHP in easy steps, 4th edition demonstrates every aspect of the language you'll need to produce professional web programming results. Its examples provide clear syntax-highlighted code, which is freely downloadable, showing PHP language basics including variables, arrays, logic, looping, functions and classes. Install a free web server and the PHP interpreter to create an environment in which you can produce your own data-driven web pages.Write PHP server-side scripts; master PHP operators and control structures; process HTML form data; get cookies and session data; access Web Services APIs over HTTP... and much more! PHP in easy steps, 4th edition is ideal for PHP newbies who want to quickly learn the fundamentals of server-side programming with PHP and create interactive web pages. Also, useful for PHP pros who want to grasp the new PHP 8 features and achieve optimum performance! Updated for PHP 8.

9 特價581
立即代訂
下次再買

React 17 Design Patterns and Best Practices - Third Edition

Packt 出版
2021/05/19 出版

Build scalable, maintainable, and powerful React web apps with design patterns and insightful best practicesKey Features: Make the most of design patterns in React - including render props and controlled and uncontrolled inputsMaster React Hooks with the help of this updated third editionWork through examples that can be used to create reusable code and extensible designsBook Description: Filled with useful React patterns that you can use in your projects straight away, this book will help you save time and build better web applications with ease.React 17 Design Patterns and Best Practices is a hands-on guide for those who want to take their coding skills to a new level. You'll spend most of your time working your way through the principles of writing maintainable and clean code, but you'll also gain a deeper insight into the inner workings of React.As you progress through the chapters, you'll learn how to build components that are reusable across the application, how to structure applications, and create forms that actually work. Then you'll build on your knowledge by exploring how to style React components and optimize them to make applications faster and more responsive.Once you've mastered the rest, you'll learn how to write tests effectively and how to contribute to React and its ecosystem.By the end of this book, you'll be able to avoid the process of trial and error and developmental headaches. Instead, you'll be able to use your new skills to efficiently build and deploy real-world React web applications you can be proud of.What You Will Learn: Get to grips with the techniques of styling and optimizing React componentsCreate components using the new React HooksUse server-side rendering to make applications load fasterGet up to speed with the new React Suspense technique and using GraphQL in your projectsWrite a comprehensive set of tests to create robust and maintainable codeBuild high-performing applications by optimizing componentsWho this book is for: This book is for web developers who want to understand React better and apply it to real-life app development. You'll need an intermediate-level experience with React and JavaScript before you get started.

9 特價2523
立即代訂
下次再買

Pro Java Microservices with Quarkus and Kubernetes

Apress 出版
2021/05/19 出版

Build and design microservices using Java and the Red Hat Quarkus Framework. This book will help you quickly get started with the features and concerns of a microservices architecture. It will introduce Docker and Kubernetes to help you deploy your microservices. You will be guided on how to install the appropriate tools to work properly. For those who are new to enterprise development using Quarkus, you will be introduced to its core principles and main features through a deep step-by-step tutorial. For experts, this book offers some recipes that illustrate how to split monoliths and implement microservices and deploy them as containers to Kubernetes. By the end of reading this book, you will have practical hands-on experience of building microservices using Quarkus and you will master deploying them to Kubernetes. What You Will Learn Work with Quarkus and GraalVMSplit a monolith using the domain-driven design approachImplement the cloud and microservices patternsRethink the deployment processIntroduce containerization, Docker, and Kubernetes to your toolkitBoost microservices efficiency and performance with AzurePlay with Quarkus and distributed application runtimes Who This Book Is For Java developers who want to build microservices using Red Hat Quarkus and who want to deploy them in Kubernetes.

9 特價2736
立即代訂
下次再買

Learn Bosque Programming

Packt 出版
2021/05/18 出版

Discover the benefits of regularized programming by implementing Bosque to build a variety of reliable appsKey Features: Get up and running with the Bosque programming language and use it to build better softwareStreamline your app development and improve productivity using Bosque programmingEliminate sources of complexity such as loops, recursion, and invariants to develop quality productsBook Description: Bosque is a new high-level programming language inspired by the impact of structured programming in the 1970s. It adopts the TypeScript syntax and ML semantics and is designed for writing code that is easy to reason about for humans and machines. With this book, you'll understand how Bosque supports high productivity and cloud-first development by removing sources of accidental complexity and introducing novel features.This short book covers all the language features that you need to know to work with Bosque programming. You'll learn about basic data types, variables, functions, operators, statements, and expressions in Bosque and become familiar with advanced features such as typed strings, bulk algebraic data operations, namespace declarations, and concept and entity declarations. This Bosque book provides a complete language reference for learning to program with Bosque and understanding the regularized programming paradigm. You'll also explore real-world examples that will help you to reinforce the knowledge you've acquired. Additionally, you'll discover more advanced topics such as the Bosque project structure and contributing to the project.By the end of this book, you'll have learned how to configure the Bosque environment and build better and reliable software with this exciting new open-source language.What You Will Learn: Find out what the Bosque project isIdentify accidental complexity in code and how to overcome it with BosqueUnderstand the principles of the regularized programming paradigmInstall and configure the Bosque environmentGet hands-on experience using the Bosque language and its key featuresRecognize the advantages of explicit code intermediate representation designWho this book is for: This book is for experienced developers and early adopters who are interested in learning a new, mindset-changing programming language. You'll also find this book useful if you know TypeScript or JavaScript programming and want to understand the advantages of Bosque compared to other programming languages. Experience with any programming language and knowledge of various programming paradigms such as structured programming and functional programming are required to get started with this book.

9 特價2018
立即代訂
下次再買

Accelerator Programming Using Directives

Springer 出版
2021/05/17 出版

This book constitutes the proceedings of the 7th International Workshop on Accelerator Programming Using Directives, WACCPD 2020, which took place on November 20, 2021. The workshop was initially planned to take place in Atlanta, GA, USA, and changed to an online format due to the COVID-19 pandemic.WACCPD is one of the major forums for bringing together users, developers, and the software and tools community to share knowledge and experiences when programming emerging complex parallel computing systems. The 5 papers presented in this volume were carefully reviewed and selected from 7 submissions. They were organized in topical sections named: OpenMP; OpenACC; and Domain-specific Solvers.

9 特價2870
立即代訂
下次再買

Keycloak - Identity and Access Management for Modern Applications

Packt 出版
2021/05/14 出版

Learn to leverage the advanced capabilities of Keycloak, an open-source identity and access management solution, to enable authentication and authorization in applicationsKey Features: Get up to speed with Keycloak, OAuth 2.0, and OpenID Connect using practical examplesConfigure, manage, and extend Keycloak for optimized securityLeverage Keycloak features to secure different application typesBook Description: Implementing authentication and authorization for applications can be a daunting experience, often leaving them exposed to security vulnerabilities. Keycloak is an open-source solution for identity management and access management for modern applications, which can make a world of difference if you learn how to use it.Keycloak, helping you get started with using it and securing your applications. Complete with hands-on tutorials, best practices, and self-assessment questions, this easy-to-follow guide will show you how to secure a sample application and then move on to securing different application types. As you progress, you will understand how to configure and manage Keycloak as well as how to leverage some of its more advanced capabilities. Finally, you'll gain insights into securely using Keycloak in production.By the end of this book, you will have learned how to install and manage Keycloak as well as how to secure new and existing applications.What You Will Learn: Understand how to install, configure, and manage KeycloakSecure your new and existing applications with KeycloakGain a basic understanding of OAuth 2.0 and OpenID ConnectUnderstand how to configure Keycloak to make it ready for production useDiscover how to leverage additional features and how to customize Keycloak to fit your needsGet to grips with securing Keycloak servers and protecting applicationsWho this book is for: Developers, sysadmins, security engineers, or anyone who wants to leverage Keycloak and its capabilities for application security will find this book useful. Beginner-level knowledge of app development and authentication and authorization is expected.

9 特價2523
立即代訂
下次再買

Micro

Ingram 出版
2021/05/14 出版

The BBC micro: bit is capable of taking on a variety of roles including that of a powerful IoT device. In order to gain full access to its features and to external devices, however, you need to use C which delivers the speed which is crucial when you are writing programs to communicate with the outside world.The new V2 version of the micro: bit is fully covered in Micro: bit IoT in C, Second Edition, which now uses the highly popular VS Code for offline development. It covers how to get started the easy way by providing downloadable templates for both V1 and V2 of the micro: bit.Having started with the traditional "Blinky" program, the equivalent of "Hello World" for hardware, we are ready to discover how to control the micro: bit's I/O lines, exploring the basis of using the GPIO. For speed, however, we need to work directly with the raw hardware and also master memory mapping, pulse width modulation and other more sophisticated bus types. From here we can start connecting sensors using first the I2C bus, then by implementing a custom protocol for a one-wire bus, and eventually adding eight channels of 12-bit A-to-D with the SPI bus, which involves overcoming some subtle difficulties. We then look at serial connections, one of the oldest ways of connecting devices, but still very useful. The micro: bit lacks WiFi connectivity but using a low-cost device we enable a connection to the Internet via its serial port which allows it to become a server. Next we look at the micro: bit's LED display. This may only be 5x5, but it is very versatile, especially when you use pulse width modulation to vary the brightness level, something we demonstrate in a classic game, written of course in C. The book rounds out with a new chapter on the micro: bit's radio and the V2's sound capabilities.Harry Fairhead has worked with microprocessors, and electronics in general, for many years and is an enthusiastic proponent of the IoT. He is the author of Raspberry Pi IoT in C, which has recently been republished in its second edition, updated for Raspberry Pi 4, and of Raspberry Pi IoT In C With Linux Drivers. He has also co-authored Python versions of these books - Raspberry Pi IoT in Python Using GPIO Zero and Raspberry Pi IoT In Python With Linux Drivers. His own language of choice is C and he has also written Fundamental C: Getting Closer To The Machine and Applying C For The IoT With Linux.

9 特價1478
立即代訂
下次再買

Agile Visualization with Pharo

Apress 出版
2021/05/13 出版

Use the Pharo interactive development environment to significantly reduce the cost of creating interactive visualizations. This book shows how Pharo leverages visualization development against traditional frameworks and toolkits.Agile Visualization with Pharo focuses on the Roassal visualization engine and first presents the basic and necessary tools to visualize data, including an introduction to the Pharo programming language. Once you've grasped the basics, you'll learn all about the development environment offered by Roassal. The book provides numerous ready-to-use examples. You'll work on several applications, including visualizing the training phase of reinforcement learning (a powerful machine learning algorithm) and generating software visualizations from GitHub. This book covers aspects that are relevant for engineers and academics to successfully design and implement interactive visualizations. What You Will LearnImplement agile data visualization using the Pharo programming languageChart, plot, and curve using GrapherBuild and draw graphs using MondrianImplement reinforcement learning (Q-Learning, from scratch) and use visualizations to monitor learning and state explorationUse GitHub Action to generate software visualizations (UML class diagram, test coverage) at each commit Who This Book Is For Programmers with some prior exposure to data visualization and computer vision who may be new to the Pharo programming language. This book is also for those with some Pharo experience looking to apply it to data visualization.

9 特價1539
立即代訂
下次再買

The C++ Project

Ingram 出版
2021/05/08 出版

This book is a companion for learning the C++ programming language. It presents some significant concepts applied to a program implementing a multiple balls collision simulator, which will run in real-time in a multi-thread structure. The book explains the program. The goal is to make possible for the reader the improvement of the program or even application to other fields. Nevertheless, this book is neither a complete nor a simplified course. The objective is to be a complementary tool. Examples extending the program include the simplified simulations of a planet and its satellite and the creation of a fictional universe, which the book's second part implements. The elementary simulation of a satellite launching is also partially implemented and is a challenge to the reader, who must complete it by finding the correct parameters. Therefore, this book is also helpful for teaching and studying physics (Newtonian mechanics). The program had minor changes in this second edition, including a simplified computer virus propagation simulation.

9 特價2052
立即代訂
下次再買

CPython Internals

Anthony,Shaw  著
Ingram 出版
2021/05/06 出版

Get your guided tour through the Python 3.9 interpreter: Unlock the inner workings of the Python language, compile the Python interpreter from source code, and participate in the development of CPython. Are there certain parts of Python that just seem like magic?This book explains the concepts, ideas, and technicalities of the Python interpreter in an approachable and hands-on fashion.Once you see how Python works at the interpreter level, you can optimize your applications and fully leverage the power of Python.By the End of the Book You'll Be Able To: Read and navigate the CPython 3.9 interpreter source code. You'll deeply comprehend and appreciate the inner workings of concepts like lists, dictionaries, and generators.Make changes to the Python syntax and compile your own version of CPython, from scratch. You'll customize the Python core data types with new functionality and run CPython's automated test suite.Master Python's memory management capabilities and scale your Python code with parallelism and concurrency.Debug C and Python code like a true professional. Profile and benchmark the performance of your Python code and the runtime.Participate in the development of CPython and know how to contribute to future versions of the Python interpreter and standard library. How great would it feel to give back to the community as a "Python Core Developer?"With this book you'll cover the critical concepts behind the internals of CPython and how they work with visual explanations as you go along.Each page in the book has been carefully laid out with beautiful typography, syntax highlighting for code examples.About the Author: Anthony Shaw is a CPython contributor and a PyCon speaker. He has a B.Sc. in Computer Science and over 8 years of experience working with Python. Anthony is also a Fellow of the Python Software Foundation and member of the Open-Source Apache Foundation.What Python Developers Say About The Book: "It's the book that I wish existed years ago when I started my Python journey. [...] After reading this book your skills will grow and you will be able solve even more complex problems that can improve our world."- Carol Willing, CPython Core Developer & Member of the CPython Steering Council"CPython Internals is a great (and unique) resource for anybody looking to take their knowledge of Python to a deeper level."- Dan Bader, Author of Python Tricks"There are a ton of books on Python which teach the language, but I haven't really come across anything that would go about explaining the internals to those curious minded."- Milan Patel, Vice President at (a major investment bank)"I can recommend CPython Internals to anyone who wants to get going with hacking on CPython."- Guido van Rossum, Creator of Python

9 特價1692
立即代訂
下次再買

Python 3 and Data Analytics Pocket Primer

Ingram 出版
2021/05/05 出版

As part of the best-selling Pocket Primer series, this book is designed to introduce the reader to the basic concepts of data analytics using Python 3. It is intended to be a fast-paced introduction to some basic features of data analytics and also covers statistics, data visualization, and data cleaning. The book includes numerous code samples using NumPy, Pandas, Matplotlib, Seaborn, and features an appendix on regular expressions. Companion files with source code and color figures are available online by emailing the publisher with proof of purchase at info@merclearning.com. FEATURES: Includes a concise introduction to Python 3Provides a thorough introduction to data and data cleaningCovers NumPy and PandasIntroduces statistical concepts and data visualization (Matplotlib/Seaborn)Features an appendix on regular expressionsIncludes companion files with source code and figures

9 特價1366
立即代訂
下次再買

Programming Fundamentals Using Java

Ingram 出版
2021/05/05 出版

Designed as a Java-based textbook for beginning programmers, this book uses game programming as a central pedagogical tool to improve student engagement, learning outcomes, and retention. The new edition includes updating the GUI interface chapters from Swing based to FX based programs. The game programming is incorporated into the text in a way that does not compromise the amount of material traditionally covered in a basic programming or advanced Java programming course, and permits instructors who are not familiar with game programming and computer graphic concepts to realize the pedagogical advantages of using game programming. The book assumes the reader has no prior programming experience. The companion files and instructor resources are available online by emailing the publisher with proof of purchase at info@merclearning.com. FEATURES: Features content in compliance with the latest ACM/IEEE computer science curriculum guidelinesIntroduces the basic programming concepts such as strings, loops, arrays, graphics, functions, classes, etcIncludes updating the GUI interface chapters (Chapters 11 and 12) from Swing based to FX basedContains material on programming of mobile applications and several simulations that graphically depict unseen runtime processes4 color throughout with game demos on the companion files Instructor's resources available upon adoption

9 特價3796
立即代訂
下次再買

Understanding JPA 2.2

Ingram 出版
2021/05/04 出版

Applications are made up of business logic, interaction with other systems, user interfaces etc. and data. Most of the data that our applications manipulate have to be stored in datastores, retrieved, processed and analysed. If this datastore is a relational database and you use an object-oriented programming language such as Java, then you should have a look at JPA. JPA is an Object-Relational Mapping tool that maps Java objects to relational databases and allows query operations. In this fascicle, you will learn Java Persistence API, its annotations for mapping entities, as well as the Java Persistence Query Language and entity life cycle and a few advanced topics such as integrating JPA with other frameworks (Bean Validation, JTA, CDI, Spring).

9 特價1057
立即代訂
下次再買

Understanding Bean Validation 2.0

Ingram 出版
2021/05/04 出版

Validating data is a common task that Java developers have to do and it is spread throughout all layers (from client to database) of an application. This common practice is time-consuming, error prone, and hard to maintain in the long run. Besides, some of these constraints are so frequently used that they could be considered standard (checking for a null value, size, range, etc.). It would be good to be able to centralise these constraints in one place and share them across layers.That's when Bean Validation comes into play.In this fascicle, you will learn Bean Validation and use its different APIs to apply constraints on a bean, validate all sorts of constraints, write your own constraints and a few advanced topics such as integrating Bean Validation with other frameworks (JPA, JAX-RS, CDI, Spring).

9 特價634
立即代訂
下次再買

LLVM Techniques, Tips, and Best Practices Clang and Middle-End Libraries

Min-Yih,Hsu  著
Packt 出版
2021/05/03 出版

Learn how you can build the next big programming language, compiler, or source code analyzer using LLVM and ClangKey FeaturesExplore Clang, LLVM's middle-end and backend, in a pragmatic wayDevelop your LLVM skillset and get to grips with a variety of common use casesEngage with real-world LLVM development through various coding examplesBook DescriptionEvery programmer or engineer, at some point in their career, works with compilers to optimize their applications. Compilers convert a high-level programming language into low-level machine-executable code. LLVM provides the infrastructure, reusable libraries, and tools needed for developers to build their own compilers. With LLVM's extensive set of tooling, you can effectively generate code for different backends as well as optimize them.In this book, you'll explore the LLVM compiler infrastructure and understand how to use it to solve different problems. You'll start by looking at the structure and design philosophy of important components of LLVM and gradually move on to using Clang libraries to build tools that help you analyze high-level source code. As you advance, the book will show you how to process LLVM IR - a powerful way to transform and optimize the source program for various purposes. Equipped with this knowledge, you'll be able to leverage LLVM and Clang to create a wide range of useful programming language tools, including compilers, interpreters, IDEs, and source code analyzers.By the end of this LLVM book, you'll have developed the skills to create powerful tools using the LLVM framework to overcome different real-world challenges.What You Will Learn Find out how LLVM's build system works and how to reduce the building resourceGet to grips with running custom testing with LLVM's LIT frameworkBuild different types of plugins and extensions for ClangCustomize Clang's toolchain and compiler flagsWrite LLVM passes for the new PassManagerDiscover how to inspect and modify LLVM IRUnderstand how to use LLVM's profile-guided optimizations (PGO) frameworkCreate custom compiler sanitizersWho this book is forThis book is for software engineers of all experience levels who work with LLVM. If you are an academic researcher, this book will help you learn useful LLVM skills in a short time and enable you to build your prototypes and projects quickly. Programming language enthusiasts will also find this book useful for building a new programming language with the help of LLVM.

9 特價2248
立即代訂
下次再買

Partnering with Hms: A Guide for App Developers

Xihai,Wang  著
Ingram 出版
2021/04/29 出版

This is the first book to introduce the Huawei Mobile Services (HMS) ecosystem. It gives developers a basic understanding of the ecosystem and how to leverage kit and tool capabilities to make their apps better.

9 特價3496
立即代訂
下次再買

Python Application Programming

Ingram 出版
2021/04/28 出版

The objective of the book is to provide learners an insight into Python programming, and develop programming skills to manage the development of software systems. It covers programming environment, important instructions, data representations, intermediate level features, Object Oriented Programming and file data processing of Python. This book lays the foundation to develop web applications, Machine Learning, and Artificial Intelligence-based applications and tools, Data Science and Data Visualization applications.

9 特價3960
立即代訂
下次再買

Programming The Raspberry Pi Pico In C

Ingram 出版
2021/04/28 出版

The Raspberry Pi Pico is a remarkable microcontroller. It has a power and sophistication that would have been unthinkable just a short time ago. For the sort of jobs it is ideal for, it has plenty of processing power and enough memory to make tasks that would have once required careful planning, relatively easy. Instead of struggling with the machine, you can now focus on getting a good implementation of your algorithms. To enjoy all of its power and sophistication there is no better language than C. It wastes none of the power and it gives you what you need to get at the new features. However, getting started with the Pico with C is no easy feat, which is what motivated this book about creating programs so that testing and debugging is easy.Programming the Raspberry Pi Pico in C uses the highly popular VS Code as its development environment and shows how to use a Raspberry Pi or a desktop PC running Windows as your development machine. The purpose of the book is to reveal what you can do with the Pico's GPIO lines together with widely used sensors, servos and motors and ADCs. After covering the GPIO, outputs and inputs, events and interrupts, it gives you hands-on experience of PWM (Pulse Width Modulation), the SPI bus, the I2C bus and the 1-Wire bus. One of the key advantages of the Pico is its PIO (Programmable I/O) and while this is an advanced feature it is included in this book. After finding out how the PIO works, we apply it to writing a PIO program for the DHT22 and the 1-Wire bus. One current drawback of the Pico it is that it doesn't have a network connection. To solve this problem there is a chapter on using the low-cost ESP8266 as a WiFi client and web server. The two devices together make the Pico a true IoT device. Harry Fairhead has a hardware background and, having worked with microprocessors and electronics in general, for many years, he is an enthusiastic proponent of the IoT and embedded computing. He is the author of two books intended for C programmers, Fundamental C: Getting Closer To The Machine and Applying C For the IoT With Linux and four books on the using the Raspberry Pi in an IoT context, two using C and two using Python. He is now working on a Python version of this book for the Pico.

9 特價1692
立即代訂
下次再買

Logic Programming

Mit Press 出版
2021/04/23 出版

The themes of the 1997 conference are new theoretical and practical accomplishments in logic programming, new research directions where ideas originating from logic programming can play a fundamental role, and relations between logic programming and other fields of computer science.The annual International Logic Programming Symposium, traditionally held in North America, is one of the main international conferences sponsored by the Association of Logic Programming. The themes of the 1997 conference are new theoretical and practical accomplishments in logic programming, new research directions where ideas originating from logic programming can play a fundamental role, and relations between logic programming and other fields of computer science. Topics include theoretical foundations, constraints, concurrency and parallelism, deductive databases, language design and implementation, nonmonotonic reasoning, and logic programming and the Internet.

9 特價6142
立即代訂
下次再買
頁數23/43
移至第
金石堂門市 全家便利商店 ok便利商店 萊爾富便利商店 7-11便利商店
World wide
活動ing