Zum Hauptinhalt springen Zur Suche springen Zur Hauptnavigation springen

Allgemein

Produkte filtern

Produktbild für Numerical Methods Using Kotlin

Numerical Methods Using Kotlin

This in-depth guide covers a wide range of topics, including chapters on linear algebra, root finding, curve fitting, differentiation and integration, solving differential equations, random numbers and simulation, a whole suite of unconstrained and constrained optimization algorithms, statistics, regression and time series analysis. The mathematical concepts behind the algorithms are clearly explained, with plenty of code examples and illustrations to help even beginners get started.In this book, you'll implement numerical algorithms in Kotlin using NM Dev, an object-oriented and high-performance programming library for applied and industrial mathematics. Discover how Kotlin has many advantages over Java in its speed, and in some cases, ease of use. In this book, you’ll see how it can help you easily create solutions for your complex engineering and data science problems.After reading this book, you'll come away with the knowledge to create your own numerical models and algorithms using the Kotlin programming language.WHAT YOU WILL LEARN* Program in Kotlin using a high-performance numerical library* Learn the mathematics necessary for a wide range of numerical computing algorithms* Convert ideas and equations into code* Put together algorithms and classes to build your own engineering solutions* Build solvers for industrial optimization problems* Perform data analysis using basic and advanced statisticsWHO THIS BOOK IS FORProgrammers, data scientists, and analysts with prior experience programming in any language, especially Kotlin or Java.HAKSUN LI, PHD, is founder of NM Group, a scientific and mathematical research company. He has the vision of “Making the World Better Using Mathematics”. Under his leadership, the firm serves worldwide brokerage houses and funds, multinational corporations and very high net worth individuals. Haksun is an expert in options trading, asset allocation, portfolio optimization and fixed-income product pricing. He has coded up a variety of numerical software, including SuanShu (a library of numerical methods), NM Dev (a library of numerical methods), AlgoQuant (a library for financial analytics), NMRMS (a portfolio management system for equities), and supercurve (a fixed-income options pricing system). Prior to this, Haksun was a quantitative trader/quantitative analyst with multiple investment banks. He has worked in New York, London, Tokyo, and Singapore. Additionally, Haksun is the vice dean of the Big Data Finance and Investment Institute of Fudan University, China. He was an adjunct professor with multiple universities. He has taught at the National University of Singapore (mathematics), Nanyang Technological University (business school), Fudan University (economics), as well as Hong Kong University of Science and Technology (mathematics). Dr. Haksun Li has a B.S. and M.S. in pure and financial mathematics from the University of Chicago, and an M.S. and a PhD in computer science and engineering from the University of Michigan, Ann Arbor.1: Introduction to Numerical Methods in Kotlin.-2: Linear Algebra.-3: Finding Roots of Equations.-4: Finding Roots of Systems of Equations.-5: Curve Fitting and Interpolation.-6: Numerical Differentiation and Integration.-7: Ordinary Differential Equations.-8: Partial Differential Equations.-9: Unconstrained Optimization.-10: Constrained Optimization.-11: Heuristics.-12: Basic Statistics.-13: Random Numbers and Simulation.-14: Linear Regression.-15: Time Series Analysis.-References.Table of ContentsAbout the Authors...........................................................................................................iPreface............................................................................................................................ii1. Why Kotlin?..............................................................................................................61.1. Kotlin in 2022.....................................................................................................61.2. Kotlin vs. C++....................................................................................................61.3. Kotlin vs. Python................................................................................................61.4. Kotlin in the future .............................................................................................62. Data Structures.......................................................................................................72.1. Function...........................................................................................................72.2. Polynomial ......................................................................................................73. Linear Algebra .......................................................................................................83.1. Vector and Matrix ...........................................................................................83.1.1. Vector Properties .....................................................................................83.1.2. Element-wise Operations.........................................................................83.1.3. Norm ........................................................................................................93.1.4. Inner product and angle ...........................................................................93.2. Matrix............................................................................................................103.3. Determinant, Transpose and Inverse.............................................................103.4. Diagonal Matrices and Diagonal of a Matrix................................................103.5. Eigenvalues and Eigenvectors.......................................................................103.5.1. Householder Tridiagonalization and QR Factorization Methods..........103.5.2. Transformation to Hessenberg Form (Nonsymmetric Matrices)...........104. Finding Roots of Single Variable Equations .......................................................114.1. Bracketing Methods ......................................................................................114.1.1. Bisection Method ...................................................................................114.2. Open Methods...............................................................................................114.2.1. Fixed-Point Method ...............................................................................114.2.2. Newton’s Method (Newton-Raphson Method) .....................................114.2.3. Secant Method .......................................................................................114.2.4. Brent’s Method ......................................................................................115. Finding Roots of Systems of Equations...............................................................125.1. Linear Systems of Equations.........................................................................125.2. Gauss Elimination Method............................................................................125.3. LU Factorization Methods ............................................................................125.3.1. Cholesky Factorization ..........................................................................125.4. Iterative Solution of Linear Systems.............................................................125.5. System of Nonlinear Equations.....................................................................126. Curve Fitting and Interpolation............................................................................146.1. Least-Squares Regression .............................................................................146.2. Linear Regression..........................................................................................146.3. Polynomial Regression..................................................................................146.4. Polynomial Interpolation...............................................................................146.5. Spline Interpolation .......................................................................................147. Numerical Differentiation and Integration...........................................................157.1. Numerical Differentiation .............................................................................157.2. Finite-Difference Formulas...........................................................................157.3. Newton-Cotes Formulas................................................................................157.3.1. Rectangular Rule....................................................................................157.3.2. Trapezoidal Rule....................................................................................157.3.3. Simpson’s Rules.....................................................................................157.3.4. Higher-Order Newton-Coles Formulas..................................................157.4. Romberg Integration .....................................................................................157.4.1. Gaussian Quadrature..............................................................................157.4.2. Improper Integrals..................................................................................158. Numerical Solution of Initial-Value Problems....................................................168.1. One-Step Methods.........................................................................................168.2. Euler’s Method..............................................................................................168.3. Runge-Kutta Methods...................................................................................168.4. Systems of Ordinary Differential Equations.................................................169. Numerical Solution of Partial Differential Equations..........................................179.1. Elliptic Partial Differential Equations...........................................................179.1.1. Dirichlet Problem...................................................................................179.2. Parabolic Partial Differential Equations........................................................179.2.1. Finite-Difference Method ......................................................................179.2.2. Crank-Nicolson Method.........................................................................179.3. Hyperbolic Partial Differential Equations.....................................................1710..................................................................................................................................1811..................................................................................................................................1912. Random Numbers and Simulation ....................................................................2012.1. Uniform Distribution .................................................................................2012.2. Normal Distribution...................................................................................2012.3. Exponential Distribution............................................................................2012.4. Poisson Distribution ..................................................................................2012.5. Beta Distribution........................................................................................2012.6. Gamma Distribution ..................................................................................2012.7. Multi-dimension Distribution ....................................................................2013. Unconstrainted Optimization ............................................................................2113.1. Single Variable Optimization ....................................................................2113.2. Multi Variable Optimization .....................................................................2114. Constrained Optimization .................................................................................2214.1. Linear Programming..................................................................................2214.2. Quadratic Programming ............................................................................2214.3. Second Order Conic Programming............................................................2214.4. Sequential Quadratic Programming...........................................................2214.5. Integer Programming.................................................................................2215. Heuristic Optimization......................................................................................2315.1. Genetic Algorithm .....................................................................................2315.2. Simulated Annealing .................................................................................2316. Basic Statistics..................................................................................................2416.1. Mean, Variance and Covariance................................................................2416.2. Moment......................................................................................................2416.3. Rank...........................................................................................................2417. Linear Regression .............................................................................................2517.1. Least-Squares Regression..........................................................................2517.2. General Linear Least Squares....................................................................2518. Time Series Analysis ........................................................................................2618.1. Univariate Time Series..............................................................................2618.2. Multivariate Time Series ...........................................................................2618.3. ARMA .......................................................................................................2618.4. GARCH .....................................................................................................2618.5. Cointegration .............................................................................................2619. Bibliography .....................................................................................................2720. Index .....................................................................................................

Regulärer Preis: 66,99 €
Produktbild für Wireshark for Network Forensics

Wireshark for Network Forensics

With the advent of emerging and complex technologies, traffic capture and analysis play an integral part in the overall IT operation. This book outlines the rich set of advanced features and capabilities of the Wireshark tool, considered by many to be the de-facto Swiss army knife for IT operational activities involving traffic analysis. This open-source tool is available as CLI or GUI. It is designed to capture using different modes, and to leverage the community developed and integrated features, such as filter-based analysis or traffic flow graph view.You'll start by reviewing the basics of Wireshark, and then examine the details of capturing and analyzing secured application traffic such as SecureDNS, HTTPS, and IPSec. You'll then look closely at the control plane and data plane capture, and study the analysis of wireless technology traffic such as 802.11, which is the common access technology currently used, along with Bluetooth. You'll also learn ways to identify network attacks, malware, covert communications, perform security incident post mortems, and ways to prevent the same.The book further explains the capture and analysis of secure multimedia traffic, which constitutes around 70% of all overall internet traffic. Wireshark for Network Forensics provides a unique look at cloud and cloud-native architecture-based traffic capture in Kubernetes, Docker-based, AWS, and GCP environments.WHAT YOU'LL LEARN* Review Wireshark analysis and network forensics* Study traffic capture and its analytics from mobile devices* Analyze various access technology and cloud traffic* Write your own dissector for any new or proprietary packet formats* Capture secured application traffic for analysisWHO THIS BOOK IS FORIT Professionals, Cloud Architects, Infrastructure Administrators, and Network/Cloud OperatorsNagendra Kumar Nainar (CCIE#20987) is a Principal Engineer with Cisco Customer Experience(CX) Organization (Formerly TAC), focusing on Enterprise customers. He is the co-inventor of more than 130 patent applications in different technologies including Virtualization/Container technologies. He is the co-author of multiple Internet RFCs, various Internet drafts and IEEE papers. Nagendra also co-authored multiple technical books with leading publishers such as Cisco Press and Packt Publication. He is a guest lecturer in North Carolina State University and a speaker in different network forums.ASHISH PANDA (CCIE#33270) is a Senior Technical Leader with Cisco Systems Customer Experience CX Organization primarily focused on handling complex service provider network design and troubleshooting escalations. He has 19+ years of rich experience in network design, operation, and troubleshooting with various large enterprises and service provider networks (ISP, satellite, MPLS, 5G, and cloud) worldwide. He is a speaker at various Cisco internal and external events and is very active in the network industry standard bodies.CHAPTER 1: WIRESHARK PRIMER· Introduction to Wireshark Architecture· Wireshark Package installation and Usage· Wireshark Cloud Services· Version and feature parity· Basic Analysis and filtering· Data stream and Graphs· SummaryCHAPTER 2: PACKET CAPTURE AND ANALYSIS§ Native Tool based Traffic Capture§ Wireshark tool based Traffic Capture§ Wireless Capture Modes and Configurations· High volume packet analysis (size based, capture filters)· Wireshark command line tool· Mobile devices Traffic CaptureCHAPTER 3: CAPTURING SECURED APPLICATION FOR ANALYSIS· Introduction to Secured Applications· Secure DNS· HTTPS· mTLS· IPsec, ISAKMP, Kerberos· SNMPv3· WEP, and WPA/WPA2/WPA3CHAPTER4: WIRELESS PACKET CAPTURE AND ANALYSIS· Basics of Wireless Technology· Wireless packet types (data, control, auth)· Wireless operational aspects and effect on wireshark capture· Effect of Wireshark modes (monitor, promiscuous) on wireless capture· Setting up Wireshark 802.11 captures for various OS types· Decoding beacons/WEP/WPA/WPA2· Wireless packet analysisCHAPTER 5: MULTIMEDIA CAPTURE AND ANALYSIS· Introduction to Multimedia Applications· Export Objects (file, images applications) from data stream· video content extraction and replay (RTP / RTSP)· mpeg live streams capture and replay· VoIP call analysis and replayCHAPTER 6: CLOUD AND CLOUD-NATIVE TRAFFIC CAPTURE· Introduction and Cloud and Cloud Native Applications· Native and Wireshark Captures in AWS· Native and Wireshark Captures in GCP· Native and Wireshark Captures in Azure· LXC and Namespace based capture· Kubernetes POD captureCHAPTER 7: BLUETOOTH PROTOCOL CAPTURE AND ANALYSIS· Introduction to Bluetooth and Usecase· HCIDump captures· Bluetooth protocol analysisCHAPTER 8: WIRESHARK ANALYSIS AND NETWORK FORENSIC· Networking protocol operation analysis· Analyzing network throughput issues, performance degradations· Network security attack identification , post mortems, prevention· Discovering malwares, covert communications· Packet replaysCHAPTER 9: WRITING YOUR OWN DISSECTOR· Wireshark Dissectors· Use Case Example· Dissector Example

Regulärer Preis: 62,99 €
Produktbild für Agile Model-Based Systems Engineering Cookbook

Agile Model-Based Systems Engineering Cookbook

Agile MBSE can help organizations manage change while ensuring system correctness and meeting customers’ needs. But deployment challenges have changed since our first edition. The Agile Model-Based Systems Engineering Cookbook’s second edition focuses on workflows – or recipes – that will help MBSE practitioners and team leaders address practical situations that are part of deploying MBSE as part of an agile development process across the enterprise. In this 2nd edition, the Cameo MagicDraw Systems Modeler tool – the most popular tool for MBSE – is used in examples (models are downloadable by readers). Written by a world-renowned expert in MBSE, this book will take you through systems engineering workflows in the Cameo Systems Modeler SysML modeling tool and show you how they can be used with an agile and model-based approach. You’ll start with the key concepts of agile methods for systems engineering. Next, each recipe will take you through initiating a project, outlining stakeholder needs, defining and analyzing system requirements, specifying system architecture, performing model-based engineering trade studies, all the way to handling systems specifications off to downstream engineering. By the end of this MBSE book, you’ll learn how to implement systems engineering workflows and create systems engineering models.

Regulärer Preis: 29,99 €
Produktbild für Modern Deep Learning for Tabular Data

Modern Deep Learning for Tabular Data

Deep learning is one of the most powerful tools in the modern artificial intelligence landscape. While having been predominantly applied to highly specialized image, text, and signal datasets, this book synthesizes and presents novel deep learning approaches to a seemingly unlikely domain – tabular data. Whether for finance, business, security, medicine, or countless other domain, deep learning can help mine and model complex patterns in tabular data – an incredibly ubiquitous form of structured data.Part I of the book offers a rigorous overview of machine learning principles, algorithms, and implementation skills relevant to holistically modeling and manipulating tabular data. Part II studies five dominant deep learning model designs – Artificial Neural Networks, Convolutional Neural Networks, Recurrent Neural Networks, Attention and Transformers, and Tree-Rooted Networks – through both their ‘default’ usage and their application to tabular data. Part III compounds the power of the previously covered methods by surveying strategies and techniques to supercharge deep learning systems: autoencoders, deep data generation, meta-optimization, multi-model arrangement, and neural network interpretability. Each chapter comes with extensive visualization, code, and relevant research coverage.Modern Deep Learning for Tabular Data is one of the first of its kind – a wide exploration of deep learning theory and applications to tabular data, integrating and documenting novel methods and techniques in the field. This book provides a strong conceptual and theoretical toolkit to approach challenging tabular data problems.WHAT YOU WILL LEARN* Important concepts and developments in modern machine learning and deep learning, with a strong emphasis on tabular data applications.* Understand the promising links between deep learning and tabular data, and when a deep learning approach is or isn’t appropriate.* Apply promising research and unique modeling approaches in real-world data contexts.* Explore and engage with modern, research-backed theoretical advances on deep tabular modeling* Utilize unique and successful preprocessing methods to prepare tabular data for successful modelling.WHO THIS BOOK IS FORData scientists and researchers of all levels from beginner to advanced looking to level up results on tabular data with deep learning or to understand the theoretical and practical aspects of deep tabular modeling research. Applicable to readers seeking to apply deep learning to all sorts of complex tabular data contexts, including business, finance, medicine, education, and security.ANDRE YE is a deep learning researcher with a focus on building and training robust medical deep computer vision systems for uncertain, ambiguous, and unusual contexts. He has published another book with Apress, Modern Deep Learning Design and Applications, and writes short-form data science articles on his blog. In his spare time, Andre enjoys keeping up with current deep learning research and jamming to hard metal.ANDY WANG is a researcher and technical writer passionate about data science and machine learning. With extensive experiences in modern AI tools and applications, he has competed in various professional data science competitions while gaining hundreds and thousands of views across his published articles. His main focus lies in building versatile model pipelines for different problem settings including tabular and computer-vision related tasks. At other times while Andy is not writing or programming, he has a passion for piano and swimming.○ Section 1: Machine Learning and Tabular Data■ Chapter 1 – Introduction to Machine Learning■ Chapter 2 – Data Tools○ Section 2: Applied Deep Learning Architectures■ Chapter 3 – Artificial Neural Networks■ Chapter 4 – Convolutional Neural Networks■ Chapter 5 – Recurrent Neural Networks■ Chapter 6 – Attention Mechanism■ Chapter 7 – Tree-based Neural Networks○ Section 3: Deep Learning Design and Tools■ Chapter 8 – Autoencoders■ Chapter 9 – Data Generation■ Chapter 10 – Meta-optimization■ Chapter 11 – Multi-model arrangement■ Chapter 12 – Deep Learning Interpretability○ Appendix A

Regulärer Preis: 62,99 €
Produktbild für Green IT - Status Quo und Anwendungsmöglichkeiten in Unternehmen

Green IT - Status Quo und Anwendungsmöglichkeiten in Unternehmen

In Anbetracht des stetig voranschreitenden Klimawandels rücken Bestrebungen zur Reduzierungder Umweltbelastung immer mehr in den Fokus der Öffentlichkeit, so auch in derInformations- und Kommunikationstechnik. Aufgrund des veränderten Konsumverhaltensund vielerorts gesetzlicher Aspekte werden im Rahmen unternehmerischer EntscheidungenMaßnahmen zur Reduzierung des eigenen Umwelteinflusses immer stärker gewichtet.Das Konzept der Green IT bietet Unternehmen verschiedene Anwendungsmöglichkeitenim Zusammenhang mit der Informations- und Kommunikationstechnik mit dem Ziel, deneigenen Grad der Nachhaltigkeit zu fördern. Diese Bachelorarbeit führt das Konzept derGreen IT auf Basis der Literatur ein und definiert einen aktuellen Zustand, den StatusQuo der Green IT. Es werden außerdem Anwendungsmöglichkeiten der Green ITfür Unternehmen identifiziert und eingeordnet. Durch die Erhebung von Daten und Forschungsergebnissenaus der Literatur wird die Relevanz der Anwendungsmöglichkeitenbelegt und eine ökologische sowie ökonomische Bewertung durchgeführt. Diese Arbeitzeigt, dass insbesondere die Nutzung von Videokonferenzen und die nachhaltige Beschaffungvon Hardware ökologisch sowie ökonomisch effektive Anwendungsmöglichkeiten derGreen IT für Unternehmen sind. Es ist erkennbar, dass Unternehmen durch den Einsatzvon Informations- und Kommunikationstechnik Ressourcen einsparen und damit ihre Umweltbelastungverringern sowie einen Beitrag zum Schutz der Umwelt leisten können.

Regulärer Preis: 14,99 €
Produktbild für Software Development with Go

Software Development with Go

Gain insights into the different challenges that can be solved using Go, with a focus on containers, Linux, security, networking, user interfaces and other relevant cloud based topics. This book reviews the necessary tools to create container-based cloud solutions with Go, a programming language that was born out of the need to address scalable, high availability cloud computing architecture needs inside Google.Go, also known as Golang, has been adopted across different industries and products with many popular Open Source projects that power cloud computing technologies such as Docker and Kubernetes being written with Go. As the complexity of cloud technology increases, so does the need for people to understand how things work under-the-hood and to fix them when they’re broken.WHAT YOU WILL LEARN* Understand how the various components of a container-based system works* Tackle complex technical issues using Go* Integrate tools that can be used as part of your daily operational needs* Build system-based productsWHO THIS BOOK IS FORDevelopers and Engineers familiar with Go who want to know how different parts of the system work and who want to write command line tools. It will also be beneficial to programmers who already have a system-level understanding and want to use Go to build tools for existing projects and applications.NANIK TOLARAM is a big proponent of open source software with over 20 years of industry experience. He has dabbled in different programming languages, including Java, C, and C++. He has developed products from the ground up working in early startup companies. He is a software engineer at heart, but loves to write technical articles and share his knowledge with others.He learned to program with Go during the COVID 19 pandemic and hasn't looked back.SOFTWARE DEVELOPMENT WITH GOPART 1: SYSTEM PROGRAMMINGChapter 1 - System CallsChapter 2 - System Calls Using GoChapter 3 - Accessing proc File SystemPART 2: CONTAINERSChapter 4 - Simple ContainersChapter 5 - Containers with NetworkingChapter 6 - Docker SecurityPART 3: APPLICATION SECURITYChapter 7 - Gosec and ASTChapter 8 – ScorecardPART 4: NETWORKINGChapter 9 - Simple NetworkingChapter 10 - System NetworkingChapter 11 - Google gopacketChapter 12 - Epoll LibraryPART 5: SECURING LINUXChapter 13 - Vulnerability ScannerChapter 14 – CrowdSecPART 6: TERMINAL USER INTERFACEChapter 15 - ANSI and UIChapter 16 - TUI FrameworkPART 7: LINUX SYSTEMChapter 17 – systemdChapter 18 – cadvisor

Regulärer Preis: 36,99 €
Produktbild für Beginning Spring Data

Beginning Spring Data

Use the popular Spring Data project for data access and persistence using various Java-based APIs such as JDBC, JPA, MongoDB, and more.This book shows how to easily incorporate data persistence and accessibility into your microservices, cloud-native applications, and monolithic enterprise applications. It also teaches you how to perform unit and performance testing of a component that accesses a database. And it walks you through an example of each type of SQL and NoSQL database covered.After reading this book, you’ll be able to create an application that interacts with one or multiple types of databases, and conduct unit and performance testing to analyze possible problems. Source code is available on GitHub.WHAT YOU’LL LEARN* Become familiar with the Spring Data project and its modules for data access and persistence* Explore various SQL and NoSQL persistence types* Uncover the persistence and domain models, and handle transaction management for SQL* Migrate database changes and versioning for SQL* Dive into NoSQL persistence with Redis, MongoDB, Neo4j, and Cassandra* Handle reactive database programming and access with R2DBC and MongoDB* Conduct unit, integration, and performance testing, and moreWHO THIS BOOK IS FORExperienced Java software application developers; programmers with experience using the Spring framework or the Spring Boot micro frameworkANDRES SACCO is a Technical Lead at Prisma. He has experience using languages such as Java, PHP, and NodeJs. He also has experience using Spring. In his previous job, Andres helped find alternative ways to optimize the transference of data between microservices, which reduced the cost of infrastructure by 55%. He also has written internal courses about new technologies and articles on Medium. Andres shares his knowledge of using different types of databases, depending on the situation. He has experience with various types of testing, to search for problems in queries or repositories that access the database. Part I - IntroductionChapter 1: Architecture of the ApplicationsChapter 2: Spring Basics and BeyondChapter 3: Spring Data and Persistence TypesPart II - SQL PersistenceChapter 4: Persistence and Domain ModelChapter 5: Transaction ManagementChapter 6: Versioning or Migrate the Changes of the DatabasePart III - NO-SQL PersistenceChapter 7: Redis key/value DatabaseChapter 8: MongoDB Document DatabaseChapter 9: Neo4j Graph DatabaseChapter 10: Cassandra wide-column DatabaseChapter 11: Reactive access w/R2DBC and MongoDBChapter 12: Unit/Integration TestingChapter 13: Performance TestingChapter 14: Best PracticesPart I - IntroductionThis part or section contains all the introduction about the basics of the Spring and the architecture of theapplication to use the persistence.Chapter 1: Architecture of the applicationsChapter Goal: In this chapter, the readers will see the different ways of structuring one application and thebest practices to organize all the things related to persistence like the use of DAO (repositories on Spring).• Small history of the methods of persistence (Plain query using the class of Java, ORM)• Different types of architectureso Layerso Hexagonal or onion• Persistence design patterso DAO (Repositories in Spring)o Data Transfer Object (DTO)Chapter 2: Spring basics and beyondChapter Goal: In this chapter, the readers will see the different ways of structuring one application and thebest practices to organize all the things related to persistence like the use of DAO (repositories on Spring).• Spring’s Architecture• Dependency Injection and Inversion of Control• Basic Application SetupChapter 3: Spring Data and different types of persistenceChapter Goal: This chapter will provide a full explanation about Spring Data, how it works and what this librarydoes behind the scenes.• How the Spring Data works• How the Repositories workso Using interfaceso Defining a custom implementationPart II - SQL persistenceThis part or section contains the information about different aspects of the persistence of databases whichhave a rigid schema. Also, the readers will see different strategies of deploying the changes on the schemas.Chapter 4: Persistence and domain modelChapter Goal: In this chapter, the readers will learn the basics about persistence and how it works behind thescenes. Also, the readers will see how to create validations in the schema like the size of the column and thedifferent types of relationship between entities.• JPA configuration using annotationso Entity, Ido Types of relationshipso Pre-update, pre-persist• Ways to define the querieso Using specificationso Define SQL• How validate the schema• Types of InherenceChapter 5: Transaction managementChapter Goal: In this chapter, the readers will learn the basics of the transactions and some concepts of ACID.• Definition of ACID• Isolation Levels• Transactional levelsChapter 6: Versioning or migrate the changes of the databaseChapter Goal: In this chapter the readers will see different tools or strategies to include the changes of thedatabases, e.g use Liquibase/Flyway, running the scripts manually, or using the auto-update of the Spring.Also, this chapter will include some mechanism to move the data from one column to another using featureflags.• Mechanism to migrate the changes• Tools to versioning the changeso Liquibaseo Flyway• Using Feature Flags to new featureso What is a Feature flag?o Benefits of use this approacho Common librariesPart III - NO-SQL persistenceIn this section the idea is to cover one example of each type of the databases NO-SQL like key/value,document, graph, and wide-column database. The idea is not to cover all more than one example of a type ofdatabase because most of them have certain operations similar.Chapter 7: Redis key/value databaseChapter Goal: In this chapter, the readers will see how to run a database and save the information using aspecific key. Also, this chapter will show the readers to create a serializer to persist data that is complex andsome best practices like persist the information in async mode.The last point is how to configure the TTL in the information that the readers persist in the database.• What is Redis and which are the benefits?• Connecting with multiples Redis• Persist synchronous or asynchronous• Object Mapping and ConversionChapter 8: MongoDB Document databaseChapter Goal: In this chapter, the readers will see how to run a mongo database and how to persist theinformation with the definition of the entities using the different operations that are permitted on MongoDB.• What is a document store?• Setting up a Mongo• Access using repositories• Manage transactions in a programmatic wayChapter 9: Neo4j Graph databaseChapter Goal: In this chapter, the readers will see how to run a database and how to create different types ofqueries. Also the reader will see the different aspects of the persistence of the information and the use ofreactive approach.• Modeling the problem as a Grapho Cases of usero Benefits• Persisting the domain• Manage transactionsChapter 10: Cassandra wide-column databaseChapter Goal: In this chapter, the readers will see how to configure the database on Spring and thedeclaration of the entities that need to be used to persist the information. Also, the different ways topersist or modify the information on Cassandra.The last point is how to configure the TTL in the information that the readers persist in the database.• What is Cassandra and how works?• Configuration for Cassandra• Access using repositories• Defining a TTLPart IV – Advanced, testing and best practicesThis part covers some aspects of any type of database to create different types of tests and validate theperformance of the queries. Also, this section covers some best practices to reduce the possible problems ormistakes in the applications that access a database.Chapter 11: Reactive accessChapter Goal: This chapter needs to cover how you can access and obtain the information in a reactive way.• What is reactive access?• Modifying queries to be reactiveo R2DBCo MongoDBChapter 12: Unit/Integration testingChapter Goal: This chapter needs to cover more in detail how you can write unit tests without using anexistent database but using the same motor of the database, to do this the reader will use Test Cointainerswith Junit 5 which is the standard to write unit tests.• Unit Testing with Mocks• Integration Testing with a Databaseo What is Test containers?o Test Containers vs embeddedo How you can use it?o Possible problems in the pipelineChapter 13: Performance testingChapter Goal: In this chapter the reader will use some tools like Gatling or QuickPerform to see how tocreate a performance test and analyze if the queries have some issue related with the use ofCPU/memory.• How check or analyze the performance of the queries?• Analyzing the complexity of queries• Performance test of an endpoint that access to a DBChapter 14: Best practicesChapter Goal: In this chapter the reader will know some strategies to improve the performance of thedatabase including some mechanism of cache to reduce the number of times that anyone accesses toobtain information.• Access to the information◦ Master-slave• Using cache to reduce the accessed to DB• Compress the information• Lazy Loading Issues• Pagination and ways to reduce the response

Regulärer Preis: 56,99 €
Produktbild für PHP 8 Basics

PHP 8 Basics

Take advantage of PHP 8's powerful features to create basic web applications, solve code tests (required for most job interviews nowadays), and begin moving towards more advanced PHP concepts. This book provides an introduction to PHP 8, including modules, attributes, JIT compiler, and union types, as well as related frameworks such as Symfony.You will explore fundamental PHP concepts through both practical and hands-on examples. You'll not only gain a solid understanding of PHP fundamentals, but will also be prepared to handle new concepts and technologies as they emerge.After working through the book and its associated demo code, you will be able to build your first basic web application.WHAT YOU WILL LEARN* Develop web applications with PHP 8* Use Vagrant, Docker, JSON API and more* Work with data, form data, arrays, objections, exceptions, regex, and more* Utilize PHP frameworks like Laravel and SymfonyWHO THIS BOOK IS FORThose new to PHP 8 or PHP in general. Some prior experience in web development and DB handling is recommended.GUNNARD ENGEBRETH began coding at the age of 11 through a “Learning BASIC” book given to him by his father. Technology was changing fast and Gunnard rode the wave from 1200 to 56k baud modems. Logging in to BBSs, Prodigy, Compuserve, Delphi and IRC he could see the world changing and he wanted to be a part of it. He soon got involved in the ansi/demo scene, making several application generators for many groups in the 90’s. Visual Basic was the next language of choice allowing him to develop “tools” for online systems such as AOL. This introduced many aspects of development, security and UI while they were still in their infancy. Once the WWW arrived via Mindspring in Atlanta, Ga. Gunnard quickly joined in the race for the web. Learning HTML, PERL and Linux (Slackware at the time) he began to build his skill-set which lead to a full-time Sysadmin position at the age of 20 (2000) at Activegrams/Silverpop. Gunnard has moved around the IT industry from SAN/NAS storage at IBM to custom Wordpress sites for marketing companies, but one thing has stayed the same, a passion for learning and problem solving. Gunnard also DJ’s Drum and Bass as Section31, Playing drums and baking bread.SATEJ KUMAR SAHU works in the role of Senior Enterprise Architect at Honeywell. He is passionate about technology, people, and nature. He believes through technology and conscientious decision making, each of us has the power to make this world a better place. In his free time, he can be found reading books, playing basketball, and having fun with friends and family.Chapter 1: Getting StartedChapter 2: PHP FundimentalsChapter 3: Functions and ClassesChapter 4: DataChapter 5: Form dataChapter 6: ArraysChapter 7: Cookies and SessionsChapter 8: ObjectsChapter 9: Exceptions, Validation, Regular expressionsChapter 10: PHP & MySQL working togetherChapter 11: Basic Database DesignChapter 12: Creating a DB with PHP and MYsqlChapter 13: Basic Website with DBChapter 14: Basic JSON APIChapter 15: Intro to PHP FrameworksChapter 16: Intro to LaravelChapter 17: Intro to SymfonyChapter 18: Basic Symfony applicationChapter 19: Symfony Json APIChapter 20: Intro to Zend / Laminas ProjectChapter 21: Basic Zend / Laminas Project applicationChapter 22: Zend / Laminas Project JSON APIChapter 23: Intro to Slim PHPChapter 24: Basic Slim PHP applicationChapter 25: Slim PHP JSON APIChapter 26 or appendix: Wordpress developmentChapter 27 or appendix: Shopify development

Regulärer Preis: 36,99 €
Produktbild für Getting Started with Microsoft Viva

Getting Started with Microsoft Viva

Use the power of analytics, knowledge management, and discovery for improved employee retention and insight to the unique collaborative and learning needs of your organization using Viva, Microsoft’s new employee experience platform.This book introduces you to the four central tenets of Microsoft Viva, a platform designed to improve communication, knowledge, learning, and insight within an organization. The authors, all Microsoft MVPs and early users of Viva, share their first-hand experiences and knowledge to teach you how to configure, utilize, and adopt Viva Topics, Viva Connections, Viva Learning, and Viva Insights to drive knowledge management and discovery within an organization.In Part I, you will learn how to classify data and topics within your organization, and learn how the use of AI can bring to life the discovery of knowledge and information related to people and other topics, allowing for better understanding and clarity of the content you see every day. In Part II, you will learn how to bring the power of SharePoint Syntex and Viva Topics into Microsoft Teams.In Part III, you will learn how to build a shared learning portal in Microsoft Teams using your own training materials, or bringing in third-party resources such as LinkedIn Learning and Skillsoft to connect directly to your employees. Managers will appreciate the ability to assign learning topics to users and gain the skills needed to create a fundamental process around learning consolidation. In Part IV, you will be introduced to Viva Insights, and understand how to discover vital analytics for individuals, managers, and leaders. You will also learn how it supports your company’s greatest asset, your employees.WHAT YOU WILL LEARN* Understand the basics of Viva to get up and running in no time* Configure each vertical of Microsoft Viva* Know the roles and pre-requisites for installation and configuration* Organize and think about your content for discovery and relationships* Deliver learning through an optimized experience for managers and users* Leverage the power of SharePoint within Teams using Viva ConnectionsWHO THIS BOOK IS FORManagement, end users, and system administrators who want to step up their knowledge management, better train and retain employees, and improve access to internal content. The book is designed for businesses that want to transform the way they learn about content and people within their organization, with the end objective of making their business grow and thrive.D’ARCE HESS is a Senior Cloud Architect at CloudWay. For more than 10 years, she has specialized in the creation of custom portals and experiences in SharePoint, Microsoft Teams, and Office365. As a UI/UX Designer and Developer, D’arce uses industry and Microsoft best practices as a base for creating solutions that simplify processes, drive user adoption, and governance from the start. As a recognized Microsoft MVP, she has worked with Fortune 500 companies and become a trusted partner to her clients in the industries of healthcare, pharmaceuticals, legal, travel & tourism and entertainment. She loves to volunteer in the community and is the leader of the Rhode Island SharePoint User Group.ALBERT-JAN SCHOT, also known as Appie, lives and breathes Microsoft 365 and it has become second nature to him. He has numerous certifications. With his extensive knowledge, Albert-Jan is a valuable source of information for colleagues. He not only enjoys stepping up to the challenge of designing, developing, and building innovative cloud solutions, but he also has consultancy and training experience. He is active on a range of forums, including blogs as well as on Twitter where he shares his knowledge and passion with others. Over the years, he has presented at several national and international user groups and events.TRACY VAN DER SCHYFF is an Office Servers and Business Applications MVP. She has published more than a thousand thought leadership and technical articles focused on Microsoft 365 and produced hundreds of training videos to teach and support the Microsoft Community. An international keynote and conference speaker, her passion is to "facilitate the evolution of human capabilities" and she does this by sharing her Microsoft 365, Change Management, Adoption, and Training knowledge enthusiastically.PART 1: MICROSOFT VIVA INTRODUCTIONChapter 1: Introduction to Microsoft VivaChapter 2: The Gears That Deliver Microsoft VivaChapter 3: Features & LicensingPART II: MICROSOFT VIVA LEARNINGChapter 4: Microsoft 365 AdoptionChapter 5: Introduction to Microsoft Viva LearningChapter 6: Viva Learning for AdministratorsChapter 7: Viva Learning for Employees & ManagersPART 3: MICROSOFT VIVA CONNECTIONSChapter 8: The IntranetChapter 9: Introduction to Microsoft Viva ConnectionsChapter 10: Preparation and SetupPART 4: MICROSOFT VIVA TOPICSChapter 11: Introduction to Viva TopicsChapter 12: Configuring Viva TopicsChapter 13: Topics Role in Knowledge ManagementChapter 14: Viva Topics Roles and ResponsibilitiesChapter 15: Creating and Working with Topics and Topic PagesPART 5: MICROSOFT VIVA INSIGHTSChapter 16: Employee WellbeingChapter 17: Licensing Viva Insights and Viva Insights CapacityChapter 18: Personal InsightsChapter 19: Manager InsightsChapter 20: Leader InsightsChapter 21: Advanced InsightsAppendix: Hyperlink Resources for Book

Regulärer Preis: 62,99 €
Produktbild für Blockchain for Teens

Blockchain for Teens

Similar to the Internet in the 1990s, Blockchain promises to revolutionize the world by reforming current business models. This book is a beginner-friendly guide for teens looking to build a basic foundation in Blockchain technologies.You'll start with an introduction to Blockchain, learn about the main features, and understand decentralization. Additionally, you'll get to know the current monetary system, major concepts in cryptography, and an overview of cryptocurrency. The book then explores various topics in Bitcoin, including its history, the consensus mechanism and the mining process.You'll also be introduced to non-fungible tokens (NFT)s, one of Blockchain’s most well-known technologies, and delve into its different aspects, including the top NFT marketplaces. There is also a chapter about the Metaverse, another groundbreaking technology that will influence society throughout the next decade. You'll see how Crypto and NFTs enhance the Metaverse, and the relationship between Blockchain and the Metaverse.At the end of the book you'll review topics from previous chapters in a discussion on the future of Blockchain and conclude with an overview of real-life examples of Blockchain across various industries.WHAT YOU'LL LEARN* Examine the basics of Bitcoin and Ethereum* Create your very own Bitcoin wallet* Understand the concept of NFTs and build your first token* Explore the Metaverse in Blockchain* Envision the future of BlockchainTHIS BOOK IS FORTeens who are looking to build a basic understanding of Blockchain technologies.Brian Wu holds a computer science Master's degree and is a senior blockchain architect and consultant. Brian has over 18 years of hands-on experience across various technologies, including Blockchain, Big Data, Cloud, System, Infrastructure, and UI. He has worked on more than 50 projects in his career.He has written several books, published by O'Reilly and Packt, on popular fields within blockchain, including: "Learn Ethereum (First edition)" "Hands-On Smart Contract Development with Hyperledger Fabric V2", "Hyperledger cookbook," "Blockchain Quick Start Guide," "Security Tokens and Stablecoins Quick Start Guide," "Blockchain By Example," and "Seven NoSQL Databases in a Week."Chapter 1: Blockchain: A Groundbreaking TechnologyCHAPTER GOAL:This chapter will talk about the basics of Blockchain. We will discuss how the current monetary system works and how Blockchain technology impacts money, business, and the modern world. Then, we will move on to fundamentals of cryptography. After that, readers will gain a solid understanding of the concept of consensus algorithms. At the end of the chapter, we will provide an overview of cryptocurrency.NO OF PAGES 25SUB -TOPICS1. What is Blockchain?1. The current monetary system2. The basics of cryptography3. Consensus algorithms4. Understanding cryptocurrencyChapter 2: Bitcoin: The Future of MoneyCHAPTER GOAL:This chapter will familiarize the reader with an overview of Bitcoin. We will also cover the history behind this phenomenon. Next, the reader will learn how Bitcoin works and analyze how Bitcoin is currently being used in businesses. By the end of the chapter, the reader will create their very own Bitcoin wallet.NO OF PAGES: 25 -30SUB - TOPICS1. What is Bitcoin?2. The history of Bitcoin3. How Bitcoin works4. The role of Bitcoin in business5. Taking control of your first Bitcoin walletChapter 3: Ethereum: A Gateway to Cryptocurrency CHAPTER GOAL:This chapter will introduce the core features of Ethereum, including the consensus. Then, the reader will explore the smart contract and tokens, as well as create a smart contract. Then, we will explore decentralized applications. We will also take a look at business in the age of Ethereum. At the end, the reader will learn how to use an Ethereum wallet.NO OF PAGES: 25-30SUB - TOPICS1. Getting to know Ethereum2. The history of Ethereum3. How Ethereum works4. Smart contract and tokens5. Writing your first smart contract6. Decentralized Applications (Dapps)7. Business in the age of Ethereum8. Taking control of your first Ethereum walletChapter 4: NFTs: Crypto as CollectiblesCHAPTER GOAL:This chapter will explain the topic of NFTs, provide an overview of how they work, and examine famous examples of NFTs. The reader will delve into the popular marketplace of NFTs. By the end of chapter, we will learn how to create an NFT, as well as discuss what the future of NFTs may look like.NO OF PAGES : 25 -30SUB - TOPICS:1. What are NFTs?2. How NFTs work3. Famous examples of NFT4. NFT market place5. Creating your own NFT6. The future of NFTChapter 5: Metaverse: The World ReimaginedCHAPTER GOAL:In this chapter, readers will come to understand what the Metaverse is and the history behind it. Then, the reader will take a deeper look at Crypto and NFTs in the Metaverse. Lastly, we will provide an overview of the Metaverse in the world of Blockchain.NO OF PAGES: 25SUB - TOPICS:1. What is the Metaverse?2. The history of the Metaverse3. Crypto and NFTs in the Metaverse4. Blockchain and the MetaverseChapter 6: The Future of BlockchainCHAPTER GOAL:In this chapter, we learn about the evolution of the Internet from Web 1.0, 2.0 and 3.0. Then, we will discuss some use cases of Blockchain across various industries, including finance, healthcare, education, At the end of the bookand the supply chain. We end off with a discussion of how Artificial Intelligence is used in Blockchain.NO OF PAGES: 25SUB - TOPICS:1. The Evolution of the Internet2. Blockchain in Finance3. Blockchain in Healthcare4. Blockchain in Education5. Blockchain in Supply chain6. AI in Blockchain

Regulärer Preis: 62,99 €
Produktbild für Introducing ReScript

Introducing ReScript

This book serves as a succinct guide on ReScript, a functional language for building web applications. Using examples of ReScript language features along with explanations of fundamental concepts in functional programming, this book will show web developers with a background in JavaScript how to effectively use ReScript to its full potential.In Introducing ReScript, you'll learn how to use features in ReScript that JavaScript lacks, such as type inference, null-safety, algebraic data types, pattern matching, and more. Along the way, you'll pick up functional programming concepts like immutability and higher-order functions. You'll also gain a sense of how ReScript works under the hood and how to leverage interoperability between ReScript and JavaScript.Whether you're a web developer interested in dabbling with functional programming or you just want to learn how to write safer and cleaner code for web applications, this book is a great way for you to get started with ReScript.WHAT YOU WILL LEARN* Use ReScript to write clean, safe, and elegant software* Understand the features of ReScript that set it apart from JavaScript, such as type inference, null-safety, and algebraic data types* Explore functional programming concepts like immutabhigher-orderr order functions, and pattern matching* Use popular JavaScript libraries and frameworks in your ReScript code and integrate ReScript code into JavaScript codebasesWHO THIS BOOK IS FORWeb developers that want a strictly typed, safer alternative to JavaScript, as well as web developers interested in learning functional programming and leveraging the elegant and powerful functional features in ReScript.Danny Yang is a professional software engineer at Meta working on infrastructure for WhatsApp. He has previously worked on Facebook Messenger, including the web interface which was written in ReScript. His technical interests include functional programming, compilers, and data visualization, which he writes about on his blog.Chapter 1, IntroChapter Goal: Learn what functional programming is, and the background of the ReScript language● What is ReScript?● Why should you learn ReScript?● What is functional programming?● Why should you learn functional programming?Chapter 2, BasicsChapter Goal: Learn the basic features of ReScript, like expressions and operators- Development environment setup- Hello, World in ReScript- Expressions- Operators- If expressions- Let expressions- Printing and debuggingChapter 3, FunctionsChapter Goal: learn how functions work in ReScript- Defining a function- Applying a function- Polymorphic functions- Anonymous functionsChapter 4, Lists and ArraysChapter Goal: learn the data structures for ordered data in ReScript, learn about immutable data structures- Building a list- Accessing a list- Mutating a list- Arrays and mutability- IterationChapter 5, Records and ObjectsChapter Goal: learn the ways to represent composite data types in ReScript- Records- ObjectsChapter 6, Pattern Matching and DestructuringChapter Goal: learn one of ReScript's most powerful features and how to work with the shape of your data- Pattern matching/switch- Destructuring with let- Destructuring in functionsChapter 7, Algebraic Data TypesChapter Goal: learn how represent complex data in ReScript's type system- Variants- Polymorphic Variants- Options- TuplesChapter 8, Higher Order ProgrammingChapter Goal:- Higher order functions- Map- Filter- Reduce- Generalizing to other data structures- Piping- CurryingChapter 9, ModulesChapter Goal: Introduce modules in ReScript, and how they can be used for higher order programming- What are modules- Scope/visibility- Signature- Import/Export- FunctorsChapter 10, Using ReScript in ProductionChapter Goal: learn about ReScript's interoperability with JavaScript- Calling ReScript from JavaScript- Calling JavaScript from ReScript- Embedding JavaScript in ReScript- Working with DOM- Working with JSON- Runtime representation

Regulärer Preis: 36,99 €
Produktbild für The Enterprise Linux Administrator

The Enterprise Linux Administrator

Learn the basics, followed by the more advanced skills you will need to become an Enterprise Linux administrator. This book will prepare you to use Linux effectively with a clearer understanding of what is needed to successfully leverage new opportunities.After building a solid Linux knowledge foundation, you will learn how three major community Linux distributions are installed, configured, and used. The book will then guide you through all the different configurations a Linux administrator should know, along with some useful exercises for you to practice.Moving on, you will look at Enterprise Linux distributions, and how they are installed and configured. This will be the step that will elevate you from being a Linux administrator to an enterprise Linux administrator. You will also learn how an enterprise Linux administrator configures Linux security, high availability, automation, and large-scale Linux deployments. These skills are required when working in larger Linux estates. Finally, you'll review backups, recovery, and some general troubleshooting.By the end of this book, you'll not only learn how to become an Enterprise Linux administrator but will also learn what certifications are vital when competing for new career opportunities.WHAT YOU'LL LEARN* Install your own Linux environment* Study the basics to configuring Linux* Become an Enterprise Linux administrator and how to get there* Review comprehensive examples on how to use LinuxWHO THIS BOOK IS FORThose in the IT industry who have no Linux training or experience who wish to learn how to manage a Linux systemKen Hitchcock currently is a Senior Architect working for Red Hat, with over twenty years of experience in IT. He has spent the last eleven years predominantly focused on Red Hat products, certificating himself as a Red Hat Architect along the way. The last eleven years have been paramount in his understanding of how large Linux estates should be managed and in the spirit of openness, was inspired to share his knowledge and experiences in this book. Originally from Durban, South Africa, he now lives in the south of England where he hopes to not only continue inspiring all he meets but also to continue improving himself and the industry he works in. Part 1 - Requirements and Linux Background (35 pages)This section is a complete introduction to Linux. Its history, what the Operating system is, the different common distributions and how Linux differs from other Operating systems available today.Chapter 1 : Requirements (10 pages)* Explanation of what skills and knowledge is required before starting in the Linux world.* Recommended reading and studying materials.Chapter 2 : Origins and Brief History. (10 pages)* Unix past and evolution.* Linux history and how “Free” software shaped the OpenSource world.Chapter 3: Linux Explained. (15 pages)* Basics of the Operating system.* Common Linux distributionsMany uses of Linux* Differences between other Operating systems and Linux.Part 2: Getting Started (100 pages)This section is to start getting hands on Linux and learning how to install.Chapter 4: Installing Linux for the First Time (65 pages)* Where to get Linux. (5)Different vendors* Community* Licensing* Using virtualization. (5)* Windows Virtualization* Exercise* Libvirt* Exercise* Installing Ubuntu. (15)* How to create Linux installation media.* Basic Installation* Custom installations.* Exercise* Installing Fedora (15)* How to create Linux installation media.* Basic Installation* Custom installations.Exercise* Installing OpenSuse (15)* How to create Linux installation media.* Basic Installation* Custom installations.Exercise* Upgrading Linux (10)* What Linux distributions can be upgraded.* ExerciseChapter 5: Using Linux for the first time (35)* Accessing Linux (10)* Console* SSH* Web console* ExerciseCommand line (10)* Command line basics.* Command line shortcuts.* Different commands in different distributions.* Exercise* Desktop basics (15)* Installing different desktops.* Enabling and Disabling Desktops* ExercisePart 3: Configuring Linux (153)Chapter 6: Access Control (25)* SSH and SSHD configuration (8)* Configuration files and starting services.* Enabling access through Firewall.* ExerciseUsers & Groups (8)* Creating users and groups.* Exercise* Managing sudo.* Exercise* File & directory permissions. (9)* Chmod, chown, chgrp* AclsExerciseChapter 7: Package Installation (40)Installing packages (20)* Different package management systems.* Exercise* Manual package installation.* Exercise* Repository configuration.* Exercise* System patching (20)* Errata* Exercise* System updates* Exercise* Rollback* ExerciseChapter 8: Network configuration (25)* Network basics in Linux (17)* Configure network configuration with command line.* Configuring Network configuration with graphical tools.* Configure Network configuration with Desktop.* Exercise* Network tools (8)* Tools available and how to use them.* ExerciseChapter 9: Disk Configuration (40)* Disk management (30)* Tools available* Command line* Graphical* Exercise* LVM* Create, extend, migrate, destroy* Raid, mirror, HA* ExerciseFilesystem management (10)* Filesystem types* Creating, extending, resizing* ExerciseChapter 10: Service Management (23)* Basic management (10)* Starting, stopping and viewing services* Exercise* Systemd. (5)* Explained* Exercise* Creating a new service. (8)* Creating service files.* Enabling and disabling them.* ExercisePart 4: Enterprise Linux (200)Chapter 11: Example use cases for Linux (30)* Building a web server. (15)* Package installation* Configuring application configuration files* Firewall configuration.* SELinux configuration* Custom configuration.Automated configuration.* Exercise* Building a file server. (15)* Package installation* Configuring application configuration files* Firewall configuration* SELinux configuration* Custom configuration.Automated configuration.* ExerciseChapter 12: Security (46)* Firewall (10)* Explained* Command line configuration* Console & Web UI configuration* Exercise* SELinux (6)* Explained* Command line configuration.* Custom configuration* ExerciseHardening (15)* Explained.* Different standards.* Scanning* OpenSCAPAutomated remediation.* Exercise* Encryption (15)* Explained* Encryption methodsNetwork encryption* Certificates* Recovery* ExerciseChapter 13: High Availability (20)* Basic HA* Explained.* Ubuntu HA* Basic guide to simple HA* ExerciseRHEL HA* Basic guide to simple HA* Exercise* Suse HA* Basic guide to simple HA* ExerciseChapter 14: Scripting & Automation (24)* Basic shell scripting (12)* Explained.* Different interpreters.Examples* Exercise* Ansible (12)* Explained* ExamplesUse cases* Tools* ExerciseChapter 15: Enterprise Linux Distributions (60)* Red Hat enterprise Linux (20)* Brief history* Installing RHELEstate management basics* Subscriptions & Support* Training & Certifications* Ubuntu (20)* Brief History* Installing Ubuntu* Estate management basics* Subscriptions & SupportTraining & certifications* Suse (20)* Brief History* Installing Ubuntu* Estate management basicsSubscriptions & Support* Training & certificationsChapter 16: Deployment at Scale (20)* Methods (5)* Kickstart* Image clone* OtherTools (15)* What can be used to deploy Linux systems at scale.* Automation to learn* Ansible* SaltPuppet* Kickstart* Terraform* Image clone* ExamplesTraining* CertificationsPart 5: When Linux has Problems (65)Chapter 17: Troubleshooting Linux (35)* Logging (20)* Logs, where to find errors* Journalctl* Increasing verbosity* Understanding ErrorsRemote logging* Monitoring (10)* Tools* Local vs remote* Finding help (5)* Tools* Getting supportChapter 18: Recovering from Disaster (20)* Reinstalling* Knowing when to start over.* Things to consider.* Recovery mode* Booting into single user mode* Fixing kernel issues* Resolving disk or mount issues.* ExerciseRescue mode* Recovering using rescue disks* ExerciseChapter 19: Backup and Restore (10)* What to backup* Explained* exerciseWhat to restore* What to restore* ExerciseT

Regulärer Preis: 66,99 €
Produktbild für Reinforcement Learning for Finance

Reinforcement Learning for Finance

This book introduces reinforcement learning with mathematical theory and practical examples from quantitative finance using the TensorFlow library.Reinforcement Learning for Finance begins by describing methods for training neural networks. Next, it discusses CNN and RNN – two kinds of neural networks used as deep learning networks in reinforcement learning. Further, the book dives into reinforcement learning theory, explaining the Markov decision process, value function, policy, and policy gradients, with their mathematical formulations and learning algorithms. It covers recent reinforcement learning algorithms from double deep-Q networks to twin-delayed deep deterministic policy gradients and generative adversarial networks with examples using the TensorFlow Python library. It also serves as a quick hands-on guide to TensorFlow programming, covering concepts ranging from variables and graphs to automatic differentiation, layers, models, and loss functions.After completing this book, you will understand reinforcement learning with deep q and generative adversarial networks using the TensorFlow library.WHAT YOU WILL LEARN* Understand the fundamentals of reinforcement learning* Apply reinforcement learning programming techniques to solve quantitative-finance problems* Gain insight into convolutional neural networks and recurrent neural networks* Understand the Markov decision processWHO THIS BOOK IS FORData Scientists, Machine Learning engineers and Python programmers who want to apply reinforcement learning to solve problems.Samit Ahlawat is a Senior Vice President in Quantitative Research, Capital Modeling at J.P. Morgan Chase in New York, US. In his current role, he is responsible for building trading strategies for asset management and for building risk management models. His research interests include artificial intelligence, risk management and algorithmic trading strategies. He has given CQF institute talks on artificial intelligence, has authored several research papers in finance and holds a patent for facial recognition technology. In his spare time, he contributes to open source code. Chapter 1 Overview1.1 Methods for Training Neural NetworksChapter 2 Convolutional Neural Networks2.1 A Simple CNN2.2 Identifying Technical Patterns in Security PricesChapter 3 Recurrent Neural Networks3.1 LSTM Network3.2 LSTM Application: Correlation in Asset ReturnsChapter 4 Reinforcement Learning4.1 Basics4.2 Methods For Estimating MDP 4.3 Value Estimation Methods4.4 Policy Learning4.5 Actor-Critic Algorithms4.6; Implementation of algorithms to quantitative finance using TensorFlow - 1Chapter 5 Recent Advances in Reinforcement Learning Algorithms5.1 Double Deep Q-Network: DDQN5.2 Dueling Double Deep Q-Network5.3 Noisy Networks5.4 Deterministic Policy Gradient

Regulärer Preis: 36,99 €
Produktbild für Cisco ACI: Zero to Hero

Cisco ACI: Zero to Hero

It doesn’t matter if you are completely new to Cisco ACI or you already have some experience with the technology, this book will guide you through the whole implementation lifecycle and provide you with a comprehensive toolset to become confident in any ACI-related task.In the beginning, it’s very important to build strong fundamental knowledge about Cisco ACI components. We'll go through underlay networking based on Nexus 9000 switches and describe the APIC controller cluster acting as the management plane of ACI. By building Access Policies, you'll see how to optimally connect servers, storage, routers, switches, or L4-L7 service devices to ACI. Then we'll properly design and implement Logical Application Policies. You will understand all the fabric forwarding behavior when using different ACI settings and architectures while getting a toolset on how to verify and troubleshoot eventual problems.This book also covers external L2 and L3 connectivity in ACI, more advanced features like integration with virtualization hypervisors and Kubernetes, service chaining of L4-L7 devices using Service Graphs, or practical approach to using REST API automation based on Python and Ansible/Terraform._Cisco ACI: Zero to Hero_ can additionally be used as a valuable source of theoretical and practical knowledge for all candidates preparing for CCIE DC v3.0 Written or Lab exams.WHAT YOU'LL LEARN* Understand network evolution and Cisco ACI components * Underlay ACI networking based on Nexus 9000 switches, APIC controllers, and Application Policy Model* Integrate ACI with virtualization hypervisors and Kubernetes* Dynamically and seamlessly include L4-L7 service devices in communication between ACI endpoints * Build ACI Anywhere: ACI Multi-Tier, Stretched Fabric, Multi-POD, Multi-Site, and Remote Leaf* Utilize ACI REST API with Python, related Cobra SDK, Ansible or Terraform, to develop automation and scripts on top of the ACI platformWHO THIS BOOK IS FORNetwork engineers, architects, network developers, administrators or NOC technicians.JAN JANOVIC, 2x CCIE No. 55858 (R&S|DC) and Cisco Certified Instructor (CCSI #35493), is an IT enthusiast with 10+ years of experience with network design, implementation and support for customers from a wide variety of industry sectors. During the last years, he has focused on data center networking, mainly, but not limited to solutions based on Cisco Nexus platforms – traditional vPC architectures, VXLAN BGP EVPN network fabrics and Cisco ACI Software-Defined Networking. All with an emphasis on mutual technology integration, automation and analytic tools. Another significant part of his job is the delivery of professional training for customers all around Europe.During his university studies, he led a group of students to the successful development of the world's first Open-Source EIGRP implementation for the Quagga Linux package (currently under the name FRRouting). He also contributed to OSPF features there.His technical focus additionally expands to public cloud topics connected with the design and deployment of AWS and Azure solutions.Chapter 1: Introduction: Datacenter Network EvolutionCHAPTER GOAL: To put Cisco ACI as a next gen modern datacenter network in the context of network evolution. Why it even exists in the first place, what it can bring for companies, etc.NO OF PAGES 12SUB -TOPICS1. Datacenter Evolution – From traditional 3 tier network architecture through network virtualization (vPC) to Leaf-Spine routed architectures.2. Explained need for new protocol – VXLAN3. Explained need for network automation – centrally managed software defined networking4. Explained need for datacenter network visibilityChapter 2: ACI Fundamentals – Underlay InfrastructureCHAPTER GOAL: Introduce readers to Cisco ACI, its components and basic concepts. It’s very important to establish strong fundamental knowledge of the technology to later build on. This chapter will focus on Underlay Infrastructure – Nexus 9000 and APICs. It explains all the architectural options when building ACI with design considerations for physical cabling and tips for High-Level Design project phases.NO OF PAGES: 46SUB - TOPICS1. Underlay Networking – Nexus 9000 Family Overview. To make sure readers understand advantages of HW based underlay network, its components and to explain main features of N9K CloudScale ASICs.2. APIC controllers. Connecting APICs to fabric, database sharding, Advantages/disadvantages of various cluster options (3, 5, 7 nodes)3. Introduction to ACI Control-plane and Data-plane concepts used in the underlay networking4. ACI Architectures – Introduction to ACI design options – Multi-Tier Fabric, Stretched Fabric, Multi-Pod, Multi-site, Remote Leaf, and Cloud deployments with Nexus Dashboard Orchestrator.Chapter 3: ACI Fabric Initialization & ManagementCHAPTER GOAL: Show readers how to properly configure all the necessary features of Cisco ACI at the beginning of the fabric deployment (including Multi-POD architecture) together with recommended best-practice global configuration and troubleshooting tips for failures in automatic switch discoveryNO OF PAGES : 72SUB - TOPICS:1. Converting standard NX-OS Leaf switch to ACI mode2. APIC Cluster Initialization and Leaf-Spine Fabric Discovery with troubleshooting3. Out-of-band and In-Band connectivity4. Global Best practice configuration and Fabric Policies (Management Access, DNS, NTP, SNMP, Syslog, MP-BGP, ACI Backup)5. Multi-POD deployment with IPN configuration and troubleshooting.Chapter 4: ACI Fundamentals - Access PoliciesCHAPTER GOAL: Introduce readers to the global Access Policies responsible for encapsulation resources management and Leaf access interface configuration. Proper understanding of Access Policies is key for using them later in Logical Tenant Application Models.NO OF PAGES : 24SUB - TOPICS:1. ACI Access Policies – VLAN Pools, Physical domains, AAEP, Interface Policy Group and Profiles, Switch Policy Group and Profiles. All with verification options.Chapter 5: ACI Fundamentals – Application Policy ModelCHAPTER GOAL: It’s crucial to properly understand main Application Policy Model, all its components and design options, when deploying Cisco ACI. Readers will receive practical information from author’s implementation experience.NO OF PAGES: 62SUB - TOPICS1. Application Policy Model – Description of main objects used for creating tenant application policies on top of common underlay network.2. EPG Design – Various approaches when creating your segmentation with EPGs. Description of microsegmentation possibilities using uEPG and ESGs.3. Contract Design – All aspects of implementing security in ACI fabric using contracts with detailed verification and hardware deployment information.4. Recommended Naming Convention – For ACI deployment, it’s crucial to prepare proper object design and naming convention because user cannot rename most of the object later.Chapter 6: Fabric Forwarding & TroubleshootingCHAPTER GOAL: To describe in detail how forwarding in ACI works. Intra-fabric as well as inter fabric use cases with different Bridge Domain Settings for Layer-2 and Layer-3 traffic.NO OF PAGES: 58SUB - TOPICS1. ACI main forwarding concepts – theory behind VXLAN encapsulation, detailed description of ACI’s control-plane mechanisms, followed by unicast and BUM (ARP) traffic forwarding in L2-L3 Bridge Domain settings.2. Multi-POD forwarding – IPN forwarding of unicast and multicast traffic. PIM/IGMP mechanisms.3. Multi-Site forwarding – ISN forwarding, BGP ingress replication of multicast data.4. Troubleshooting Toolset for Fabric Forwarding – Endpoint Tracker, ELAM, fTriage, SPAN, native Visibility & Troubleshooting Tool and interface drop analysisChapter 7: External Layer 2 & Layer 3 ConnectivityCHAPTER GOAL: Explain how to connect ACI to legacy networks for migration purposes and to provide general external connectivity for its Tenants.NO OF PAGES: 69SUB - TOPICS:1. L3 external connectivity – L3OUT components, configuring routing peering with external network – static/dynamic routing, OSPF, EIGPR, BGP routing protocols, prefix filtering, transit routing with verification and troubleshooting tools.2. L2 external connectivity – Best practices when extending legacy VLANs to ACI, Extending BD vs Extending EPG.Chapter 8: Service Chaining with L4-L7 devicesCHAPTER GOAL: Describe all the available options how to include L4-L7 devices in the data-path between ACI EPGs.NO OF PAGES: 401. ACI Service Graph construction – design options2. Routed mode vs Transparent mode, Two-Arm vs. One-Arm Deployment3. Service Graphs with Policy Based Redirect4. Troubleshooting of Service Graphs5. Symmetric Policy Based RedirectChapter 9: Integrating ACI with Virtualization and Container PlatformsCHAPTER GOAL: Introduce readers to advantages of integrating ACI with VM & Container platforms. Access Policies, vSwitch policies, dynamic VM host discovery.NO OF PAGES:521. Principles of VMware vCenter integration and configuration guide. Troubleshooting tips.2. Integrating ACI with Kubernetes – unique complete guide to spin up the Kubernetes cluster and integrate it to ACI in order to gain detailed visibility and enforce security rules.Chapter 10: ACI Automation and ProgrammabilityCHAPTER GOAL: All REST API related information with practical examples for each automation tool. Chapter covers ACI’s Object Model, Data Formats, REST Operation, Tools to access REST API – cURL, Postman, Python Requests, Cobra SDK, Ansible/Terraform orchestrators.NO OF PAGES: 821. REST API Operation – HTTP Methods, Status codes and YAML/JSON/XML data formats2. ACI Object Information Model – Object hierarchy, how to find necessary information about objects from documentation, CLI, Visore tool, API Inspector3. ACI’s REST API – URL and body construction, Authentication4. GUI/CLI tools to access REST API – cURL, Postman5. Python programming – Consuming REST API using requests library and Cobra SDK6. Ansible and Terraform automation of ACI.7. Advanced API features – pre-signed calls and API subscriptions

Regulärer Preis: 66,99 €
Produktbild für Pro Oracle SQL Development

Pro Oracle SQL Development

Write SQL statements that are more powerful, simpler, and faster using the advanced features of Oracle SQL. This updated second edition includes the newest advanced features: improved data structures (such as more JSON support and more table options), improved automated processes (such as automatic indexing), and improved SQL language extensions (such as polymorphic table functions, SQL macros, and the multilingual engine).PRO ORACLE SQL DEVELOPMENT is for anyone who already knows Oracle SQL and is ready to take their skills to the next level. This book provides a clearer way of thinking about SQL by building sets, and it provides practical advice for using complex features while avoiding anti-patterns that lead to poor performance and wrong results. Relevant theories, real-world best practices, and style guidelines help you get the most out of Oracle SQL.Many developers, testers, analysts, and administrators use Oracle databases frequently, but their queries are limited because they do not take advantage of Oracle’s advanced features. This book inspires you to achieve more with your Oracle SQL statements by creating your own style for writing simple, yet powerful, SQL. It teaches you how to think about and solve performance problems in Oracle SQL, and it covers enough advanced topics to put you on the path to becoming an Oracle expert.WHAT YOU'LL LEARN* Solve challenging problems with declarative SQL instead of procedural languages* Write SQL statements that are large and powerful, but also elegant and fast* Create development environments that are simple, scalable, and conducive to learning* Visualize and understand SQL more intuitively* Apply advanced syntax, objects, and architecture* Avoid SQL anti-patterns that accumulate technical debt* Tune SQL statements with multiple strategies that can significantly improve performanceWHO THIS BOOK IS FORDevelopers, testers, analysts, and administrators who want to harness the full power of Oracle SQL to solve their problems as simply and as quickly as possible; traditional database professionals looking for new ways of thinking about the language they have used for so long; and modern full stack developers who need an explanation of how a database can be much more than simply a place to store dataJON HELLER is an expert SQL and PL/SQL programmer with 20 years of Oracle experience. He has worked as a database developer, analyst, and administrator. In his spare time, he is active on Stack Overflow where he is a top user in the Oracle and PL/SQL tags. He enjoys creating open-source software. He has a Master of Computer Science degree from North Carolina State University, and lives in Iowa with his wife and two sons.PART I: LEARN HOW TO LEARNChapter 1: Understand Relational DatabasesChapter 2: Create an Efficient Database Development ProcessChapter 3: Increase Confidence and Knowledge with TestingChapter 4: Find Reliable SourcesChapter 5: Master the Entire StackPART II: WRITE POWERFUL SQL WITH SETS AND ADVANCED FEATURESChapter 6: Build Sets with Inline Views and ANSI Join SyntaxChapter 7: Query the Database with Advanced SELECT FeaturesChapter 8: Modify Data with Advanced DMLChapter 9: Improve the Database with Advanced Schema ObjectsChapter 10: Optimize the Database with Oracle ArchitecturePART III: WRITE ELEGANT SQL WITH PATTERNS AND STYLESChapter 11: Stop Coding and Start WritingChapter 12: Write Large SQL StatementsChapter 13: Write Beautiful SQL StatementsChapter 14: Use SQL More Often with Basic Dynamic SQLChapter 15: Avoid Anti-PatternsPART IV: IMPROVE SQL PERFORMANCEChapter 16: Understand SQL Performance with Algorithm AnalysisChapter 17: Understand SQL Tuning TheoriesChapter 18: Improve SQL PerformancePART V: SOLVE ANYTHING WITH ORACLE SQLChapter 19: Solve Challenging Problems with Arcane SQL FeaturesChapter 20: Use SQL More Often with Advanced Dynamic SQLChapter 21: Level Up Your Skills with PL/SQLPART VI: APPENDIXESAppendix A: SQL Style Guide Cheat SheetAppendix B: Computer Science Topics

Regulärer Preis: 66,99 €
Produktbild für Practical GitOps

Practical GitOps

Infrastructure as Code (IaC) is gaining popularity and developers today are deploying their application environments through IaC tools to the cloud. However, it can become extremely difficult and time-consuming to manage the state of the infrastructure that has been deployed. This book will provide a complete walkthrough of deploying a SpringBoot application on AWS with multiple environments like production, staging and development. Everything is orchestrated through GitHub Actions and executed through Terraform Cloud to monitor changes in your infrastructure and manage its state.You'll start by reviewing how your infrastructure can be stored in code by spinning up an EC2 server first through the console, then AWS CLI and then using Terraform. You'll then be presented with a practical scenario of setting up a simple EC2 server in a multi-environment (production, staging and development) using GitHub Actions and Terraform Cloud. In the advanced section that follows, this simple EC2 server is expanded into an application that is deployed on an AWS EKS (Elastic Kubernetes Service) using AWS RDS (Relational Database Service) exposed through an AWS ALB (Application Load Balancer) protected using AWS ACM (AWS Certificate Manager), and accessible by setting the AWS Route53.The book then builds up on this infrastructure and demonstrates how it can be deployed in a multi-environment scenario by implementing accounts through AWS organizations. You'll see how to put in restrictions through Service Control Policies, how to protect secrets using AWS Secrets Manager, and how to work with least privileges using IRSA (IAM Roles for Service Accounts). Finally, you'll make the infrastructure more observable using Graphana, Prometheus, and AWS OpenSearch, run security tools, host Route53 zones dynamically based on environments, and implement CloudWatch Alarms for various use cases.ROHIT SALECHA is a technology enthusiast with over 11 years of experience in IT and the Cybersecurity industry. He loves to find security flaws in the web applications and api's, automate boring tasks and tinker around with new tech and help design secure by default systems. Lately, he has become quite smitten by the DevOps technologies and techniques and loves tinkering around with them.PART I - SETTING UP GITOPSCHAPTER 1: WHAT IS GITOPS?1. The Era of DevOps2. Infrastructure as Code3. What is GitOps?CHAPTER 2: INTRODUCTION TO AWS1. Introduction to AWS2. Creating an EC2 machine from AWS Console3. Creating an EC2 machine using aws-cliCHAPTER 3: INTRODUCTION TO TERRAFORM1. Introduction to Terraform2. Basic Syntaxes3. Creating an EC2 machine using TerraformCHAPTER 4: INTRODUCTION TO TERRAFORM CLOUD AND WORKSPACES1. Preparing for Multi-environment2. Introduction to Terraform Workspaces3. Introduction to Terraform Cloud4. Attaching Github Repo to Terraform CloudCHAPTER 5: INTRODUCTION TO GITHUB ACTIONS1. Drawbacks of connecting to Github Repository2. Introducing Github Actions3. Deploying EC2 terraform code using Github Actions4. Multi-environment strategyCHAPTER 6: WORDPRESS ON AWS EKS1. AWS EKS,EFS,RDS Architecture2. Walkthrough of Terraform Code3. Walkthrough of Kubernetes Manifest Files4. Deploying Wordpress in Dev and Prod.PART II - OPERATING WITH GITOPSCHAPTER 7: AUTHENTICATION AND AUTHORIZATION1. Kubernetes Provider Authentication in Terraform2. Exploring the aws-auth ConfigMap3. Understanding IRSA(IAM Roles and Service Accounts)4. Connect AWS IAM Role with Kubernetes Service Account5. AWS User access in KubernetesCHAPTER 8: SECURITY AND SECRET MANAGEMENT1. Implementing HTTPS using AWS ACM2. Storing Database Password in AWS Secrets Manager3. Integrating Security tools in GitOps pipelineCHAPTER 9: BACKUP AND DISASTER RECOVERY1. Database Snapshot in AWS SSM Parameter Store2. Deploying in Another AWS RegionCHAPTER 10: OBSERVABILITY1. Collecting Metrics and Logs2. Performance Monitoring using Graphana/Prometheus3. Log Collection using EFK (Elastic Filebeat and Kibana)

Regulärer Preis: 62,99 €
Produktbild für Productionizing AI

Productionizing AI

This book is a guide to productionizing AI solutions using best-of-breed cloud services with workarounds to lower costs. Supplemented with step-by-step instructions covering data import through wrangling to partitioning and modeling through to inference and deployment, and augmented with plenty of Python code samples, the book has been written to accelerate the process of moving from script or notebook to app.From an initial look at the context and ecosystem of AI solutions today, the book drills down from high-level business needs into best practices, working with stakeholders, and agile team collaboration. From there you’ll explore data pipeline orchestration, machine and deep learning, including working with and finding shortcuts using artificial neural networks such as AutoML and AutoAI. You’ll also learn about the increasing use of NoLo UIs through AI application development, industry case studies, and finally a practical guide to deploying containerized AI solutions.The book is intended for those whose role demands overcoming budgetary barriers or constraints in accessing cloud credits to undertake the often difficult process of developing and deploying an AI solution.WHAT YOU WILL LEARN* Develop and deliver production-grade AI in one month* Deploy AI solutions at a low cost* Work around Big Tech dominance and develop MVPs on the cheap* Create demo-ready solutions without overly complex python scripts/notebooksWHO THIS BOOK IS FOR:Data scientists and AI consultants with programming skills in Python and driven to succeed in AI.BARRY WALSH is a software-delivery consultant and AI trainer at Pairview with a background in exploiting complex business data to optimize and de-risk energy assets at ABB/Ventyx, Infosys, E.ON, Centrica, and his own start-up ce.tech. He has a proven track record of providing consultancy services in Data Science, BI, and Business Analysis to businesses in Energy, IT, FinTech, Telco, Retail, and Healthcare, Barry has been at the apex of analytics and AI solutions delivery for 20 years. Besides being passionate about Enterprise AI, Barry spends his spare time with his wife and 8-year-old son, playing the piano, riding long bike rides (and a marathon on a broken toe this year), eating out whenever possible or getting his daily coffee fix.Chapter 1: Introduction to AI & the AI EcosystemChapter Goal: Embracing the hype and the pitfalls, introduces the reader to current and emerging trends in AI and how many businesses and organisations are struggling to get machine and deep learning operationalizedNo of pages: 30Sub -Topics1. The AI ecosystem2. Applications of AI3. AI pipelines4. Machine learning5. Neural networks & deep learning6. Productionizing AIChapter 2: AI Best Practise & DataOpsChapter Goal: Help the reader understand the wider context for AI, key stakeholders, the importance of collaboration, adaptability and re-use as well as DataOps best practice in delivering high-performance solutionsNo of pages: 20Sub - Topics1. Introduction to DataOps and MLOps2. Agile development3. Collaboration and adaptability4. Code repositories5. Module 4: Data pipeline orchestration6. CI / CD7. Testing, performance evaluation & monitoringChapter 3: Data Ingestion for AIChapter Goal: Inform on best practice and the right (cloud) data architectures and orchestration requirements to ensure the successful delivery of an AI project.No of pages : 20Sub - Topics: 1. Introduction to data ingestion2. Data stores for AI3. Data lakes, warehousing & streaming4. Data pipeline orchestrationChapter 4: Machine Learning on CloudChapter Goal: Top-down ML model building from design thinking, through high level process, data wrangling, unsupervised clustering techniques, supervised classification, regression and time series approaches before interpreting results and algorithmic performanceNo of pages: 20Sub - Topics:1. ML fundamentals2. EDA & data wrangling3. Supervised & unsupervised machine learning4. Python Implementation5. Unsupervised clustering, pattern & anomaly detection6. Supervised classification & regression case studies: churn & retention modelling, risk engines, social media sentiment analysis7. Time series forecasting and comparison with fbprophetChapter 5: Neural Networks and Deep LearningChapter Goal: Help the reader establish the right artificial neural network architecture, data orchestration and infrastructure for deep learning with TensorFlow, Keras and PyTorch on CloudNo of pages: 40Sub - Topics:1. An introduction to deep learning2. Stochastic processes for deep learning3. Artificial neural networks4. Deep learning tools & frameworks5. Implementing a deep learning model6. Tuning a deep learning model7. Advanced topics in deep learningChapter 6: The Employer’s Dream: AutoML, AutoAI and the rise of NoLo UIsChapter Goal: Building on acquired ML and DL skills, learn to leverage the growing ecosystem of AutoML, AutoAI and No/Low code user interfacesNo of pages: 20Sub - Topics:1. AutoML2. Optimizing the AI pipeline3. Python-based libraries for automation4. Case Studies in Insurance, HR, FinTech & Trading, Cybersecurity and Healthcare5. Tools for AutoAI: IBM Cloud Pak for Data, Azure Machine Learning, Google Teachable MachinesChapter 7: AI Full Stack: Application DevelopmentChapter Goal: Starting from key business/organizational needs for AI, identify the correct solution and technologies to develop and deliver “Full Stack AI”No of pages: 20Sub - Topics:6. Introduction to AI application development7. Software for AI development8. Key Business applications of AI:• ML Apps• NLP Apps• DL Apps4. Designing & building an AI applicationChapter 8: AI Case StudiesChapter Goal: A comprehensive (multi-sector, multi-functional) look at the main AI use uses in 2022No of pages: 20Sub - Topics:1. Industry case studies2. Telco solutions3. Retail solutions4. Banking & financial services / fintech solutions5. Oil & gas / energy & utilities solutions6. Supply chain solutions7. HR solutions8. Healthcare solutions9. Other case studiesChapter 9: Deploying an AI Solution (Productionizing & Containerization)Chapter Goal: A practical look at “joining the dots” with full-stack deployment of Enterprise AI on CloudNo of pages: 20Sub - Topics:1. Productionizing an AI application2. AutoML / AutoML3. Storage & Compute4. Containerization5. The final frontier…

Regulärer Preis: 62,99 €
Produktbild für Game Backend Development

Game Backend Development

Up your game developer skills by learning game backend development with Microsoft Azure and PlayFab.Robust backend infrastructure support is essential for all modern games. Implementing game backend features became easier with the emergence of GBaaS (Game Backend-as-a-Service) providers and the advance of the cloud. Multiplayer gaming, leaderboards, game analytics, and virtual economies are all backed by cloud services.As a game developer, understanding core game backend features and implementation techniques is an important addition to your game developer skill set. Understanding game backend development will not only give you a competitive advantage, it will also eventually allow you to create better games.This book will help you get started. It teaches all the core concepts, using downloadable source code, so that you can experiment right away following a learning-by-doing approach.After reading this book, you will have a solid grasp of key game backend services and know how to implement them.WHAT YOU WILL LEARN* Understand core concepts around game backend development* Use the PlayFab API to implement backend features* Build game backend infrastructure using Microsoft Azure cloud (architecture and implementation)* Contrast the traditional Azure cloud- and PlayFab (GBaaS)-based implementations of game backend capabilities* Reuse source code to enable backend capability in your own games* Discover different ways for authenticating players* Implement a multiplayer game in Unity with the help of mirror networking* Create a matchmaker to bring together players for an online game session* Establish leaderboards to reinforce player competition* Build a virtual economy and monetize your game* Set up game analytics and gain insight into players’ behavior* Let players communicate with each other by taking advantage of cognitive services* Learn how to implement server-side custom game backend logicWHO THIS BOOK IS FORGame developers who may be skilled in game development, but who possess little to no skills in GBaaS and cloud computing. This book is also for professionals working in the cloud solutions space who want to learn about the specific challenges of the gaming domain.BALINT BORS is a cloud solutions architect based in Munich, Germany. He has over 15 years of experience developing software and building IT infrastructures for many companies and industries. Balint also consults with and advises technical teams on applying cloud technologies. He is a Microsoft Certified Azure Solutions Architect Expert.1. Introducing and Contrasting Backend DevelopmentGoal: In this chapter introduce the background of this book, how I came to the idea to write it, what is the goal, who is this book for, and the technology stack I am going to discuss. Also, give a bit of insight into the gaming ecosystem, which other providers and technologies are there, how those compare to the actually described ones. I want to discuss the key components and features that address the fundamental pain points and requirements of our target audience.1.1. Initial Thoughts1.2. Game Backend and Frontend1.3. Game Engines1.4. Unity1.5. BaaS (Backend-as-a-Service) vs. Public Cloud1.6. Popular BaaS providers, comparison1.7. Top5 Cloud providers, comparison1.8. Indie vs. AAA games and their requirements2. Concepts of Backend DevelopmentGoal: In this chapter, I am going to describe the general concepts related to game backend development. The description is independent of the technology used and helps the reader understand what are the features we can have if we extend our game frontend with backend capabilities.2.1. Overview2.2. Leaderboard2.3. Matchmaking2.4. Player Authentication2.5. Chat2.6. Analytics2.7. Server Hosting2.8. Selling Items2.9. Artificial Intelligence3. Setting up a Simple Local Multiplayer Game.Goal: This part will cover the prerequisites for the next chapters. I will show how to use Unity Assets, Mirror Networking library, and other tools and techniques to implement a simple local multiplayer game. The reader can also download the source code from GitHub directly. We will build upon this game in the next chapters, where we implement the features from the previous chapter.3.1. Prerequisites3.2. Sample Game3.3. Multiple Unity Instances3.4. Mirror Networking3.5. Local Multiplayer Game3.6. Advanced Networking4. Up and Running on PlayFabGoal: This is one of the core chapters. Here I describe how to implement backend features to games. This also includes source code, so the reader can use them in their game right away. It also includes explanations, best practices, tips and tricks and pitfalls developers should know. It is all very specific and practical. I use the PlayFab BaaS (Backend-as-a-Service) and API to implement these features.4.1. Overview4.2. Setting up PlayFab4.3. Leaderboard4.4. Matchmaking4.5. Player Authentication4.6. Chat4.7. Analytics4.8. Server Hosting4.9. Selling Items4.10. Artificial Intelligence5. Build Your Own Custom Game Backend in AzureGoal: This is another way to reach the same goals as in the earlier chapter, but now by using Azure. (Hint: game developers can implement backend features by turning to a BaaS provider like PlayFab. Then they don’t need to build cloud infrastructure components like virtual machines or databases by themselves). In this chapter the developer choose the hard way, and build his own Microsoft Azure cloud based game backend. The same features as above are built here, again with source code and explanations.5.1. Overview5.2. Setting up Microsoft Azure5.3. Leaderboard5.4. Matchmaking5.5. Player Authentication5.6. Chat5.7. Analytics5.8. Server Hosting5.9. Selling Items5.10. Artificial Intelligence6. Next Steps in Game Development LearningGoal: I want to draw a conclusion on my experience building game backend with both a BaaS (PlayFab) and a cloud (Azure) service provider. I want to help game developers make the right decision based on their situation. Some of the key aspects are budget, skills, time, team size, target market and region. I consider adding here a section with further readings providing references to sources I found useful.6.1. Final Thoughts6.2. References

Regulärer Preis: 46,99 €
Produktbild für SAP S/4HANA Financial Accounting Configuration

SAP S/4HANA Financial Accounting Configuration

Upgrade your knowledge to learn S/4HANA, the latest version of the SAP ERP system, with its built-in intelligent technologies, including AI, machine learning, and advanced analytics.Since the first edition of this book published as SAP ERP Financial and Controlling: Configuration and Use Management, the perspective has changed significantly as S/4HANA now comes with new features, such as FIORI (new GUI), which focuses on flexible app style development and interactivity with mobile phones. It also has a universal journal, which helps in data integration in a single location, such as centralized processing, and is faster than ECC S/3. It merges FI & CO efficiently, which enables document posting in the Controlling area setup. General Ledger Accounts (FI) and Cost Element (CO) are mapped together in a way that cost elements (both primary and secondary) are part of G/L accounts. And a mandatory setup of customer-vendor integration with business partners is included vs the earlier ECC creation with separate vendor master and customer master.This updated edition presents new features in SAP S/4HANA, with in-depth coverage of the FI syllabus in SAP S/4HANA. A practical and hands-on approach includes scenarios with real-life examples and practical illustrations. There is no unnecessary jargon in this configuration and end-user manual.WHAT YOU WILL LEARN* Configure SAP FI as a pro in S/4* Master core aspects of Financial Accounting and Controlling* Integrate SAP Financial with other SAP modules* Gain a thorough hands-on experience with IMG (Implementation Guide)* Understand and explain the functionalities of SAP FIWHO THIS BOOK IS FORFI consultants, trainers, developers, accountants, and SAP FI support organizations will find the book an excellent reference guide. Beginners without prior FI configuration experience will find the step-by-step illustrations to be practical and great hands-on experience.ANDREW OKUNGBOWA is an accountant and a business advisor with 20+ years of experience solving complex business issues. He is an acclaimed author of several books in accounting and finance. He also co-founded Spoxio App, a sports app design for sports professionals, sports enthusiasts, and fans to network on a mobile app.Andrew holds a combined bachelor’s degree in accounting and IT, a master’s degree in Investment and Finance, and an associate status with the Institute of Financial Accountants. He has over 15 years of experience in SAP FI/CO consulting and over 20 years of accounting and finance experience in a number of FTSE 100/250 companies in the UK and abroad.Andrew has sat on the board of several companies in the UK, such as Changing Lives Housing Trust, and Twenty-Fifth Avenue Ltd.Chapter 1: Organizational Unit.-Chapter 2: Defining Chart of Accounts.-Chapter 3: Document Control.-Chapter 4: Tolerance Group.-Chapter 5: Creating General Ledger (G/L).-Chapter 6: Clearing Open Items.-Chapter 7: Maintaining Currency Types & Currency Pairs.-Chapter 8: GR/IR Clearing.-Chapter 9: House Bank.-Chapter 10: Tax on Sale/Purchase.-Chapter 11: Cash Journal.-Chapter 12: Financial Statement Versions (FSV).-Chapter 13: Integration of FI with Other SAP S4 HANA Modules.-Chapter 14: Accounts Receivable & Accounts Payable.-Chapter 15: Defining Dunning Procedure.-Chapter 16: ISpecial G/L Transactions.-Chapter 17: Ledgers.

Regulärer Preis: 62,99 €
Produktbild für Kubernetes Programming with Go

Kubernetes Programming with Go

This book begins by introducing the structure of the Kubernetes API and which operations it serves. Following chapters demonstrate how to write native Kubernetes resources definitions using Go structures defined in the API and API Machinery libraries. Miscellaneous utilities are described to help you work with different resource fields and to convert your resource definitions to or from YAML or JSON. Next, you will learn how to interact with the Kubernetes API server to create, delete, update, and monitor resources in a cluster using the client-go library. A complete chapter is devoted to tools provided to test your programs using the client-go library. An example follows to wrap up the first part of the book, describing how to write a kubectl plugin. Next, you will learn how to extend the Kubernetes API using Custom Resource Definitions, and how to write Kubernetes resources in a generic way as well as how to create your own resources using the unstructured concept. The next chapters delve into the controller-runtime library, useful for extending Kubernetes by writing operators, and the kubebuilder framework, which leverages this library, to help you start writing operators in minutes.After reading this book, you will have a deep understanding of the Kubernetes API’s structure and how Kubernetes resources are organized within it, and have at your disposal a complete toolbox to help you write Kubernetes clients and operators.WHAT YOU WILL LEARN* Understand how the Kubernetes API and its resources are organized* Write Kubernetes resources in Go* Create resources in a cluster* Leverage your newly-gained knowledge to write Kubernetes clients and operatorsWHO IS THIS BOOK FOR:Software engineers and (Site Reliability Engineers) SREs wishing to write Kubernetes clients and operators using the Go language.Philippe Martin has been working with Kubernetes for five years, first by creating an operator to deploy video CDNs into the cloud, later helping companies deploy their applications into Kubernetes, then writing a client to help developers work in a Kubernetes environment. Philippe passed the CKAD, CKA and CKS certifications.He has long experience with distributed systems and open-source software: he started his career 20 years ago creating thin clients based on the Linux kernel and open source components. He is currently working at Red Hat on the Development Tools team.Philippe is active in the development of Kubernetes, especially its documentation, and participates in the translation of the official documentation into French, has edited two reference books about the Kubernetes API and kubectl, and is responsible for the French translation of the Kubernetes Dashboard. He participated in Google Season of Docs to create the new Kubernetes API Reference section of the official documentation, and is maintaining it. He is currently participating in the Apps SIG, a group that covers deploying and operating applications in Kubernetes.Chapter 1: Kubernetes API Introduction.Chapter 2: Kubernetes API Operations.Chapter 3: Working with API Resources in Go.Chapter 4: Using Common types.Chapter 5: The API Machinery.Chapter 6: The Client-go library.Chapter 7: Testing Applications using Client-Go.Chapter 8: Extending Kubernetes API with Custom Resources Definitions.Chapter 9: Working with Custom Resources.Chapter 10: Writing Operators with the controller-runtime Library.Chapter 11: Writing the Reconcile Loop.Chapter 12: Testing the Reconcile Loop.Chapter 13: Creating an Operator with Kubebuilder.

Regulärer Preis: 62,99 €
Produktbild für Exploring Game Mechanics

Exploring Game Mechanics

Learn simple yet powerful, modern-day techniques used in various gaming genres, including casual and puzzle, strategy and simulation, action-adventure, and role-playing. This book is your pocket-sized guide to designing interesting and engaging mechanics for any type of game.Exploring Game Mechanics is a cornucopia of concepts related to gameplay mechanics that you can use to create games that are fun and rewarding to play. Dive into key gameplay elements that improve the player experience, such as implementing in-game tutorials, controlling the flow of player-choice-based games, and building a game narrative through storytelling. Understand how to establish the game’s end goal for the player to work towards by creating quests, missions, and objectives. Explore the key ideas behind creating immersive game worlds, generating better NPCs and enemies, and controlling the in-game economy. Finally, discover the unique mechanics that make established industry games so successful.WHAT YOU WILL LEARN* Discover the key elements that make gameplay immersive and entertaining* Develop players and NPCs through customization and levelling up * Gain insight into the tried-and-tested concepts behind modern-day games WHO IS THIS BOOK FORGame development enthusiasts with little to no knowledge of game mechanics will find the content informative and useful. MAITHILI DHULe is an Engineer by profession, writer by choice, and an aspiring game developer at heart. She is the author of Beginning Game Development with Godot, a beginner’s guide to creating and publishing 2D Platform games from scratch. After a friend introduced her to the art of creating games, it quickly became one of her passions. She can be found creating pixel art or being immersed in one of her favorite games in her free time. She also enjoys trying out new restaurants, sketching portraits, writing poetry, and going for runs while listening to a good music playlist.CHAPTER 1: WHY DO WE PLAY GAMES?Sub –topics:• What players look for in a game: Novelty, creativity, and a sense of achievement• Appeal of different game genres such as action RPGs, puzzles, casual and simulation games• Role of game art and game aesthetics in increasing player motivation• What are game mechanics? • Impact of game mechanics on the player experienceCHAPTER 2: CREATING FUN GAMEPLAYSub – topics:• Difference between linear and non-linear games• Controlling flow of non-linear, player-choice based games• Controlling difficulty of gameplay through game balancing and teaching player through in-game tutorials• Storytelling and the game narrative• Creating quests and missions for establishing the end-goal of the gameCHAPTER 3: FREEDOM TO EXPLORE NEW WORLDSSub - topics:• Implementing player progression by developing player’s skills and abilities and levelling up the player through achievements• Movement mechanics: controlling the player through user input• Mechanics for in-game travel with the help of maps and guides, transport vehicles, instant teleportation methods, and shortcuts in the game levels• Game world and environment mechanics, including concepts such as creating infinite open worlds through procedural generation and realistic weather systemsCHAPTER 4: DEFEAT, COLLECT, REPEATSub - topics:• Enemy and NPC generation using artificial intelligence and creating combat mechanics• Establishing victory and defeat conditions• Managing the player inventory, controlling the internal game economy, and resource management in games• Implementing a reward system such as collection or trading of in-game currency, spawing natural resources in the game• Unlocking new game levels and areas and greater player customization as the character levels upCHAPTER 5: CHOOSE YOUR MECHANICSSub - topics:• Tips for choosing game mechanics• Designing game mechanics for different kinds of players such as achievers, skillers, and completionists• Analysis of game mechanics in existing games of different genres:o Sims (simulation)o Fallout (role playing)o Age of empires (base building)o Life is strange (player-choice based)o No man’s sky (procedurally generated survival)• Prototyping, trial and error

Regulärer Preis: 36,99 €
Produktbild für Time Series Algorithms Recipes

Time Series Algorithms Recipes

This book teaches the practical implementation of various concepts for time series analysis and modeling with Python through problem-solution-style recipes, starting with data reading and preprocessing.It begins with the fundamentals of time series forecasting using statistical modeling methods like AR (autoregressive), MA (moving-average), ARMA (autoregressive moving-average), and ARIMA (autoregressive integrated moving-average). Next, you'll learn univariate and multivariate modeling using different open-sourced packages like Fbprohet, stats model, and sklearn. You'll also gain insight into classic machine learning-based regression models like randomForest, Xgboost, and LightGBM for forecasting problems. The book concludes by demonstrating the implementation of deep learning models (LSTMs and ANN) for time series forecasting. Each chapter includes several code examples and illustrations.After finishing this book, you will have a foundational understanding of various concepts relating to time series and its implementation in Python.WHAT YOU WILL LEARN* Implement various techniques in time series analysis using Python.* Utilize statistical modeling methods such as AR (autoregressive), MA (moving-average), ARMA (autoregressive moving-average) and ARIMA (autoregressive integrated moving-average) for time series forecasting * Understand univariate and multivariate modeling for time series forecasting* Forecast using machine learning and deep learning techniques such as GBM and LSTM (long short-term memory)WHO THIS BOOK IS FORData Scientists, Machine Learning Engineers, and software developers interested in time series analysis.AKSHAY KULKARNI IS an AI and machine learning (ML) evangelist and a thought leader. He has consulted several Fortune 500 and global enterprises to drive AI and data science-led strategic transformations. He has been honoured as Google Developer Expert, and is an Author and a regular speaker at top AI and data science conferences (including Strata, O’Reilly AI Conf, and GIDS). He is a visiting faculty member for some of the top graduate institutes in India. In 2019, he has been also featured as one of the top 40 under 40 Data Scientists in India. In his spare time, he enjoys reading, writing, coding, and helping aspiring data scientists. He lives in Bangalore with his family.ADARSHA SHIVANANDA IS a Data science and MLOps Leader. He is working on creating worldclass MLOps capabilities to ensure continuous value delivery from AI. He aims to build a pool of exceptional data scientists within and outside of the organization to solve problems through training programs, and always wants to stay ahead of the curve. He has worked extensively in the pharma, healthcare, CPG, retail, and marketing domains. He lives in Bangalore and loves to read and teach data science.ANOOSH KULKARNI is a data scientist and a Senior AI consultant. He has worked with global clients across multiple domains and helped them solve their business problems using machine learning (ML), natural language processing (NLP), and deep learning.. Anoosh is passionate about guiding and mentoring people in their data science journey. He leads data science/machine learning meet-ups and helps aspiring data scientists navigate their careers. He also conducts ML/AI workshops at universities and is actively involved in conducting webinars, talks, and sessions on AI and data science. He lives in Bangalore with his family.V ADITHYA KRISHNAN is a data scientist and ML Ops Engineer. He has worked with various global clients across multiple domains and helped them to solve their business problems extensively using advanced Machine learning (ML) applications. He has experience across multiple fields of AI-ML, including, Time-series forecasting, Deep Learning, NLP, ML Operations, Image processing, and data analytics. Presently, he is working on a state-of-the-art value observability suite for models in production, which includes continuous model and data monitoring along with the business value realized. He also published a paper at an IEEE conference, “Deep Learning Based Approach for Range Estimation," written in collaboration with the DRDO. He lives in Chennai with his family.Chapter 1: Getting Started with Time Series.Chapter Goal: Exploring and analyzing the timeseries data, and preprocessing it, which includes feature engineering for model building.No of pages: 25Sub - Topics1 Reading time series data2 Data cleaning3 EDA4 Trend5 Noise6 Seasonality7 Cyclicity8 Feature Engineering9 StationarityChapter 2: Statistical Univariate ModellingChapter Goal: The fundamentals of time series forecasting with the use of statistical modelling methods like AR, MA, ARMA, ARIMA, etc.No of pages: 25Sub - Topics1 AR2 MA3 ARMA4 ARIMA5 SARIMA6 AUTO ARIMA7 FBProphetChapter 3: Statistical Multivariate ModellingChapter Goal: implementing multivariate modelling techniques like HoltsWinter and SARIMAX.No of pages: 25Sub - Topics: 1 HoltsWinter2 ARIMAX3 SARIMAXChapter 4: Machine Learning Regression-Based Forecasting.Chapter Goal: Building and comparing multiple classical ML Regression algorithms for timeseries forecasting.No of pages: 25Sub - Topics:1 Random Forest2 Decision Tree3 Light GBM4 XGBoost5 SVMChapter 5: Forecasting Using Deep Learning.Chapter Goal: Implementing advanced concepts like deep learning for time series forecasting from scratch.No of pages: 25Sub - Topics:1 LSTM2 ANN3 MLP

Regulärer Preis: 36,99 €
Produktbild für Blockchain for Real World Applications

Blockchain for Real World Applications

BLOCKCHAIN FOR REAL WORLD APPLICATIONSA COMPREHENSIVE EXAMINATION OF BLOCKCHAIN ARCHITECTURE AND ITS KEY CHARACTERISTICSBlockchain architecture is a way of recording data such that it cannot be altered or falsified. Data is recorded in a kind of digital ledger called a blockchain, copies of which are distributed and stored across a network of participating computer systems. With the advent of cryptocurrencies and NFTs, which are entirely predicated on blockchain technology, and the integration of blockchain architecture into online and high-security networked spaces more broadly, there has never been a greater need for software, network, and financial professionals to be familiar with this technology. Blockchain for Real World Applications provides a practical discussion of this subject and the key characteristics of blockchain architecture. It describes how blockchain technology gains its essential irreversibility and persistency and discusses how this technology can be applied to the information and security needs of different kinds of businesses. It offers a comprehensive overview of the ever-growing blockchain ecosystem and its burgeoning role in a connected world. Blockchain for Real World Applications readers will also find:* Treatment of real-world applications such as ID management, encryption, network security, and more* Discussion of the UID (Unique Identifier) and its benefits and drawbacks * Detailed analysis of privacy issues such as unauthorized access and their possible blockchain-based solutionsBlockchain for Real World Applications is a must for professionals in high-security industries, as well as for researchers in blockchain technologies and related areas. RISHABH GARG, Birla Institute of Technology and Science - Pilani, India. He has authored two books and has extensive professional experience in blockchain architecture and related technologies. Illustrations xixForeword xxvPreface xxvii1 INTRODUCTION 12 DISTRIBUTED LEDGER TECHNOLOGY 112.1 Different Types of Distributed Ledger Technology 112.2 Chronological Evolution 132.3 Blockchain Architecture 153 BLOCKCHAIN ECOSYSTEM 233.1 Working of Blockchain 243.2 Key Characteristics 293.3 Unspent Transaction Output 303.4 Classification of Blockchain on Access Management 303.5 Consensus 323.6 Payment Verification in Blockchain 373.7 Hashgraph 393.8 Scalability 404 TRANSACTIONS IN BITCOIN BLOCKCHAIN 434.1 Coinbase Transactions 434.2 Transactions Involving Fiat Currency 474.3 Top Fiat Currencies for Bitcoin Transactions 504.4 Price Determination for Bitcoin in Transactions 514.5 Controlling Transaction Costs in Bitcoin 575 ETHEREUM AND HYPERLEDGER FABRIC 675.1 Early Attempts to Program Cryptocurrencies 685.2 Smart Contracts 695.3 Working of Ethereum 725.4 Hyperledger 745.5 Working of Hyperledger 745.6 Ethereum Versus Hyperledger 795.7 Decentralized Applications 815.8 Tokens 846 IDENTITY AS A PANACEA FOR THE REAL WORLD 876.1 Identity Systems 876.2 Centralized Model 926.3 Cost and Benefits 1006.4 Quest for One World – One Identity 1087 DECENTRALIZED IDENTITIES 1157.1 Identity Models 1157.2 Block chain-based Solutions 1177.3 Identity Management 1197.4 Identity Storage | Interplanetary File System 1217.5 Biometric Solutions 1307.6 Identity Access 1397.7 Merits of a Proposed System 1417.8 Disadvantages of the Proposed System 1447.9 Challenges 1457.10 Solutions with Hyperledger Fabric 1468 ENCRYPTION AND CYBERSECURITY 1518.1 Cryptography 1518.2 Playfair Cipher 1538.3 Hill Cipher 1678.4 RSA Algorithm in Cryptography 1718.5 Multiple Precision Arithmetic Library 1758.6 SHA-512 Hash in Java 1808.7 Cybersecurity 1839 DATA MANAGEMENT 1939.1 Data Science 1939.2 Education and Employment Verification 1949.3 Health Care 2049.4 Genomics 2109.5 Food Supply Chain 2119.6 Real Estate 2139.7 Crowd Operations 21610 BANKING AND FINANCE 22710.1 Banking and Investment 22710.2 Trade Finance 23610.3 Auction Process 24810.4 Decentralized Finance 26310.5 Prediction Markets 28611 GROWING LANDSCAPE OF BLOCKCHAIN 29711.1 Blockchain Applications in Real World: An Overview 29711.2 e-Governance 29711.3 Supply Chain Management 30511.4 e-Commerce 31011.5 Distributed Resources and Internet of Things 31711.6 Decentralized Streaming 32012 FUNCTIONAL MECHANISM 32912.1 Software Requirements 32912.2 Installing a Mobile Application 33012.3 Fetching or Uploading the Documents 33112.4 Government or Third-party Access 33512.5 Credibility Through Smart Contracts 33612.6 User-Optimized Features 337Appendices 339Glossary 347Index 371

Regulärer Preis: 103,99 €
Produktbild für A Textbook of Data Structures and Algorithms, Volume 3

A Textbook of Data Structures and Algorithms, Volume 3

Data structures and algorithms is a fundamental course in Computer Science, which enables learners across any discipline to develop the much-needed foundation of efficient programming, leading to better problem solving in their respective disciplines.A Textbook of Data Structures and Algorithms is a textbook that can be used as course material in classrooms, or as self-learning material. The book targets novice learners aspiring to acquire advanced knowledge of the topic. Therefore, the content of the book has been pragmatically structured across three volumes and kept comprehensive enough to help them in their progression from novice to expert.With this in mind, the book details concepts, techniques and applications pertaining to data structures and algorithms, independent of any programming language. It includes 181 illustrative problems and 276 review questions to reinforce a theoretical understanding and presents a suggestive list of 108 programming assignments to aid in the implementation of the methods covered.G A VIJAYALAKSHMI PAI, SMIEEE, is a Professor of Computer Applications at PSG College of Technology, Coimbatore, India. She has authored books and investigated research projects funded by government agencies in the disciplines of Computational Finance and Computational Intelligence.Preface xiAcknowledgments xviiCHAPTER 13 HASH TABLES 113.1 Introduction 113.1.1 Dictionaries 113.2 Hash table structure 213.3 Hash functions 413.3.1 Building hash functions 413.4 Linear open addressing 513.4.1 Operations on linear open addressed hash tables 813.4.2 Performance analysis 1013.4.3 Other collision resolution techniques with open addressing 1113.5 Chaining 1313.5.1 Operations on chained hash tables 1513.5.2 Performance analysis 1713.6 Applications 1813.6.1 Representation of a keyword table in a compiler 1813.6.2 Hash tables in the evaluation of a join operation on relational databases 1913.6.3 Hash tables in a direct file organization 2213.7 Illustrative problems 23CHAPTER 14 FILE ORGANIZATIONS 3314.1 Introduction 3314.2 Files 3414.3 Keys 3614.4 Basic file operations 3814.5 Heap or pile organization 3814.5.1 Insert, delete and update operations 3914.6 Sequential file organization 3914.6.1 Insert, delete and update operations 3914.6.2 Making use of overflow blocks 4014.7 Indexed sequential file organization 4114.7.1 Structure of the ISAM files 4114.7.2 Insert, delete and update operations for a naïve ISAM file 4214.7.3 Types of indexing 4314.8 Direct file organization 4814.9 Illustrative problems 50CHAPTER 15 K-D TREES AND TREAPS 6115.1 Introduction 6115.2 k-d trees: structure and operations 6115.2.1 Construction of a k-d tree 6515.2.2 Insert operation on k-d trees 6915.2.3 Find minimum operation on k-d trees 7015.2.4 Delete operation on k-d trees 7215.2.5 Complexity analysis and applications of k-d trees 7415.3 Treaps: structure and operations 7615.3.1 Treap structure 7615.3.2 Operations on treaps 7715.3.3 Complexity analysis and applications of treaps 8215.4 Illustrative problems 83CHAPTER 16 SEARCHING 9316.1 Introduction 9316.2 Linear search 9416.2.1 Ordered linear search 9416.2.2 Unordered linear search 9416.3 Transpose sequential search 9616.4 Interpolation search 9816.5 Binary search 10016.5.1 Decision tree for binary search 10116.6 Fibonacci search 10416.6.1 Decision tree for Fibonacci search 10516.7 Skip list search 10816.7.1 Implementing skip lists 11216.7.2 Insert operation in a skip list 11316.7.3 Delete operation in a skip list 11416.8 Other search techniques 11616.8.1 Tree search 11616.8.2 Graph search 11616.8.3 Indexed sequential search 11616.9 Illustrative problems 118CHAPTER 17 INTERNAL SORTING 13117.1 Introduction 13117.2 Bubble sort 13217.2.1 Stability and performance analysis 13417.3 Insertion sort 13517.3.1 Stability and performance analysis 13617.4 Selection sort 13817.4.1 Stability and performance analysis 14017.5 Merge sort 14017.5.1 Two-way merging 14117.5.2 k-way merging 14317.5.3 Non-recursive merge sort procedure 14417.5.4 Recursive merge sort procedure 14517.6 Shell sort 14717.6.1 Analysis of shell sort 15317.7 Quick sort 15317.7.1 Partitioning 15317.7.2 Quick sort procedure 15617.7.3 Stability and performance analysis 15817.8 Heap sort 15917.8.1 Heap 15917.8.2 Construction of heap 16017.8.3 Heap sort procedure 16317.8.4 Stability and performance analysis 16717.9 Radix sort 16717.9.1 Radix sort method 16717.9.2 Most significant digit first sort 17117.9.3 Performance analysis 17117.10 Counting sort 17117.10.1 Performance analysis 17517.11 Bucket sort 17517.11.1 Performance analysis 17817.12 Illustrative problems 179CHAPTER 18 EXTERNAL SORTING 19718.1 Introduction 19718.1.1 The principle behind external sorting 19718.2 External storage devices 19818.2.1 Magnetic tapes 19918.2.2 Magnetic disks 20018.3 Sorting with tapes: balanced merge 20218.3.1 Buffer handling 20418.3.2 Balanced P-way merging on tapes 20518.4 Sorting with disks: balanced merge 20618.4.1 Balanced k-way merging on disks 20718.4.2 Selection tree 20818.5 Polyphase merge sort 21218.6 Cascade merge sort 21418.7 Illustrative problems 216CHAPTER 19 DIVIDE AND CONQUER 22919.1 Introduction 22919.2 Principle and abstraction 22919.3 Finding maximum and minimum 23119.3.1 Time complexity analysis 23219.4 Merge sort 23319.4.1 Time complexity analysis 23319.5 Matrix multiplication 23419.5.1 Divide and Conquer-based approach to “high school” method of matrix multiplication 23419.5.2 Strassen’s matrix multiplication algorithm 23619.6 Illustrative problems 239CHAPTER 20 GREEDY METHOD 24520.1 Introduction 24520.2 Abstraction 24520.3 Knapsack problem 24620.3.1 Greedy solution to the knapsack problem 24720.4 Minimum cost spanning tree algorithms 24920.4.1 Prim’s algorithm as a greedy method 25020.4.2 Kruskal’s algorithm as a greedy method 25020.5 Dijkstra’s algorithm 25120.6 Illustrative problems 251CHAPTER 21 DYNAMIC PROGRAMMING 26121.1 Introduction 26121.2 0/1 knapsack problem 26321.2.1 Dynamic programming-based solution 26421.3 Traveling salesperson problem 26621.3.1 Dynamic programming-based solution 26721.3.2 Time complexity analysis and applications of traveling salesperson problem 26921.4 All-pairs shortest path problem 26921.4.1 Dynamic programming-based solution 27021.4.2 Time complexity analysis 27221.5 Optimal binary search trees 27221.5.1 Dynamic programming-based solution 27421.5.2 Construction of the optimal binary search tree 27621.5.3 Time complexity analysis 27921.6 Illustrative problems 280CHAPTER 22 P AND NP CLASS OF PROBLEMS 28722.1 Introduction 28722.2 Deterministic and nondeterministic algorithms 28922.3 Satisfiability problem 29222.3.1 Conjunctive normal form and Disjunctive normal form 29422.3.2 Definition of the satisfiability problem 29422.3.3 Construction of CNF and DNF from a logical formula 29522.3.4 Transformation of a CNF into a 3-CNF 29622.3.5 Deterministic algorithm for the satisfiability problem 29722.3.6 Nondeterministic algorithm for the satisfiability problem 29722.4 NP-complete and NP-hard problems 29722.4.1 Definitions 29822.5 Examples of NP-hard and NP-complete problems 30022.6 Cook’s theorem 30222.7 The unsolved problem P = NP 30322.8 Illustrative problems 304References 311Index 313Summaries of other volumes 317

Regulärer Preis: 130,99 €