Markedets billigste bøger
Levering: 1 - 2 hverdage

Bøger udgivet af Manning Publications

Filter
Filter
Sorter efterSorter Populære
  • af Francois Chollet
    458,95 - 548,95 kr.

  • - Data Analysis and Graphics with R
    af Robert I. Kabacoff
    485,95 - 547,95 kr.

    "R in Action" is the first book to present both the R system and the use cases that make it such a compelling package for business developers.

  • af Tim Mcnamara
    548,95 kr.

    Rust in Action introduces the Rust programming language by exploring numerous systems programming concepts and techniques. You'll be learning Rust by delving into how computers work under the hood. You'll find yourself playing with persistent storage, memory, networking and even tinkering with CPU instructions. The book takes you through using Rust to extend other applications and teaches you tricks to write blindingly fast code. You'll also discover parallel and concurrent programming.

  • - Multiplatform game development in C#
    af Joesph Hocking
    410,95 kr.

    SummaryManning''s bestselling and highly recommended Unity book has been fully revised! Unity in Action, Second Edition teaches you to write and deploy games with the Unity game development platform. You''ll master the Unity toolset from the ground up, adding the skills you need to go from application coder to game developer.Foreword by Jesse Schell, author of The Art of Game DesignPurchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.About the TechnologyBuild your next game without sweating the low-level details. The Unity game development platform handles the heavy lifting, so you can focus on game play, graphics, and user experience. With support for C# programming, a huge ecosystem of production-quality prebuilt assets, and a strong dev community, Unity can get your next great game idea off the drawing board and onto the screen!About the BookUnity in Action, Second Edition teaches you to write and deploy games with Unity. As you explore the many interesting examples, you''ll get hands-on practice with Unity''s intuitive workflow tools and state-of-the-art rendering engine. This practical guide exposes every aspect of the game dev process, from the initial groundwork to creating custom AI scripts and building easy-to-read UIs. And because you asked for it, this totally revised Second Edition includes a new chapter on building 2D platformers with Unity''s expanded 2D toolkit. What''s InsideRevised for new best practices, updates, and more!2D and 3D gamesCharacters that run, jump, and bump into thingsConnect your games to the internetAbout the ReaderYou need to know C# or a similar language. No game development knowledge is assumed.About the AuthorJoe Hocking is a software engineer and Unity expert specializing in interactive media development.Table of ContentsPART 1 - First stepsGetting to know Unity Building a demo that puts you in 3D space Adding enemies and projectiles to the 3D game Developing graphics for your game PART 2 - Getting comfortableBuilding a Memory game using Unity''s 2D functionality Creating a basic 2D Platformer Putting a GUI onto a game Creating a third-person 3D game: player movement and animationAdding interactive devices and items within the gamePART 3 - Strong finishConnecting your game to the internet Playing audio: sound effects and music Putting the parts together into a complete game Deploying your game to players'' devices

  • af Donald Jones
    410,95 kr.

    KEY FEATURES* A great start with a great tutorial * Concise and easy-to-follow * Based on years of successful training techniques * Hands-on exercises and labs AUDIENCE Experience with Windows administration is helpful. No programming or scripting experience is assumed.

  • af Craig Walls
    410,95 kr.

    KEY SELLING POINTS Practical hands-on guide Quickly develop Spring applications Author insights based on years of Spring Development Covers newest features of Spring Boot AUDIENCE Written for readers familiar with the Spring Framework.

  • af Matthew Dowst
    433,95 kr.

    Take PowerShell beyond simple scripts and build time-saving automations for your team, your users, and the world.In Practical Automation with PowerShell you will learn how to:Build PowerShell functions to automate common and complex tasksCreate smart automations that are adaptable to new challengesStructure your code for sharing and reusabilityStore and secure your automationsExecute automations with Azure Automation, Azure Functions, and JenkinsShare your automations with your team and non-technical colleaguesStore and retrieve data, credentials, and variablesUse source control solutions to maintain and test code changesProvide front-end UI solutions for PowerShell automationsPractical Automation in PowerShell reveals how you can use PowerShell to build automation solutions for a huge number of common admin and DevOps tasks. It takes you beyond scripting basics and shows you how to handle the unforeseen complexities that can keep automations from becoming reusable and resilient. Youll discover tools and platforms that let you share your automations with your team and even roll them out to non-technical users through easy-to-understand Sharepoint frontends.

  • af Joseph Hocking
    503,95 kr.

    Unity inAction, Third Editionteaches you to writeand deploy games with Unity. Youll work through interesting and engagingexamples of 2D, 3D, and AR/VR games to get hands-on experience of Unitysintuitive workflow tools and state-of-the-art rendering engine. Joe Hockingsexpert instruction has given thousands of aspiring game developers a clearstarting point for their journey into Unity. Starting with the initialgroundwork of a new game development project, youll quickly progress tocreating scripts and building easy-to-read UIs. Now for the first time, thisfully updated third edition presents new coverage of Unitys XR toolkit andshows you how you can start building with virtual and augmented reality.

  • af Alex Preukschat
    529,95 kr.

    In a world of changing privacy regulations, identity theft, and online anonymity, identity is a precious and complex concept. Self-Sovereign Identity (SSI) is a set of technologies that move control of digital identity from third party identity providers directly to individuals, and it promises to be one of the most important trends for the coming decades. Now in Self-Sovereign Identity, privacy and personal data experts Drummond Reed and Alex Preukschat lay out a roadmap for a future of personal sovereignty powered by the Blockchain and cryptography. Cutting through the technical jargon with dozens of practical use cases from experts across all major industries, it presents a clear and compelling argument for why SSI is a paradigm shift, and shows how you can be ready to be prepared for it.

  • af Eric Normand
    456,95 kr.

    Grokking Simplicity is a friendly, practical guide that will change the way you approach software design and development.Summary Distributed across servers, difficult to test, and resistant to modification—modern software is complex. Grokking Simplicity is a friendly, practical guide that will change the way you approach software design and development. It introduces a unique approach to functional programming that explains why certain features of software are prone to complexity, and teaches you the functional techniques you can use to simplify these systems so that they’re easier to test and debug. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology Developers rightly fear the unintended complexity that infects most code. This book shows you how to write software that keeps complexity close to its inherent minimum. As you write software you should distinguish between code that alters your system’s state, and code that does not. Once you learn to make that distinction, you can refactor much of your state-altering “actions” into stateless “calculations.” Your software will be simpler. About the book The book also teaches you to solve the complex timing bugs that inevitably creep into asynchronous and multithreaded code. In ad­vanced sections of the book you learn how composable abstractions help avoid repeating code and open up new levels of expressivity. What's inside     Patterns for simpler code     Powerful time modeling approaches to simplify asynchronous code     How higher-order functions can make code reusable and composable About the reader For intermediate and advanced developers building complex software. Exercises, illustrations, self-assessments, and hands-on examples lock in each new idea. About the author Eric Normand is an expert software developer who has been an influential teacher of functional programming since 2007. Table of Contents 1 Welcome to Grokking Simplicity 2 Functional thinking in action PART 1 - ACTIONS, CALCULATIONS, AND DATA 3 Distinguishing actions, calculations, and data 4 Extracting calculations from actions 5 Improving the design of actions 6 Staying immutable in a mutable language 7 Staying immutable with untrusted code 8 Stratified design, part 1 9 Stratified design, part 2 PART 2 - FIRST-CLASS ABSTRACTIONS 10 First-class functions, part 1 11 First-class functions, part 2 12 Functional iteration 13 Chaining functional tools 14 Functional tools for nested data 15 Isolating timelines 16 Sharing resources between timelines 17 Coordinating timelines 18 Reactive and onion architectures 19 The functional journey ahead

  • af Elton Stoneman
    496,95 kr.

    Learn Kubernetes in a Month of Lunches is your guide to getting up and running with Kubernetes.Summary In Learn Kubernetes in a Month of Lunches you'll go from "what’s a Pod?" to automatically scaling clusters of containers and components in just 22 hands-on lessons, each short enough to fit into a lunch break. Every lesson is task-focused and covers an essential skill on the road to Kubernetes mastery. You'll learn how to smooth container management with Kubernetes, including securing your clusters, and upgrades and rollbacks with zero downtime. No development stack, platform, or background is assumed. Author Elton Stoneman describes all patterns generically, so you can easily apply them to your applications and port them to other projects! Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology Create apps that perform identically on your laptop, data center, and cloud! Kubernetes provides a consistent method for deploying applications on any platform, making it easy to grow. By efficiently orchestrating Docker containers, Kubernetes simplifies tasks like rolling upgrades, scaling, and self-healing. About the book Learn Kubernetes in a Month of Lunches is your guide to getting up and running with Kubernetes. You'll progress from Kubernetes basics to essential skills, learning to model, deploy, and manage applications in production. Exercises demonstrate how Kubernetes works with multiple languages and frameworks. You'll also practice with new apps, legacy code, and serverless functions. What's inside     Deploying applications on Kubernetes clusters     Understanding the Kubernetes app lifecycle, from packaging to rollbacks     Self-healing and scalable apps     Using Kubernetes as a platform for new technologies About the reader For readers familiar with Docker and containerization. About the author Elton Stoneman is a Docker Captain, a 11-time Microsoft MVP, and the author of Learn Docker in a Month of Lunches. Table of Contents PART 1 - FAST TRACK TO KUBERNETES 1 Before you begin 2 Running containers in Kubernetes with Pods and Deployments 3 Connecting Pods over the network with Services 4 Configuring applications with ConfigMaps and Secrets 5 Storing data with volumes, mounts, and claims 6 Scaling applications across multiple Pods with controllers PART 2 - KUBERNETES IN THE REAL WORLD 7 Extending applications with multicontainer Pods 8 Running data-heavy apps with StatefulSets and Jobs 9 Managing app releases with rollouts and rollbacks 10 Packaging and managing apps with Helm 11 App development—Developer workflows and CI/CD PART 3 - PREPARING FOR PRODUCTION 12 Empowering self-healing apps 13 Centralizing logs with Fluentd and Elasticsearch 14 Monitoring applications with Kubernetes with Prometheus 15 Managing incoming traffic with Ingress 16 Securing applications with policies, contexts, and admission control PART 4 - PURE AND APPLIED KUBERNETES 17 Securing resources with role-based access control 18 Deploying Kubernetes: Multinode and multiarchitecture clusters 19 Controlling workload placement and automatic scaling 20 Extending Kubernetes with custom resources and Operators 21 Running serverless functions in Kubernetes 22 Never the end

  • af JJ Geewax
    548,95 kr.

    API Design Patterns lays out a set of design principles for building internal and public-facing APIs.Summary A collection of best practices and design standards for web and internal APIs. In API Design Patterns you will learn:     Guiding principles for API patterns     Fundamentals of resource layout and naming     Handling data types for any programming language     Standard methods that ensure predictability     Field masks for targeted partial updates     Authentication and validation methods for secure APIs     Collective operations for moving, managing, and deleting data     Advanced patterns for special interactions and data transformations API Design Patterns reveals best practices for building stable, user-friendly APIs. These design patterns can be applied to solve common API problems and flexibly altered to fit your specific needs. Hands-on examples and relevant use-cases illustrate patterns for API fundamentals, advanced functionalities, and even uncommon scenarios. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology APIs are contracts that define how applications, services, and components communicate. API design patterns provide a shared set of best practices, specifications and standards that ensure APIs are reliable and simple for other developers to use. This book collects and explains the most important patterns from both the API design community and the experts at Google. About the book API Design Patterns lays out a set of design principles for building internal and public-facing APIs. Google API expert JJ Geewax presents patterns that ensure your APIs are consistent, scalable, and flexible. You’ll improve the design of the most common APIs, plus discover techniques for tricky edge cases. Precise illustrations, relevant examples, and detailed scenarios make every pattern clear and easy to understand. What's inside     Guiding principles for API patterns     Fundamentals of resource layout and naming     Advanced patterns for special interactions and data transformations     A detailed case-study on building an API and adding features About the reader For developers building web and internal APIs in any language. About the author JJ Geewax is a software engineer at Google, focusing on Google Cloud Platform, API design, and real-time payment systems. He is also the author of Manning’s Google Cloud Platform in Action. Table of Contents PART 1 INTRODUCTION 1 Introduction to APIs 2 Introduction to API design patterns PART 2 DESIGN PRINCIPLES 3 Naming 4 Resource scope and hierarchy 5 Data types and defaults PART 3 FUNDAMENTALS 6 Resource identification 7 Standard methods 8 Partial updates and retrievals 9 Custom methods 10 Long-running operations 11 Rerunnable jobs PART 4 RESOURCE RELATIONSHIPS 12 Singleton sub-resources 13 Cross references 14 Association resources 15 Add and remove custom methods 16 Polymorphism PART 5 COLLECTIVE OPERATIONS 17 Copy and move 18 Batch operations 19 Criteria-based deletion 20 Anonymous writes 21 Pagination 22 Filtering 23 Importing and exporting PART 6 SAFETY AND SECURITY 24 Versioning and compatibility 25 Soft deletion 26 Request deduplication 27 Request validation 28 Resource revisions 29 Request retrial 30 Request authentication

  • - A Java-based introduction
    af Johan Vos
    433,95 kr.

  • af Iain Foulds
    456,95 kr.

  • af Eli Stevens
    422,95 kr.

    Every other day we hear about new ways to put deep learning to good use: improved medical imaging, accurate credit card fraud detection, long range weather forecasting, and more. PyTorch puts these superpowers in your hands, providing a comfortable Python experience that gets you started quickly and then grows with you as you, and your deep learning skills, become more sophisticated.Deep Learning with PyTorch teaches you how to implement deep learning algorithms with Python and PyTorch. This book takes you into a fascinating case study: building an algorithm capable of detecting malignant lung tumors using CT scans. As the authors guide you through this real example, you''ll discover just how effective and fun PyTorch can be. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.

  • af Nicolo Valigi
    249,95 kr.

    Summary How can artificial intelligence transform your business? In Zero to AI, you'll explore a variety of practical AI applications you can use to improve customer experiences, optimize marketing, help you cut costs, and more. In this engaging guide written for business leaders and technology pros alike, authors and AI experts Nicolò Valigi and Gianluca Mauro use fascinating projects, hands-on activities, and real-world explanations to make it clear how your business can benefit from AI. About the technology There's no doubt that artificial intelligence has made some impressive headlines recently, from besting chess and Go grand masters to producing uncanny deep fakes that blur the lines of reality. But what can AI do for you? If you want to understand how AI will impact your business before you invest your time and money, this book is for you. About the book Zero to AI uses clear examples and jargon-free explanations to show the practical benefits of AI. Each chapter explores a real-world case study demonstrating how companies like Google and Netflix use AI to shape their industries. You begin at the beginning, with a primer on core AI concepts and realistic business outcomes. To help you prepare for the transition, the book breaks down a successful AI implementation, including advice on hiring the right team and making decisions about resources, risks, and costs. What's inside Identifying where AI can help your organization Designing an AI strategy Evaluating project scope and business impact Using AI to boost conversion rates, curate content, and analyze feedback Understanding how modern AI works and what it can/can't doAbout the reader For anyone who wants to gain an understanding of practical artificial intelligence and learn how to design and develop projects with high business impact. About the authors Gianluca Mauro and Nicolò Valigi are the cofounders of AI Academy, a company specializing in AI trainings and consulting. Table of Contents:1. An introduction to artificial intelligencePART 1 - UNDERSTANDING AI2. Artificial intelligence for core business data3. AI for sales and marketing4. AI for media5. AI for natural language6. AI for content curation and community buildingPART 2 - BUILDING AI7. Ready—finding AI opportunities8. Set—preparing data, technology, and people9. Go—AI implementation strategy10. What lies ahead

  • af Kalle Rosenbaum
    364,95 kr.

    Key features * Jargon-free * Step-by-step guide * Real-world examples Audience This book provides a jargon-free introduction to Bitcoin for any technically interested reader. Some chapters address technical concepts that require basic knowledge of networking and programming.

  • af Jon Skeet
    456,95 kr.

    Key features * Expert guidance * Hands-on examples * Step-by-step guide Audience If you're a C# developer who's comfortable working with the language and wants to really dig in deep, then this book is for you.

  • af Steve Kinney
    410,95 kr.

    SummaryElectron in Action guides you, step-by-step, as you learn to build cross-platform desktop applications that run on Windows, OSX, and Linux. By the end of the book, you''ll be ready to build simple, snappy applications using JavaScript, Node, and the Electron framework.Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.About the TechnologyWouldn''t it be great to build desktop applications using just your web dev skills? Electron is a framework designed for exactly that! Fully cross-platform, Electron lets you use JavaScript and Node to create simple, snappy desktop apps. Spinning up tools, games, and utilities with Electron is fast, practical, and fun!About the BookElectron in Action teaches you to build cross-platform applications using JavaScript, Node, and the Electron framework. You''ll learn how to think like a desktop developer as you build a text tool that reads and renders Markdown. You''ll add OS-specific features like the file system, menus, and clipboards, and use Chromium''s tools to distribute the finished product. You''ll even round off your learning with data storage, performance optimization, and testing. What''s insideBuilding for macOS, Windows, and LinuxNative operating system APIsUsing third-party frameworks like ReactDeploying to the Mac App StoreAbout the ReaderRequires intermediate JavaScript and Node skills. No experience building desktop apps required.About the AuthorSteven Kinney is a principal engineer at SendGrid, an instructor with Frontend Masters, and the organizer of the DinosaurJS conference in Denver, Colorado.Table of ContentsPART 1 - GETTING STARTED WITH ELECTRON Introducing Electron Your first Electron application PART 2 - BUILDING CROSS-PLATFORM APPLICATIONS WITH ELECTRONBuilding a notes application Using native file dialog boxes and facilitating interprocess communication Working with multiple windows Working with files Building application and context menus Further operating system integration and dynamically enabling menu items Introducing the tray module Building applications with the menubar library Using transpilers and frameworks Persisting use data and using native Node.js modules Testing applications with Spectron PART 3 - DEPLOYING ELECTRON APPLICATIONS Building applications for deploymentReleasing and updating applications Distributing your application through the Mac App Store

  • af Matt Pearson
    295,95 kr.

    Artists have always explored new media, and computer-based artists are no exception. Generative art, an emerging technique where print or onscreen images are created by use of computer algorithms, finds the artistic intersection between programming, computer graphics, and individual expression.Generative Art presents both the technique and the beauty of algorithmic art. In it, you'll find dozens of high-quality examples of generative art, along with the specific programmatic steps author and artist Matt Pearson followed to create each unique piece. The book includes concise tutorials for each of the technical components required to create the book's examples, and it offers countless suggestions for how you can combine and reuse the various techniques to create your own works.

  • af Aditya Bhargava
    481,95 kr.

    A friendly, fully-illustrated introduction to the most important computer programming algorithms. Suitable for self-taught programmers, engineers, job seekers, or anyone who wants to brush up on algorithms.

  • af Christopher Trudeau
    521,95 kr.

    Build professional quality web applications using Python and the Django 4.2 web framework. The Django web application framework powers huge sites like Netflix, Dropbox, YouTube and Spotify. Learn how it can power your web apps too! In this hands-on book, you'll start building a fully-functional web application with Django starting with chapter 1. In Django in Action you'll: Build a multi-user web site in Django Read, write, and manage data Create reusable and composable HTML templates Manage user data including form submissions and file uploads Set up authentication, authorization, and per-person-per-page permissions Manage the backend using the Django Admin tool Discover Django libraries and plugins Django in Action is the perfect way to get started for new Django developers creating their first Python-based web apps. It's written by Christopher Trudeau, co-host of The Real Python Podcast and creator of dozens of popular courses at Real Python and TalkPython. As you work through the book, you'll create and upgrade a web application as you explore useful and exciting Django plug-ins, and tackle challenging exercises that help lock-in your new skills. You'll especially enjoy the author's lighthearted style that makes learning fun! Purchase of the print book includes a free eBook in PDF and ePub formats from Manning Publications. About the book Django in Action teaches Django from scratch. All you need to get started are some basic Python skills. Chapter-by-chapter, you'll construct a complete multi-user website for RiffMates: a classified ads site aimed at rocking musicians. The book starts with Django's basics, and works through all of the core concepts of the framework until you're comfortable and confident creating your own web apps. As you go, you'll dive into great third-party libraries from the Django community that let you customize Django. You'll even learn how to use Django with single-page web apps, REST APIs, and more. About the reader For readers who know the basics of Python programming and some HTML. About the author Christopher Trudeau has built high performing teams in a variety of industries including gaming, marketing, travel, finance, government, and consulting. He has authored content for Talk Python and Real Python, including articles and video courses on a variety of Django and Python topics. He is co-author of the yearly feature round-up for new Python releases and co-host of the Real Python Podcast.

  • af Sam Van Overmeire
    678,95 kr.

    Write Powerful Rust Macros teaches you how to write, test, debug, and publish macros for Rust. It's perfect for Rust practitioners who want to master this powerful development technique.

  • af James Petty
    678,95 kr.

    Inside AI tours every leading technique of AI and machine learning, showing you how they work, and how you can incorporate them into your business. Accessible, non-technical language and real-world use cases help you develop a practical AI literacy so you can start using these tools to their full potential.

  • af Roman Elizarov
    678,95 kr.

    Kotlin in Action, Second Edition teaches you Kotlin techniques you can use for almost any type of application, from enterprise services to Android apps. You'll start with Kotlin fundamentals, learning how the language handles everything from statements and functions to classes and types, and about its unique features that make Kotlin programming so seamless.

  • af Evelyn van Kelle
    563,95 kr.

    Good practices, collaboration tools, and effective techniques for incorporating your key stakeholders into the software design process.In Collaborative Software Design: How to facilitate domain modeling decisions you’ll learn how to:   Prepare and facilitate collaborative modeling sessions with tools such as Business Model Canvas, Event Storming, Example Mapping, and Wardley Mapping Pick and apply heuristics for modeling software design Structure, visualize, and make sustainable software design decisions Best practices for getting all needed insight from the group Dealing with resistance Create awareness around biases and ranking during a modeling session Best practices for following up after a modeling session Document the session and report to stakeholders Don’t spend months building the wrong software! Collaborative Software Design: How to facilitate domain modeling decisions is a unique and practical guide for effectively involving all stakeholders in the design of software. It combines tried-and-tested collaborative modeling tools such as Event Storming and domain storytelling with vital skills to overcome rank, mitigate cognitive bias, and resolve conflicts. Best of all, collaborative modeling makes it easy for software teams to design software directly with their stakeholders—no need to rely on a centralized or top-down design. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the technology It’s a challenge to arrive at achievable, sustainable software design decisions. Fortunately, there’s a collection of tools and techniques you can use to facilitate productive decision-making sessions, even when you involve a diverse group of business and technical stakeholders. Collaborative modeling is a highly effective approach to software design that incorporates stakeholders directly in the decision-making process. It uses process visualizations, engaging sessions, and social dynamic management to ensure everyone is contributing to a shared goal. About the book Collaborative Software Design: How to facilitate domain modeling decisions is a practical guide to conducting effective software design sessions that involve all business and technical stakeholders. It lays out pragmatic techniques for making collaborative design decisions, ensuring you’re getting a group’s full participation and input to solve real business problems. You’ll deliver results by combining collaborative modeling tools, and learn how to manage conflicts, handle resistance, and keep everyone involved even when a session has ended. Put these techniques into practice, and you’ll be able to facilitate incredibly effective design sessions in which everyone’s voices are heard. About the reader For any tech leader who wants to make better architectural decisions. About the author Evelyn van Kelle is a strategic software delivery consultant, with experience in coaching, advising, facilitating, and guiding organizations and teams in designing and maintaining socio-technical systems. Gien Verschatse is an experienced consultant and software engineer that specializes in domain modeling and software architecture. Kenny Baas-Schwegler is a strategic software delivery consultant and agile software architect focusing on socio-technical systems thinking.

  • af Nathan B Crocker
    563,95 kr.

    Use groundbreaking generative AI tools to increase your productivity, efficiency, and code quality.You just got a promotion! AI coding tools like GitHub Copilot, ChatGPT, and Amazon CodeWhisperer turn every developer into an engineering manager, overseeing a super-smart and super-fast junior coder. In AI-Powered Developer you’ll discover how to get the most out of your new assistant: Harness AI to help you design and plan software Use AI for code generation, debugging, and documentation Improve your code quality assessments with the help of AI Articulate complex problems to prompt an AI solution Develop a continuous learning mindset that keeps you up to date Adapt your development skills to almost any language AI-Powered Developer demonstrates effective techniques and best practices for getting the most out of AI-powered coding using tools like Copilot and ChatGPT. The book cuts through the hype, showcasing real-world examples of how these tools ease and enhance your everyday tasks. You’ll soon be using AI for everything from writing boilerplate to assisting with software design. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the book AI-Powered Developer shows you how to put AI coding tools like Github Copilot and ChatGPT into action. Throughout the book, you’ll generate code and design ideas as you build an IT Asset Management system using AI in every step of the development process. Clear advice and hands-on examples show you how to integrate these tools into your daily workflow. You’ll create self-documenting applications, generate predictive suggestions, and even use AI to test and explain your code. This practical book helps you develop an instinct for AI code and an understanding of what problems AI can and can’t solve. You’ll soon be confident in your transition to this new way to build software, aided by your diligent team of AI assistants. About the reader For software developers familiar with Python. About the author Nathan Crocker is a Managing Director and the Global Head of Core Systems at Galaxy Digital LP., one of the premier financial services and investment management companies in the digital asset and cryptocurrency sector.

  • af Malcolm McDonald
    788,95 kr.

    Grokking Web Application Security teaches you how to build web apps that are ready for and resilient to any attack. You'll learn what motivates hackers to hack a site, discover the latest tools for identifying security issues, and set up a development lifecycle that catches security issues early.

  • af Tony Cruise
    563,95 kr.

    Classic Game Programming on the NES will show you how to turn your ideas into reality. You don't need any game development experience or specialist programming skills. You don't need a team of developers and graphic artists. This one-stop guide teaches you everything you need to know, step-by-step.

Gør som tusindvis af andre bogelskere

Tilmeld dig nyhedsbrevet og få gode tilbud og inspiration til din næste læsning.