10 resultater (0,19505 sekunder)

Mærke

Butik

Pris (EUR)

Nulstil filter

Produkter
Fra
Butikker

Beginning Go Programming - Maryam Zulfiqar - Bog - APress - Plusbog.dk

Beginning Perl Programming - William "bo" Rothwell - Bog - APress - Plusbog.dk

Beginning Perl Programming - William "bo" Rothwell - Bog - APress - Plusbog.dk

Get started with Perl 5 and learn the important core concepts of Perl programming, such as variables, flow control, expressions, and I/O. Additionally, this book covers pattern matching and shows that Perl is extremely flexible and powerful, and that it isn''t afraid of the cloud. After reading and using this book, you''ll be able to start writing your own powerful scripts to solve many web and programming problems. This is a book for those of us who believed that we didn''t need to learn Perl, and now we know it is more ubiquitous than ever. You''ll see that Perl has evolved into a multipurpose, multiplatform language present absolutely everywhere: heavy-duty web applications, the cloud, systems administration, natural language processing, and financial engineering. This book provides valuable insight into Perl''s role regarding all of these tasks and more giving you a great start in your Perl programming adventure. What You Will Learn - Perform operations on scalar values - Use scalar, array, and associative array variables - Work with flow control statements such as if, unless, while, until, for, and foreach - Read and write directly to files with file handles - Use conditional expressions such as numeric and string comparison, regular expressions, file testing, and Perl statements - Format output with format statements - Search for and replace sub-strings within a string using regular expressions - Master Perl utilities such as split, join, index and more - Control the file system and processes from within a Perl script - Build functions for tasks including handling the scope of variables - Import existing modules into your Perl script Who This Book Is For Those who are new to Perl.

DKK 476.00
1

Microsoft Excel Functions Quick Reference - Mandeep Mehta - Bog - APress - Plusbog.dk

Java 17 Recipes - Luciano Manelli - Bog - APress - Plusbog.dk

Beginning Ada Programming - Andrew T. Shvets - Bog - APress - Plusbog.dk

Beginning Ada Programming - Andrew T. Shvets - Bog - APress - Plusbog.dk

Discover the Ada programming language by being gently guided through the various parts of the language and its latest available stable release. The goal in this book is to slowly ease you into the different topics. It is understood that you do not always have ample free time, so the text is easy to digest and concepts are spoon fed to the reader. Starting with the simplest of topics, detailed explanations demonstrate the how and why of Ada. You are strongly encouraged to experiment and break things (without which the learning process is linear and quite dull). At the end of Beginning Ada Programming , you will have an excellent understanding of the general topics that make up the Ada programming language and can tackle far more challenging topics. Each chapter builds on what was previously described. Furthermore, each code example is independent of others and will run all by itself. Instructions are provided where you can obtain an Ada compiler and how to debug your code. What You Will Learn - Master basic types, control structures, procedures, and functions in Ada - Use Ada arrays, records, and access types - Implement OO programming using Ada - Handle the basics of I/O and interfacing with the operating system - Take advantage of string operators, data containers, multiprocessing with tasks, and more - Work with contracts and proofs, networks, and various Ada libraries - Who This Book Is For Programmers who are new to Ada, with at least some experience in programming, especially scientific programming.

DKK 476.00
1

Beginning Functional JavaScript - Srikanth Machiraju - Bog - APress - Plusbog.dk

Beginning Functional JavaScript - Srikanth Machiraju - Bog - APress - Plusbog.dk

Understand functional programming concepts and the functional nature of the JavaScript language. Starting with an introduction to functional programming concepts, you will learn the key differences between imperative and functional programming. Diving straight into JavaScript functions, you will learn to write them with ES8. Followed by this you will move to higher order functions and learn how ''Function as Data'' opens up a world of possibilities. You will then build higher order functions with closures. Arrays will then be introduced, followed by a set of APIs you can use with them. You will learn how to transform one function to another using currying and partial application. The compose function will be discussed in detail, followed by functors and monads. After having an in-depth look at applicative functors, you will learn the new features offered in ES8. The concluding chapters of Beginning Functional JavaScript will show you how to use a functional toolkit to build a small library that allows you to develop web applications, followed by tips on testing your functional code. What You Will Learn - Discover functional programming concepts such as string padding and async functions - Identify how functions are treated in JavaScript - Create a functional library that mimics Underscore.JS - Deep dive into ES8 functional features such as spread operators and generators - Create a library that works like the react-redux pattern by following the functional paradigm Who This Book Is For Novice JavaScript developers.

DKK 519.00
1

Pro Spring 6 with Kotlin - Peter Spath - Bog - APress - Plusbog.dk

Pro Spring 6 with Kotlin - Peter Spath - Bog - APress - Plusbog.dk

Master the fundamentals of Spring Framework 6 while learning from the real-world experiences of Spring experts. Over the course of this book, you'll learn how to leverage Spring 6 in tandem with the Kotlin programming language to build complex enterprise applications from top to bottom. From monoliths to cloud native apps for streaming microservices, you’ll gain insight into every aspect of the process, including transactions, data access, persistence, and web and presentation tiers. As you progress through the book, the authors demonstrate how to run Kotlin with a single command, deploy new utility methods in String class, use Local-Variable Syntax for Lambda Parameters Nested Based Access Control, read/write strings to and from files, and using Flight Recorder. Also, a whole new generation of dependencies are available, and you’ll see exactly how to make optimal use of them. A full sample application will show you how to apply Spring 6’s new tools and techniques and see how they work together. After reading this comprehensive book, you'll be ready to build your own Spring applications using Kotlin. What You Will LearnExplore what's new in Spring Framework 6 and the Kotlin APIs it supportsLeverage a new generation of dependenciesBuild complex enterprise monoliths, cloud-native applications, and microservicesMaster data access, persistence, and transactionsUse with Spring Batch, Integration, and other key Spring modulesIntegrate Spring 6 with Hibernate and other third party APIs and packages Who This Book Is ForExperienced Kotlin and Java software developers and programmers. Some previous experience with Spring is highly recommended.

DKK 519.00
1

C++17 Standard Library Quick Reference - Marc Gregoire - Bog - APress - Plusbog.dk

C++17 Standard Library Quick Reference - Marc Gregoire - Bog - APress - Plusbog.dk

This quick reference is a condensed guide to the essential data structures, algorithms, and functions provided by the C++17 Standard Library. It does not explain the C++ language or syntax, but is accessible to anyone with basic C++ knowledge or programming experience. Even the most experienced C++ programmer will learn a thing or two from it and find it a useful memory-aid. It is hard to remember all the possibilities, details, and intricacies of the vast and growing Standard Library. This handy reference guide is therefore indispensable to any C++ programmer. It offers a condensed, well-structured summary of all essential aspects of the C++ Standard Library. No page-long, repetitive examples or obscure, rarely used features. Instead, everything you need to know and watch out for in practice is outlined in a compact, to-the-point style, interspersed with practical tips and well-chosen, clarifying examples. This new edition is updated to include all Standard Library changes in C++17, including the new vocabulary types std::string_view, any, optional, and variant; parallel algorithms; the file system library; specialized mathematical functions; and more. What You Will Learn - Gain the essentials that the C++ Standard Library has to offer - Use containers to efficiently store and retrieve your data - Inspect and manipulate your data with algorithms - See how lambda expressions allow for elegant use of algorithms - Discover what the standard string class provides and how to use it - Write localized applications - Work with file and stream-based I/O - Prevent memory leaks with smart pointers - Write safe and efficient multi-threaded code using the threading libraries Who This Book Is For All C++ programmers, irrespective of their proficiency with the language or the Standard Library. A secondary audience is developers who are new to C++, but not new to programming, and who want to learn more about the C++ Standard Library in a quick, condensed manner.

DKK 391.00
1

Pro Spring 6 - Clarence Ho - Bog - APress - Plusbog.dk

Pro Spring 6 - Clarence Ho - Bog - APress - Plusbog.dk

Master the Spring Framework, its fundamentals and core topics, and share the authors'' insights and real-world experiences. This book goes well beyond the basics: you''ll learn how to leverage the latest Spring Framework 6 to build the various tiers and parts of today''s modern, complex enterprise Java applications systems, top to bottom, including data access, SQL generation with jOOQ, persistence with Hibernate, transactions, set up security, classic web and presentation tiers and adding in some reactivity. Spring 6 will be based on the latest available Long Term Support (LTS) release, Java 17. So, you will be able to do the following in your Spring applications: use records, use new utility methods in String class; utilize Local-Variable Syntax for Lambda Parameters; Nested Based Access Control, and more. Integrating Spring with the most used frameworks and libraries is covered in this book, such as Testcontainers, Hibernate, jOOQ, Kafka and many others. A full sample application allows you to apply many of the technologies and techniques covered in Pro Spring 6 and see how they work together. This book updates the perennial bestseller with the latest that Spring Framework 6 has to offer. Now in its sixth edition, this popular title is by far the most comprehensive and definitive treatment of Spring available. After reading this book, you''ll be armed with the power of Spring to build complex applications, top to bottom. The agile, lightweight, open-source Spring Framework continues to be the de facto leading enterprise Java application development framework for today''s Java programmers and developers. What You Will Learn - What''s new in Spring Framework 6 and how to use it with the latest LTS version of Java, Java 17 - How to integrate Spring with the most renowned and practical frameworks and dependencies - How to build complex enterprise cloud-native applications using Spring 6 - How to master data access, persistence and transactions - How to use with Spring Batch, Integration and other key Spring projects This Book Is For Experienced Java and enterprise Java developers and programmers. Some experience with Spring highly recommended.

DKK 519.00
1

Target C# - Gerard Byrne - Bog - APress - Plusbog.dk

Target C# - Gerard Byrne - Bog - APress - Plusbog.dk

So, you want to learn C# and Visual Studio 2022, but are a bit intimidated? Don''t be. Programming is within your grasp! Programmers at any level have to fully understand, and more importantly, be able to code the core constructs. It is impossible to use complex programming concepts such as classes before understanding what methods and variables and their data types are. Once there is a foundation built on the basics, then all other topics can fall in line. While it is a forgone conclusion that languages change with the introduction of new features, the core concepts do not. Even large enterprises do not always update to the latest versions of languages and frameworks; their "backbone" applications have been developed to work, regardless. More than ever, enterprises need developers who can master and apply the core programming concepts and then be "up-skilled" with newer language levels and features as they integrate into the company. This book builds from the ground up. You will begin with an introduction to programming, learning the foundational concepts needed to become a C# programmer. You will then put to practice a wide range of programming concepts, including data types, selection, iteration, arrays, methods, classes and objects, serialization, file handling, and string handling. You will learn enough to develop applications that emulate commercial application code. Once you''ve got the foundational concepts, get ready to dive into common programming routines, including linear search, binary search, bubble sort and insertion sort, and use C# to code them. Code example annotations supplement the learning and are designed to enhance learning while also explaining why the code does what it does. This book: - Teaches core programming through well-explained and simple-to-follow instructions - Reinforces programming skills through the use of coding examples that extend user learnings - Explains theoretical programming concepts; applies them practically with code examples - Introduces the latest Microsoft C# Integrated Development Environment (Visual Studio 2022) - Enlists clear, precise, and easy-to-understand language to assist readers of all levels and experience - Uses a mix of "theory" and practical information that is designed to be friendly and engaging Who This Book Is For Beginners, those refreshing their C# skills, or those moving from another programming language. No skills or previous knowledge is required. Readers will need to download Visual Studio 2022 Community Edition as this is what the book code has been based on, but they could use other Integrated Development Environments.

DKK 519.00
1