Gjør som tusenvis av andre bokelskere
Abonner på vårt nyhetsbrev og få rabatter og inspirasjon til din neste leseopplevelse.
Ved å abonnere godtar du vår personvernerklæring.Du kan når som helst melde deg av våre nyhetsbrev.
An in-depth guide to everything Terraform, complete with newly established best practices and experienced insights into Infrastructure as Code.Terraform and its open-source fork OpenTofu’s “Infrastructure as Code (IaC)” approach has redefined the way you manage your infrastructure. Its premise is simple-yet-awesome: provision, update, scale, and replicate your infrastructure with the same ease as your application code. In Terraform in Depth, you’ll discover absolutely everything you need to automate and manage your infrastructure with just a few lines of code. Inside Terraform in Depth, you’ll learn how to: • Understand and write basic Terraform code • Avoid vendor lock-in with the open source OpenTofu • Switch between OpenTofu and Terraform as needed • Construct continuous integration and continuous delivery (CI/CD) pipelines for Terraform • Organize Terraform projects and modules for team-based, production use • Develop and test robust Terraform modules • Create custom Terraform providers Terraform in Depth is fully up to date with the latest versions, standards, and approaches of Terraform and OpenTofu. Complete and comprehensive, its one-stop approach covers everything from Terraform and OpenTofu’s absolute basics all the way to advanced production uses. Every technique is illustrated with the kind of real-world examples infrastructure engineers encounter every day. Forewords by Anton Babenko and Christian Mesh. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Terraform and its open-source fork OpenTofu practically eliminate manual infrastructure configuration. With the Terraform infrastructure management tool, even complex operations that used to require kludgy scripts and time-sucking tinkering can be created, managed, and shared as an organized codebase. Master Terraform, and you’ll be able to update a fleet of machines with just a few lines of code. About the book Terraform in Depth teaches Terraform techniques and Infrastructure as Code (IaC) practices that you can use to deploy and manage applications in the cloud or your on-prem data center. Each chapter includes interesting hands-on examples, such as creating a flexible Terraform module and debugging Terraform plans. You’ll quickly learn to define your infrastructure with Terraform. Then, you’ll dive into advanced applications, including CI/CD pipelines, creating tools for documentation and security, and Terraform code management. What's inside • Understand and write basic Terraform code • Avoid vendor lock-in with OpenTofu • Construct CI/CD pipelines • Develop and test Terraform modules About the reader For sysadmins, software developers, and cloud engineers famil- iar with the CLI. About the author Robert Hafner has led engineering efforts at numerous startups, including Malwarebytes, Vicarious AI, and Rad AI. He is currently a Distinguished Engineer at a Fortune 100 Telecom. Table of Contents Part 1 1 A brief overview of Terraform 2 Terraform HCL components 3 Terraform variables and modules 4 Expressions and iterations 5 The Terraform plan Part 2 6 State management 7 Code quality and continuous integration 8 Continuous delivery and deployment 9 Testing and refactoring Part 3 10 Advanced Terraform topics 11 Alternative interfaces 12 Terraform providers
Speed up common data science tasks with AI assistants like ChatGPT and Large Language Models (LLMs) from Anthropic, Cohere, AI21, Hugging Face, and more!Using ChatGPT and other AI-powered tools, you can analyze almost any kind of data with just a few short lines of plain English. In LLMs in Action, you’ll learn important techniques for streamlining your data science practice, expanding your skillset and saving you hours—or even days—of time. Inside, you’ll learn how to use AI assistants to: • Analyze text, tables, images, and audio files • Extract information from multi-modal data lakes • Classify, cluster, transform, and query multimodal data • Build natural language query interfaces over structured data sources • Use LangChain to build complex data analysis pipelines • Prompt engineering and model configuration This practical book takes you from your first prompts through advanced techniques like building automated analysis pipelines and fine-tuning existing models. You’ll learn how to create meaningful reports, generate informative graphs, and much more. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the book LLMs in Action teaches you to use a new generation of AI assistants and Large Language Models (LLMs) to simplify and accelerate common data science tasks. Cornell professor and long-time LLM advocate Immanuel Trummer reveals techniques he’s pioneered for getting the most out of LLMs in data science, including model selection and specialization, techniques for tuning parameters, and reliable prompt templates. You’ll start with an in-depth exploration of how LLMs work. Then, you’ll dive into no-code data analysis with LLMs, creating custom operators with the OpenAI Python API, and building complex data analysis pipelines with the cutting edge LangChain framework. About the reader For data scientists, data analysts, and others who are interested in making their work easier through the use of artificial intelligence techniques. Readers should have a basic understanding of the Python programming language. About the author Immanuel Trummer is an assistant professor for computer science at Cornell University and leader of the Cornell Database Group. His papers have been selected for “Best of VLDB”, “Best of SIGMOD”, for the ACM SIGMOD Research Highlight Award, and for publication in CACM as CACM Research Highlight. Immanuel’s online course on data management has reached over a million views on YouTube. Over the past few years, his group has published extensively on projects that apply large language models in the context of data science.
A friendly illustrated guide to designing and implementing your first database.Data is the backbone of computer science, and databases are the main way that data is stored, exchanged, manipulated, and managed. Whether you’re a software developer, a data scientist, or an enthusiastic business user looking to up your data analysis skills, it pays to learn how to create and query relational databases like MySQL, SQL Server, PostgreSQL, and Oracle. Grokking Relational Database Design will get you started! In Grokking Relational Database Design, you’ll learn how to: • Query and create databases using Structured Query Language (SQL) • Design databases from scratch • Implement and optimize database designs • Take advantage of generative AI when designing databases A well-constructed database is easy to understand, query, manage, and scale when your app needs to grow. In Grokking Relational Database Design you’ll learn the basics of relational database design including how to name fields and tables, which data to store where, how to eliminate repetition, good practices for data collection and hygiene, and much more. You won’t need a computer science degree or in-depth knowledge of programming—the book’s practical examples and down-to-earth definitions are beginner-friendly. About the book Grokking Relational Database Design teaches the art of database design through real-world projects, insightful illustrations, and action-oriented learning. Unlike many beginning database books that focus on the technical details of SQL and formal database theory, this book teaches you how to think about relational database design from the ground up, so you’ll create databases that are a joy to use for a long time. Everything in this book is reinforced by hands-on exercises and examples. You’ll quickly design, implement, and optimize a database for an e-commerce application like the ones you use every day. You’ll also explore how generative AI tools such as ChatGPT radically simplify the mundane tasks of database design. About the reader Suitable for self-taught programmers, engineers, data scientists, and business data users. No previous experience with relational databases required. About the author Qiang Hao is an associate professor of Computer Science at Western Washington University. He is a recognized expert in computing education research and has extensive experience in teaching a variety of computer science courses, such as software engineering and database systems. Michail Tsikerdekis is an associate professor of Computer Science at Western Washington University. He holds a Ph.D. in Informatics from Masaryk University, Czechia. Additionally, he is recognized as an IEEE Senior Member, and his expertise covers over a decade of teaching experience in Computer Science and Cybersecurity.
Learn how to handle errors, inefficiencies, and outdated paradigms by exploring the most common mistakes you’ll find in production C++ code.100 C++ Mistakes and How To Avoid Them reveals the problems you’ll inevitably encounter as you write new C++ code and diagnose legacy applications, along with practical techniques you need to resolve them. Inside 100 C++ Mistakes and How To Avoid Them you’ll learn how to: • Design solid classes • Minimize resource allocation/deallocation issues • Use new C++ features • Identify the differences between compile and runtime issues • Recognize C-style idioms that miss C++ functionality • Use exceptions well 100 C++ Mistakes and How To Avoid Them gives you practical insights and techniques to improve your C++ coding kung fu. Author Rich Yonts has been using C++ since its invention in the 1980s. This book distills that experience into practical, reusable advice on how C++ programmers at any skill level can improve their code. Unlike many C++ books that concentrate on language theory and toy exercises, this book is loaded with real examples from production codebases. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Over ten billion lines of C++ code are running in production applications, and 98-developers find and fix mistakes in them every day. Even mission-critical applications have bugs, performance inefficiencies, and readability problems. This book will help you identify them in the code you’re maintaining and avoid them in the code you’re writing. About the book 100 C++ Mistakes and How To Avoid Them presents practical techniques to improve C++ code, from legacy applications to modern codebases that use C++ 11 and beyond. Author Rich Yonts provides a concrete example to illustrate each issue, along with a step-by-step walkthrough for improving readability, effectiveness, and performance. Along the way, you’ll even learn how and where to replace outdated patterns and idioms with modern C++. What's inside • Design solid classes • Resource allocation/deallocation issues • Compile and runtime problems • Replace C-style idioms with proper C++ About the reader Covers C++ 98 through 23, with an emphasis on diagnosing and improving legacy code. About the author Rich Yonts is a Senior Software Engineer at Teradata and a long-time software engineer using C++, Java, and Python. He has held a number of technical and leadership roles during his many years at IBM and Sony. Table of Contents 1 C++: With great power comes great responsibility Part 1 2 Better modern C++: Classes and types 3 Better modern C++: General programming 4 Better modern C++: Additional topics Part 2 5 C idioms 6 Better premodern C++ Part 3 7 Establishing the class invariant 8 Maintaining the class invariant 9 Class operations 10 Exceptions and resources 11 Functions and coding 12 General coding
Create LLM-powered autonomous agents and intelligent assistants tailored to your business and personal needs.From script-free customer service chatbots to fully independent agents operating seamlessly in the background, AI-powered assistants represent a breakthrough in machine intelligence. In AI Agents in Action, you'll master a proven framework for developing practical agents that handle real-world business and personal tasks. Author Micheal Lanham combines cutting-edge academic research with hands-on experience to help you: • Understand and implement AI agent behavior patterns • Design and deploy production-ready intelligent agents • Leverage the OpenAI Assistants API and complementary tools • Implement robust knowledge management and memory systems • Create self-improving agents with feedback loops • Orchestrate collaborative multi-agent systems • Enhance agents with speech and vision capabilities You won't find toy examples or fragile assistants that require constant supervision. AI Agents in Action teaches you to build trustworthy AI capable of handling high-stakes negotiations. You'll master prompt engineering to create agents with distinct personas and profiles, and develop multi-agent collaborations that thrive in unpredictable environments. Beyond just learning a new technology, you'll discover a transformative approach to problem-solving. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Most production AI systems require many orchestrated interactions between the user, AI models, and a wide variety of data sources. AI agents capture and organize these interactions into autonomous components that can process information, make decisions, and learn from interactions behind the scenes. This book will show you how to create AI agents and connect them together into powerful multi-agent systems. About the book In AI Agents in Action, you’ll learn how to build production-ready assistants, multi-agent systems, and behavioral agents. You’ll master the essential parts of an agent, including retrieval-augmented knowledge and memory, while you create multi-agent applications that can use software tools, plan tasks autonomously, and learn from experience. As you explore the many interesting examples, you’ll work with state-of-the-art tools like OpenAI Assistants API, GPT Nexus, LangChain, Prompt Flow, AutoGen, and CrewAI. What's inside • Knowledge management and memory systems • Feedback loops for continuous agent learning • Collaborative multi-agent systems • Speech and computer vision About the reader For intermediate Python programmers. About the author Micheal Lanham is a software and technology innovator with over 20 years of industry experience. He has authored books on deep learning, including Manning’s Evolutionary Deep Learning. Table of Contents 1 Introduction to agents and their world 2 Harnessing the power of large language models 3 Engaging GPT assistants 4 Exploring multi-agent systems 5 Empowering agents with actions 6 Building autonomous assistants 7 Assembling and using an agent platform 8 Understanding agent memory and knowledge 9 Mastering agent prompts with prompt flow 10 Agent reasoning and evaluation 11 Agent planning and feedback A Accessing OpenAI large language models B Python development environment
How do you know what might have happened, had you done things differently? Causal machine learning gives you the insight you need to make predictions and control outcomes based on causal relationships instead of pure correlation, so you can make precise and timely interventions.In Causal AI you will learn how to: Build causal reinforcement learning algorithms Implement causal inference with modern probabilistic machine tools such as PyTorch and Pyro Compare and contrast statistical and econometric methods for causal inference Set up algorithms for attribution, credit assignment, and explanation Convert domain expertise into explainable causal models Causal AI is a practical introduction to building AI models that can reason about causality. Author Robert Ness, a leading researcher in causal AI at Microsoft Research, brings his unique expertise to this cutting-edge guide. His clear, code-first approach explains essential details of causal machine learning that are hidden in academic papers. Everything you learn can be easily and effectively applied to industry challenges, from building explainable causal models to predicting counterfactual outcomes. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Causal machine learning is a major milestone in machine learning, allowing AI models to make accurate predictions based on causes rather than just correlations. Causal techniques help you make models that are more robust, explainable, and fair, and have a wide range of applications, from improving recommendation engines to perfecting self-driving cars. About the book Causal AI teaches you how to build machine learning and deep learning models that implement causal reasoning. Discover why leading AI engineers are so excited by causal reasoning, and develop a high-level understanding of this next major trend in AI. New techniques are demonstrated with example models for solving industry-relevant problems. You’ll learn about causality for recommendations; causal modeling of online conversions; and uplift, attribution, and churn modeling. Each technique is tested against a common set of problems, data, and Python libraries, so you can compare and contrast which will work best for you. About the reader For data scientists and machine learning engineers. A familiarity with probability and statistics will be helpful, but not essential, to begin this guide. Examples in Python. About the author Robert Ness is a leading researcher in causal AI at Microsoft Research. He is a contributor to open-source causal inference packages such as Python’s DoWhy and R’s bnlearn.
"Learn to build standout line-of-business applications using Microsoft's .NET Framework, the premier platform for enterprise business development. Based on the bestselling .NET Core in Action, the new .NET in Action, Second Edition has been completely rewritten and updated by original author Dustin Metzgar--an industry veteran who helped develop both the original .NET Framework and .NET Core."-- Publisher provided description.
Get the big picture and the important details with this end-to-end guide for designing highly effective, reliable machine learning systems.From information gathering to release and maintenance, Machine Learning System Design guides you step-by-step through every stage of the machine learning process. Inside, you’ll find a reliable framework for building, maintaining, and improving machine learning systems at any scale or complexity. In Machine Learning System Design: With end-to-end examples you will learn: • The big picture of machine learning system design • Analyzing a problem space to identify the optimal ML solution • Ace ML system design interviews • Selecting appropriate metrics and evaluation criteria • Prioritizing tasks at different stages of ML system design • Solving dataset-related problems with data gathering, error analysis, and feature engineering • Recognizing common pitfalls in ML system development • Designing ML systems to be lean, maintainable, and extensible over time Authors Valeri Babushkin and Arseny Kravchenko have filled this unique handbook with campfire stories and personal tips from their own extensive careers. You’ll learn directly from their experience as you consider every facet of a machine learning system, from requirements gathering and data sourcing to deployment and management of the finished system. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Designing and delivering a machine learning system is an intricate multistep process that requires many skills and roles. Whether you’re an engineer adding machine learning to an existing application or designing a ML system from the ground up, you need to navigate massive datasets and streams, lock down testing and deployment requirements, and master the unique complexities of putting ML models into production. That’s where this book comes in. About the book Machine Learning System Design shows you how to design and deploy a machine learning project from start to finish. You’ll follow a step-by-step framework for designing, implementing, releasing, and maintaining ML systems. As you go, requirement checklists and real-world examples help you prepare to deliver and optimize your own ML systems. You’ll especially love the campfire stories and personal tips, and ML system design interview tips. What's inside • Metrics and evaluation criteria • Solve common dataset problems • Common pitfalls in ML system development • ML system design interview tips About the reader For readers who know the basics of software engineering and machine learning. Examples in Python. About the author Valerii Babushkin is an accomplished data science leader with extensive experience. He currently serves as a Senior Principal at BP. Arseny Kravchenko is a seasoned ML engineer currently working as a Senior Staff Machine Learning Engineer at Instrumental. Table of Contents Part 1 1 Essentials of machine learning system design 2 Is there a problem? 3 Preliminary research 4 Design document Part 2 5 Loss functions and metrics 6 Gathering datasets 7 Validation schemas 8 Baseline solution Part 3 9 Error analysis 10 Training pipelines 11 Features and feature engineering 12 Measuring and reporting results Part 4 13 Integration 14 Monitoring and reliability 15 Serving and inference optimization 16 Ownership and maintenance
Build resilient and scalable, cloud-native enterprise Java applications using the Quarkus framework.Quarkus lets you live-reload your Java code, deliver continuous background testing, and automatically provide database instances—plus tons more productivity-boosting features! Quarkus in Action quickly gets you up to speed with Quarkus by building a real-world business application. In Quarkus in Action, you will: • Use Quarkus Dev mode to speed up and enhance Java development • Understand how to use the Dev UI to observe and troubleshoot running applications • Automatic background testing using the Continuous Testing feature • New frameworks and libraries such as Quarkus Messaging, gRPC, and GraphQL • Simplify deployment of applications into Kubernetes and OpenShift • Automatic management of remote services such as databases and message brokers via Docker containers • Set up observability for applications by using metrics, health checks and distributed tracing Quarkus in Action is written by Martin Štefanko and Jan Martiška, Red Hat engineers who are both active contributors to the Quarkus project. In it, you’ll learn how Quarkus works and how you can integrate it into your stack for more productive Java development. Discover what makes Quarkus different from classic enterprise Java frameworks, how Quarkus streamlines creating cloud-native applications, and makes deployment easy. Foreword by Markus Eisele. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Choose a Java framework that’s as modern as your applications! Quarkus is a cloud-first framework designed for speed and cost optimization. It’s Kubernetes-aware by default and includes amazing productivity features like live reloading, continuous testing, and a developer-friendly UI that lets you code fluidly without tedious setup. About the book Quarkus in Action provides a carefully designed learning path through Quarkus’ key features and use cases. You’ll learn hands-on by implementing a working car rental application with a cloud-native microservices design that includes Kubernetes, SQL and NoSQL databases, messaging, and observability. Along the way, you’ll learn how Quarkus simplifies deployment on cloud platforms like OpenShift. What's inside • Speed up development with Quarkus Dev mode • Troubleshoot running apps with Dev UI • Continuous testing in the background • Automatic startup of development databases About the reader For intermediate Java developers who have experience deve- loping server-side Java applications. About the author Martin Štefanko and Jan Martiška are Red Hat engineers and active contributors to the Quarkus project. Table of Contents Part 1 1 What is Quarkus? 2 Your first Quarkus application 3 Enhancing developer productivity with Quarkus Part 2 4 Handling communications 5 Testing Quarkus applications 6 Exposing and securing web applications 7 Database access 8 Reactive programming 9 Quarkus messaging Part 3 10 Cloud-native application patterns 11 Quarkus applications in the cloud 12 Custom Quarkus extensions A Alternative languages and build tooling B Tools installations C Alternatives for developing frontend applications with Quarkus
Supercharge your applications with the ultimate guide to asynchronous and multithreaded programming in C#!C# Concurrency teaches you how to write effective multithreaded and asynchronous software in C#. Practical techniques, real-world examples, and useful code samples cut through the confusion around async/await and help you write rapid, reliable, and bug-free code. In C# Concurrency: Asynchronous and Multithreaded Programming you’ll learn how to: • Take full advantage of async/await • Write bug-free multithreaded code every time • Create multithreaded code that delivers real performance improvements • Grok C# and .NET multithreading and asynchronous primitives • Know when to use concurrency techniques—and when not to use them! In C# Concurrency Nir Dobovizki, a seasoned C# veteran with over 30 years of high-performance programming experience, shares his deep knowledge and expert techniques. Say goodbye to frustrating pitfalls and impossible-to-find bugs that slow down your applications. Nir's careful approach will teach you how to navigate these challenges with ease, allowing you to achieve lightning-fast performance like never before! Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Asynchronous and multithreaded programs can perform multiple tasks simultaneously without losing speed or reliability. But getting concurrency right can challenge even experienced developers. This practical book teaches you to deliver concurrent C# apps that are lighting fast and free of the deadlocks and other synchronization issues that undermine performance and take forever to find. About the book C# Concurrency equips programmers with a comprehensive understanding of multithreading and asynchronous programming, focusing on the practical use of the C# async-await feature to simplify asynchronous tasks. It teaches how to avoid common pitfalls, addresses classic multithreading issues like deadlocks and race conditions, and advanced topics such as controlling thread of execution and using thread-safe collections. What's inside • .NET multithreading and asynchronous primitives • When to use concurrency techniques—and when not to! • Confidently use async/await About the reader For experienced C# programmers. No knowledge of asynchro- nous programming required. About the author Nir Dobovizki is a senior software architect and consultant who has worked on concurrent and asynchronous systems since the late 90s. Table of Contents 1 Asynchronous programming and multithreading 2 The compiler rewrites your code 3 The async and await keywords 4 Multithreading basics 5 async/await and multithreading 6 When to use async/await 7 Classic multithreading pitfalls and how to avoid them Part 2 8 Processing a sequence of items in the background 9 Canceling background tasks 10 Await your own events 11 Controlling on which thread your asynchronous code runs 12 Exceptions and async/await 13 Thread-safe collections 14 Generating collections asynchronously/await foreach and IAsyncEnumerable
"DuckDB is a cutting-edge SQL database that makes it incredibly easy to analyze big data sets right from your laptop. In DuckDB in Action you'll learn everything you need to know to get the most out of this awesome tool, keep your data secure on prem, and save you hundreds on your cloud bill. From data ingestion to advanced data pipelines, you'll learn everything you need to get the most out of DuckDB--all through hands-on examples."
Tested and pragmatic methods for writing blogs, articles, and other technical pieces that stand out from the crowd!
Business runs on tabular data in databases, spreadsheets, and logs. Crunch that data using deep learning, gradient boosting, and other machine learning techniques.Every organization in the world stores data in tables. Machine Learning for Tabular Data reveals practical techniques for applying machine learning techniques like deep learning and gradient boosting to your company’s rows and columns. Inside Machine Learning for Tabular Data you’ll learn how to: Pick the right machine learning approach for your data Apply deep learning to tabular data Deploy tabular machine learning locally and in the cloud Pipelines to automatically train and maintain a model This book collects best practices, hard-won tips and tricks, and hands-on techniques for making sense of tabular data using advanced machine learning techniques. Inside, you’ll discover how to use XGBoost and LightGBM on tabular data, optimize deep learning libraries like TensorFlow and PyTorch for tabular data, and use cloud tools like Vertex AI to create an automated MLOps pipeline. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the book Machine Learning for Tabular Data teaches you to train insightful machine learning models on common tabular data such as spreadsheets, databases, and logs. It covers classic machine learning techniques like gradient boosting and more contemporary deep learning approaches. You’ll find practical examples for every stage of the machine learning pipeline, such as using XGBoost and Keras to predict the prices of Airbnb listings in New York City and deploying a machine learning model on your local system with Flask. By the time you’re finished, you’ll be equipped with the skills to apply machine learning to the kinds of data you work with every day. About the reader For readers experienced with Python and the basics of machine learning. About the author Mark Ryan is a technical writing manager at Google. He studied computer science at the University of Waterloo and at the University of Toronto. In addition to a keen interest in deep learning with tabular data, Mark is interested in applications of large language models. Luca Massaron is a data scientist with more than a decade of experience in transforming data into smarter artifacts, solving real-world problems, and generating value for businesses and stakeholders. He is the author of bestselling books on AI, machine learning, and algorithms.
Create stunning and effective WordPress websites with easy-to-use AI tools—no code required!Whether starting from scratch or improving an existing site, WordPress Power Toolkit gives you the skills to create professional sites powered by the limitless potential of artificial intelligence. You’ll learn to use AI for your content and visuals, and even help you build your own WordPress plugins and widgets. Inside WordPress Power Toolkit you’ll discover hands-on ways to: • Utilize AI to build new WordPress sites or improve existing ones • Understand how AI enhances all aspects of site content and design • Become an expert prompt engineer for communicating with AI • Generate HTML, CSS, plugins, and widgets with AI • Optimize multimedia, blogging, monetization, SEO, and more Plus, this all-practical guide is full of important information about the tasks AI still can’t do for you, from picking the right hosting service, to defining your site’s goals. The skills you learn for working with AI are universal—you can easily adapt them to get an AI assistant's expert help with almost any other task. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology WordPress is a powerful website builder that anyone can use. Now, AI systems like ChatGPT make it a snap to greatly improve the appearance and content of every site. These amazing AI assistants can even automatically refine your site’s design, edit your text, and increase the size of your audience. This book will help you use AI and WordPress to build the websites you’ve been dreaming of! About the book WordPress Power Toolkit shows you step-by-step how to design, build, deploy, and polish websites by mastering GPT, Midjourney, Gemini, Perplexity, Claude, and other powerful AI assistants. You’ll learn to write great prompts to get the best text and graphics, have AI generate CSS to perfect your site’s theme, use AI to enhance blog posts, and more! Along the way, you’ll learn hundreds of ways to use AI for any cognitive or creative activity. What's inside • Master AI prompting • Create professional site designs • Use AI to generate impressive content, page designs, HTML, CSS, plugins, and widgets • Have AI enhance your multimedia, search rank, and ecommerce success About the reader For WordPress users at any skill level. About the author Richard Mansfield is the bestselling author of more than 45 books on computing. He teaches three online WordPress certification courses. Table fo Contents 1 AI and WordPress dominate the internet 2 Starting a website 3 Site-building preliminaries 4 AI-powered writing 5 Adding functionality with plugins 6 AI-assisted site design basics 7 Advanced design techniques 8 Mastering multimedia 9 Using AI when interacting with your audience 10 Making money online 11 AI and search engine optimization 12 Building an audience with AI 13 Resources: Where to go from here Appendix: Setting things up
A practical introduction to data engineering on the powerful Snowflake cloud data platform.Data engineers create the pipelines that ingest raw data, transform it, and funnel it to the analysts and professionals who need it. The Snowflake cloud data platform provides a suite of productivity-focused tools and features that simplify building and maintaining data pipelines. In Snowflake Data Engineering, Snowflake Data Superhero Maja Ferle shows you how to get started. In Snowflake Data Engineering you will learn how to: *; Ingest data into Snowflake from both cloud and local file systems *; Transform data using functions, stored procedures, and SQL *; Orchestrate data pipelines with streams and tasks, and monitor their execution *; Use Snowpark to run Python code in your pipelines *; Deploy Snowflake objects and code using continuous integration principles *; Optimize performance and costs when ingesting data into Snowflake Snowflake Data Engineering reveals how Snowflake makes it easy to work with unstructured data, set up continuous ingestion with Snowpipe, and keep your data safe and secure with best-in-class data governance features. Along the way, you'll practice the most important data engineering tasks as you work through relevant hands-on examples. Throughout, author Maja Ferle shares design tips drawn from her years of experience to ensure your pipeline follows the best practices of software engineering, security, and data governance. Foreword by Joe Reis. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Pipelines that ingest and transform raw data are the lifeblood of business analytics, and data engineers rely on Snowflake to help them deliver those pipelines efficiently. Snowflake is a full-service cloud-based platform that handles everything from near-infinite storage, fast elastic compute services, inbuilt AI/ML capabilities like vector search, text-to-SQL, code generation, and more. This book gives you what you need to create effective data pipelines on the Snowflake platform. About the book Snowflake Data Engineering guides you skill-by-skill through accomplishing on-the-job data engineering tasks using Snowflake. You'll start by building your first simple pipeline and then expand it by adding increasingly powerful features, including data governance and security, adding CI/CD into your pipelines, and even augmenting data with generative AI. You'll be amazed how far you can go in just a few short chapters! What's inside *; Ingest data from the cloud, APIs, or Snowflake Marketplace *; Orchestrate data pipelines with streams and tasks *; Optimize performance and cost About the reader For software developers and data analysts. Readers should know the basics of SQL and the Cloud. About the author Maja Ferle is a Snowflake Subject Matter Expert and a Snowflake Data Superhero who holds the SnowPro Advanced Data Engineer and the SnowPro Advanced Data Analyst certifications. Table of Contents Part 1 1 Data engineering with Snowflake 2 Creating your first data pipeline Part 2 3 Best practices for data staging 4 Transforming data 5 Continuous data ingestion 6 Executing code natively with Snowpark 7 Augmenting data with outputs from large language models 8 Optimizing query performance 9 Controlling costs 10 Data governance and access control Part 3 11 Designing data pipelines 12 Ingesting data incrementally 13 Orchestrating data pipelines 14 Testing for data integrity and completeness 15 Data pipeline continuous integration
Learn the skills you need to be a lead developer, with expert advice on mentoring teams, handling clients and project managers, and keeping your head in emergencies.The Lead Developer Career Guide teaches you how to transition from an individual contributor to a thriving lead developer. It's packed with insider tips, tricks, and strategies drawn from author Shelley Benhoff's 25-year career in technology, providing vital insights for navigating the unique challenges and expectations of the lead developer role. This one-of-a-kind book demonstrates how critical thinking and communication skills can elevate your career. In the Lead Developer Career Guide you'll discover: • The key responsibilities of a lead developer • Techniques for writing effective technical documentation • Strategies for improving development processes • Best practices for communicating with non-technical clients • Methods for mentoring and inspiring a team • Approaches for delivering negative feedback constructively The Lead Developer Career Guide is filled with interviews and real-world case studies from industry professionals and esteemed tech experts. You'll learn how to become the public face for your development team, gathering feedback from your coworkers and communicating with clients and stakeholders. Plus, you'll find proven techniques to reliably calculate project estimates, plan a project from scratch, and mentor junior developers and peers alike. Foreword by Steve Buchanan. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology To be a successful Lead Developer you’ll need more than just technical expertise. You’ll be responsible for everything from facilitating architectural decisions that satisfy all stakeholders to mentoring your fellow developers. And you’ll be on the hook for delivering great software on time and under budget. Are you ready for the challenge? This book will help get you there! About the book The Lead Developer Career Guide provides the techniques and wisdom you need to transition from individual contributor to lead developer. You’ll learn how to collaborate effectively with executive leadership and project managers, present elegant solutions to clients, and think quickly in those inevitable emergencies. When all eyes are on you, this book will ensure you know exactly what to do. What's inside • Improving development processes • Mentoring and inspiring a team • Delivering negative feedback About the reader For aspiring lead developers. About the author Shelley Benhoff has over twenty-five years of experience in tech as a business owner, author, and speaker. The technical editor on this book was Stephen Mizell. Table of Contents 1 What is a lead developer? 2 Lead developer career trajectory 3 Learning lead developer skills 4 Learning any developer skill 5 Writing technical documentation 6 Optimizing the development process 7 Working with project teams 8 Speaking with clients 9 Being a mentor 10 Taking the lead 11 Leading with emotional intelligence 12 Being a successful lead developer
Deliver code reviews that consistently build up your team and improve your applications.“Looks Good to Me” offers a unique approach to delivering meaningful code reviews that goes beyond superficial checklists and tense critical conversations. Instead, you’ll learn how to improve both your applications and your team dynamics. “Looks Good to Me” teaches you how to: • Understand a code review's benefits proactively prevent loopholes and bottlenecks • Co-create an objective code review system • Clarify responsibilities: author, reviewer, team lead/manager, and the team itself • Establish manageable guidelines and protocols • Align with your team and explicitly document the policies they will follow • Automate code quality with linting, formatting, static analysis, and automated testing • Compose effective comments for any situation • Consider combining code reviews with pair programming or mob programming • AI for code reviews Inside “Looks Good to Me” you’ll find comprehensive coverage of every part of the code review process, from choosing a system to keeping reviews manageable for everyone involved. With this mix of tools, processes, common sense, and compassion, you’ll run a highly effective review process from first commit to final deployment. Foreword by Scott Hanselman. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Transform code reviews into the positive, productive experiences they’re meant to be! Whether it’s your code under the microscope or you’re the one giving the feedback, this sensible guide will help you avoid the tense debates, fruitless nitpicking, and unnecessary bottlenecks you’ve come to expect from code reviews. About the book “Looks Good to Me” teaches the considerate, common sense approach to code reviews pioneered by author Adrienne Braganza. You’ll learn how to create a cohesive team environment, align review goals and expectations clearly, and be prepared for any changes or obstacles you may face. Along the way, you’ll master practices that adapt to how your team does things, with multiple options and solutions, relatable scenarios, and personal tidbits. You’ll soon be running highly effective reviews that make your code—and your team—stronger. What's inside • Why we do code reviews • Automate processes for code quality • Write effective comments About the reader For any team member, from developer to lead. About the author Adrienne Braganza is an engineer, speaker, instructor, and author of the bestselling book Coding for Kids: Python. Table of Contents Part 1 1 The significance of code reviews 2 Dissecting the code review 3 Building your team’s first code review process Part 2 4 The Team Working Agreement 5 The advantages of automation 6 Composing effective code review comments Part 3 7 How code reviews can suck 8 Decreasing code review delays 9 Eliminating process loopholes 10 The Emergency Playbook Part 4 11 Code reviews and pair programming 12 Code reviews and mob programming 13 Code reviews and AI A Team Working Agreement starter template B Emergency Playbook starter template C PR templates D List of resources
All the mistakes you might make with SQL Serverand how to avoid them!100 SQL Server Mistakes and How To Avoid Them primes you on the pitfalls database professionals often fall intofrom administration to development, availability, and security. You'll dodge common mistakes that slow down your T-SQL code, and ensure your SQL server is installed and configured in a way that can handle anything your organization throws at it. Inside 100 SQL Server Mistakes and How To Avoid Them you'll learn to avoid: *; Development errors when writing T-SQL *; Installation and administration mistakes *; Optimization mistakes *; Common mistakes relating to HA/DR *; Security missteps that can endanger your data Are your T-SQL queries running slowly? Are you worried about your server's availability or bad actors trying to steal your data? Have you just been handed a new SQL Server Instance to administer and aren't quite sure what to do? Never fear! 100 SQL Server Mistakes and How To Avoid Them will make you into a SQL Server veteran without needing to make dozens of mistakes yourself. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the book There's no ';happy path' in 100 SQL Server Mistakes and How To Avoid Them. The book focuses exclusively on the errors and screw-ups that you might (and probably will) make as an unprepared SQL Server admin or developer. Real-world issues taken from author Peter Carter's two decade long career in SQL Server fill each chapter. Peter's seasoned advice helps dispel myths, debunk misconceptions and set you on the right path with examples, expert guidance, useful code samples, and helpful diagrams. You'll learn how to write performant code, set coding standards, design database schemas, add error handling, and work with complex data types. Plus, learn how to select the right OS for your installation, optimize your SQL Server instances and databases, and avoid pitfalls relating to high availability, disaster recovery, and security. About the reader For junior database admins, full-stack developers, and ';accidental' DBAs who understand basic SQL Server concepts and can write simple SQL queries. About the author Peter Carter is a SQL Server expert with nearly two decades of experience in developing, administering, and architecting data-tier applications and SQL Server platforms. He also has many years of experience as a SQL Server trainer and author.
Automate your build, test, and deploy pipelines using GitHub Actions!Continuous delivery (CI/CD) pipelines help you automate the software development process and maximize your team’s efficiency. GitHub Actions in Action teaches you to build real-world build, test, and deploy pipelines in GitHub Actions through hands-on labs and projects. In GitHub Actions in Action you will learn how to: • Create and share GitHub Actions workflows • Automate CI/CD workloads and other GitHub tasks • Secure release pipelines with secrets, variables, and environments • Support compliance frameworks • Create safe and scalable self-hosted runners Written by three Microsoft MVPs and tech reviewed by a Staff DevOps Architect from GitHub, this book delivers the hardworking skills and advice you’ll need to be successful on the job. DevOps engineers will love GitHub Actions in Action’s coverage of reliable methods for Infrastructure-as-Code and automating cloud environments. You’ll follow an extended example application for selling tickets, taking it all the way from initial build to cloud deployment. Foreword by Scott Hanselman. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Believe it or not, CI/CD can be simple! With GitHub Actions, you can automate your entire dev process using just the tools built into GitHub—no external frameworks or complex integrations required. GitHub Actions is secure, reliable, and best of all, easy. This book will get you started. About the book GitHub Actions in Action teaches you how to build automated delivery pipelines in GitHub. You’ll start with simple examples that demonstrate workflow and action basics, and then you’ll dive into platform architecture, security, and workflow runtime details. As you go, you’ll build a full CI/CD pipeline, optimizing for compliance, performance, and costs. You’ll even create shareable actions for the GitHub marketplace. What's inside • Create and share GitHub Actions workflows • Automate testing and other GitHub tasks • Secure release pipelines with secrets, variables, and environments About the reader For developers and DevOps engineers comfortable with GitHub. About the author Michael Kaufmann is a Microsoft Regional Director and MVP. Rob Bos is an Azure and GitHub Trainer, a Microsoft MVP, a GitHub Star, and a LinkedIn Learning Instructor. Marcel de Vries is a CTO of Xebia Microsoft Services, Microsoft Regional Director, and MVP. The technical editor on this book was James Michael Gousset. Table of Contents Part 1 1 Introduction to GitHub Actions 2 Hands-on: My first Actions workflow 3 Workflows 4 GitHub Actions Part 2 5 Runners 6 Self-hosted runners 7 Managing your self-hosted runners Part 3 8 Continuous integration 9 Continuous delivery 10 Security 11 Compliance 12 Improving workflow performance and costs
Contract testing is a simple, reliable way to make sure that each service and API plays nice with other components so you can deploy independently and safely.In a microservices-first world, traditional testing struggles to keep up with all the potential interactions in a large, loosely-coupled system. Contract testing checks the compatibility of an API or service by validating it against an agreed contract. This straightforward method uncovers integration issues early and adds valuable transparency to compatibility expectations. In Contract Testing in Action you'll learn: *; The core concepts and practices of contract testing *; Testing microservices with Pact *; Consumer-driven and bi-directional testing *; Building a contract testing framework *; Converting API integration tests to contract tests Contract Testing in Action introduces the practice of contract testing through engaging hands-on examples. You'll learn how to introduce contract tests for multiple different types of communication, from REST APIs to GraphQL. By the end of this practical guide, you'll be comfortable with advanced contract testing concepts like can-i-deploy, provider states, and webhooks. You'll even get tips on how to introduce contract testing to your team and other business stakeholders. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the book Contract Testing in Action is a hands-on guide to contract testing for microservices applications and other systems of loosely-coupled components. After learning the basics of contract design and implementation, you'll dive into constructing your own contract testing framework. You'll explore the leading contract testing tools, including Pact, PactFlow, and GitHub Actions. Plus, you'll set up consumer-driven contract testing for REST and GraphQL APIs and learn to integrate contract testing into a CI/CD pipeline. Finally, you'll delve into provider-driven contract testing, which simplifies adoption by utilizing your existing stack and practices. About the reader For experienced software developers and quality engineers who have worked with Java, JavaScript, and APIs. About the author Marie Cruz is a Software Tester with over 10 years of experience. Currently a Senior Developer Advocate for Grafana Labs, she has previously worked as an Engineering Manager responsible for driving continuous testing and quality improvements, and a Principal Engineer focused on introducing recommended practices for testing and test automation frameworks. Lewis Prescott is a Test Specialist at IBM. He has 9 years experience in software testing, is a recognized champion of Contract Testing and course author at Test Automation University, as well as an active mentor in the testing community.
Learn how to find the unusual, interesting, extreme, or inaccurate parts of your data.
Discover the new features and techniques of the most modern versions of Angular.The powerful Angular framework is ever-evolving, with each new iteration bringing amazing new modern features. Modern Angular gets you rapidly up to speed with Angular's latest innovations. You'll discover new ways of working with components, dependency injection, RxJS, Signals, server-side rendering, and moreall through building a complete enterprise-grade HR management system. Inside Modern Angular you'll learn how to: Create modern Angular apps with the newest framework capabilities Implement advanced testing strategies for Angular Apply state management with reactive programming Migrate legacy Angular projects to modern practices Refactor old Angular patterns using new techniques Use modern performance optimization approaches to improve User Experience Whether you're building new apps from scratch or refactoring legacy code to the latest version of the framework, Modern Angular is full of the up-to-date knowledge you need to build highly effective web frontends. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the book Modern Angular is full of vital Angular insights that help you get the most out of the framework. Each chapter explores an exciting new capability by implementing it in the ongoing example projecta fully-featured app for managing HR systems. You'll compare old and new techniques to see how modern solutions provide easy fixes to historic problems, and build skills in testing, state management with reactive programming, SEO, and more. Diagrams and code samples make it easy to understand each new feature. Plus, detailed migration guides demonstrate ways to update existing apps to modern patterns, and make it easy to modernize your legacy code. About the reader For experienced Angular developers looking to utilize the newest framework features. About the author Armen Vardanyan is a front-end team lead from Armenia and a Google Developer Expert for Angular. He writes articles about Angular, TypeScript, NgRx, and is a panelist in the popular Adventures in Angular podcast, as well as a public tech speaker and mentor.
Accelerate deep learning and other number-intensive tasks with JAX, Google’s awesome high-performance numerical computing library.The JAX numerical computing library tackles the core performance challenges at the heart of deep learning and other scientific computing tasks. By combining Google’s Accelerated Linear Algebra platform (XLA) with a hyper-optimized version of NumPy and a variety of other high-performance features, JAX delivers a huge performance boost in low-level computations and transformations. In Deep Learning with JAX you will learn how to: • Use JAX for numerical calculations • Build differentiable models with JAX primitives • Run distributed and parallelized computations with JAX • Use high-level neural network libraries such as Flax • Leverage libraries and modules from the JAX ecosystem Deep Learning with JAX is a hands-on guide to using JAX for deep learning and other mathematically-intensive applications. Google Developer Expert Grigory Sapunov steadily builds your understanding of JAX’s concepts. The engaging examples introduce the fundamental concepts on which JAX relies and then show you how to apply them to real-world tasks. You’ll learn how to use JAX’s ecosystem of high-level libraries and modules, and also how to combine TensorFlow and PyTorch with JAX for data loading and deployment. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Google’s JAX offers a fresh vision for deep learning. This powerful library gives you fine control over low level processes like gradient calculations, delivering fast and efficient model training and inference, especially on large datasets. JAX has transformed how research scientists approach deep learning. Now boasting a robust ecosystem of tools and libraries, JAX makes evolutionary computations, federated learning, and other performance-sensitive tasks approachable for all types of applications. About the book Deep Learning with JAX teaches you to build effective neural networks with JAX. In this example-rich book, you’ll discover how JAX’s unique features help you tackle important deep learning performance challenges, like distributing computations across a cluster of TPUs. You’ll put the library into action as you create an image classification tool, an image filter application, and other realistic projects. The nicely-annotated code listings demonstrate how JAX’s functional programming mindset improves composability and parallelization. What's inside • Use JAX for numerical calculations • Build differentiable models with JAX primitives • Run distributed and parallelized computations with JAX • Use high-level neural network libraries such as Flax About the reader For intermediate Python programmers who are familiar with deep learning. About the author Grigory Sapunov holds a Ph.D. in artificial intelligence and is a Google Developer Expert in Machine Learning. The technical editor on this book was Nicholas McGreivy. Table of Contents Part 1 1 When and why to use JAX 2 Your first program in JAX Part 2 3 Working with arrays 4 Calculating gradients 5 Compiling your code 6 Vectorizing your code 7 Parallelizing your computations 8 Using tensor sharding 9 Random numbers in JAX 10 Working with pytrees Part 3 11 Higher-level neural network libraries 12 Other members of the JAX ecosystem A Installing JAX B Using Google Colab C Using Google Cloud TPUs D Experimental parallelization
Improve speed, quality, AND cost by automating your API delivery process!Automating API Delivery shows you how to strike the perfect balance between speed and usability by applying DevOps automation principles to your API design and delivery process. It lays out a clear path to making both the organizational and technical changes you need to deliver high-quality APIs both rapidly and reliably. In Automating API Delivery you’ll learn how to: Enforce API design standards with linting Automate breaking-change checks to control design creep Ensure accuracy of API reference documents Centralize API definition consistency checks Automate API configuration deployment Conduct effective API design reviews Author Ikenna Nwaiwu provides comprehensive guidance on implementing APIOps in your organization. He carefully walks through the technical steps and introduces the essential open-source tools, with practical advice and insights from his years of experience. You’ll benefit from his personal tips for avoiding common pitfalls and challenges of moving to automated API delivery. Foreword by Melissa van der Hecht. Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the technology Create high quality, consistent, and fast-to-market APIs by automating the development process! This innovative book shows you how to apply established Continuous Delivery and DevOps principles along the whole API lifecycle, transforming a collection of individual tasks into a smooth, manageable pipeline that supports automated testing, iterative improvement, and reliable documentation. About the book Automating API Delivery introduces the tools and strategies behind APIOps. You’ll discover tools and process improvements that give you important quick wins, including API governance using the Spectral API linter and establishing an efficient CI/CD pipeline with GitHub Actions. You’ll even discover how to use the powerful OpenAPI Generator to automatically create client and server code from your API definitions. What's inside Check for breaking changes with oasdiff Create SDKs using OpenAPI Generator Maintain accurate documentation with API conformance tests Deploy API gateway configuration with GitOps About the reader Experience building RESTful APIs required. About the author Ikenna Nwaiwu is Principal Consultant at Ikenna Consulting, specializing in automating API governance. The technical editor on this book was Marjukka Niinioja. Table of Contents 1 What is APIOps? 2 Leaning into APIOps: Problem-solving and leading improvements 3 API linting: Automating API consistency 4 Breaking change checks: Managing API evolution 5 API design review: Checking for what you cannot automate 6 API conformance: Generating code and API definitions 7 API conformance: Schema testing 8 CI/CD for API artifacts 1: Source-stage governance controls 9 CI/CD for API artifacts 2: Build-stage and API configuration deployment 10 More on API consistency: Custom linting and security checks 11 Monitoring and analytics: Measuring API product metrics Appendixes A Value stream mapping icons B Installing API linting and OpenAPI diff tools C Introduction to JSON Pointer D Tools for API conformance and analytics E Docker and Kubernetes
Abonner på vårt nyhetsbrev og få rabatter og inspirasjon til din neste leseopplevelse.
Ved å abonnere godtar du vår personvernerklæring.