Hind

Kõik hinnakirjad

Müüja
Saadavus
Kaup24
Mini Urinal For Boys Frog Suction Pads Blue and Orange
GTIN: 5905515350242 Pissuaarid
Mini Urinal For Boys Frog Suction Pads Blue and Orange
Toote pilt
Tellitav
9,90 €
Kaup24
Mitsellaarvesi NEUTROGENA Hydro Boost 3-in-1 400ml
GTIN: 3574661471181 Näopuhastusvahendid
Mitsellaarvesi NEUTROGENA Hydro Boost 3-in-1 400ml
Toote pilt
Tellitav
6,80 €
Kaup24
Modeling Programming Competency: A Qualitative Analysis
GTIN: 9783031471506 Ühiskonnateemalised raamatud
Modeling Programming Competency: A Qualitative Analysis
Toote pilt
202,72 €
−35,78 €
Libristo
Modern Arm Assembly Language Programming
Tootekood: 33030430 GTIN: 9781484262665 Computer hardware
Gain the fundamentals of Armv8-A 32-bit and 64-bit assembly language programming. This book emphasizes Armv8-A assembly language topics that are relevant to modern software development. It is designed to help you quickly understand Armv8-A assembly language programming and the computational resources of Arm's SIMD platform. It also contains an abundance of source code that is structured to accelerate learning and comprehension of essential Armv8-A assembly language constructs and SIMD programming concepts. After reading this book, you will be able to code performance-optimized functions and algorithms using Armv8- A 32-bit and 64-bit assembly language. Modern Arm Assembly Language Programming accentuates the coding of Armv8-A 32-bit and 64-bit assembly language functions that are callable from C++. Multiple chapters are also devoted to Armv8-A SIMD assembly language programming. These chapters discuss how to code functions that are used in computationally intense applications such as machine learning, image processing, audio and video encoding, and computer graphics. The source code examples were developed using the GNU toolchain (g++, gas, and make) and tested on a Raspberry Pi 4 Model B running Raspbian (32-bit) and Ubuntu Server (64-bit). It is important to note that this is a book about Armv8-A assembly language programming and not the Raspberry Pi. What You Will Learn See essential details about the Armv8-A 32-bit and 64-bit architectures including data types, general purpose registers, floating-point and SIMD registers, and addressing modes Use the Armv8-A 32-bit and 64-bit instruction sets to create performance-enhancing functions that are callable from C++ Employ Armv8-A assembly language to efficiently manipulate common data types and programming constructs including integers, arrays, matrices, and user-defined structures Create assembly language functions that perform scalar floating-point arithmetic using the Armv8-A 32-bit and 64-bit instruction sets Harness the Armv8-A SIMD instruction sets to significantly accelerate the performance of computationally intense algorithms in applications such as machine learning, image processing, computer graphics, mathematics, and statistics. Apply leading-edge coding strategies and techniques to optimally exploit the Armv8-A 32-bit and 64-bit instruction sets for maximum possible performance Who This Book Is ForSoftware developers who are creating programs for Armv8-A platforms and want to learn how to code performance-enhancing algorithms and functions using the Armv8-A 32-bit and 64-bit instruction sets. Readers should have previous high-level language programming experience and a basic understanding of C++.
Toote pilt
90
53,09 €
Libristo
Modern C++ Programming with Test-Driven Development
Tootekood: 01990802 GTIN: 9781937785482 Programming & scripting languages: general
f you program in C++ you've been neglected. Test-driven development (TDD) is a modern software development practice that can dramatically reduce the number of defects in systems, produce more maintainable code, and give you the confidence to change your software to meet changing needs. But C++ programmers have been ignored by those promoting TDD--until now. In this book, Jeff Langr gives you hands-on lessons in the challenges and rewards of doing TDD in C++. Modern C++ Programming With Test-Driven Development, the only comprehensive treatment on TDD in C++ provides you with everything you need to know about TDD, and the challenges and benefits of implementing it in your C++ systems. Its many detailed code examples take you step-by-step from TDD basics to advanced concepts. As a veteran C++ programmer, you're already writing high-quality code, and you work hard to maintain code quality. It doesn't have to be that hard.In this book, you'll learn: * how to use TDD to improve legacy C++ systems * how to identify and deal with troublesome system dependencies * how to do dependency injection, which is particularly tricky in C++ * how to use testing tools for C++ that aid TDD * new C++11 features that facilitate TDD As you grow in TDD mastery, you'll discover how to keep a massive C++ system from becoming a design mess over time, as well as particular C++ trouble spots to avoid. You'll find out how to prevent your tests from being a maintenance burden and how to think in TDD without giving up your hard-won C++ skills. Finally, you'll see how to grow and sustain TDD in your team. Whether you're a complete unit-testing novice or an experienced tester, this book will lead you to mastery of test-driven development in C++. What You Need * A C++ compiler running under Windows or Linux, preferably one that supports C++11. Examples presented in the book were built under gcc 4.7.2. * Google Mock 1.6 (downloadable for free; it contains Google Test as well) or an alternate C++ unit testing tool.Most examples in the book are written for Google Mock, but it isn't difficult to translate them to your tool of choice. * A good programmer's editor or IDE. * cmake, preferably. Of course, you can use your own preferred make too. CMakeLists.txt files are provided for each project. Examples provided were built using cmake version 2.8.9. * Various freely-available third-party libraries are used as the basis for examples in the book. These include: - cURL - JsonCpp - Boost (filesystem, date_time/gregorian, algorithm, assign) Several examples use the boost headers/libraries. Only one example uses cURL and JsonCpp.
Toote pilt
90
44,59 €
Libristo
Modern Parallel Programming with C++ and Assembly Language
Tootekood: 37333824 GTIN: 9781484279175 Computing & Information Technology
Learn the fundamentals of x86 Single instruction multiple data (SIMD) programming using C++ intrinsic functions and x86-64 assembly language. This book emphasizes x86 SIMD programming topics and technologies that are relevant to modern software development in applications which can exploit data level parallelism, important for the processing of big data, large batches of data and related important in data science and much more.Modern Parallel Programming with C++ and Assembly Language is an instructional text that explains x86 SIMD programming using both C++ and assembly language. The book's content and organization are designed to help you quickly understand and exploit the SIMD capabilities of x86 processors. It also contains an abundance of source code that is structured to accelerate learning and comprehension of essential SIMD programming concepts and algorithms. After reading this book, you will be able to code performance-optimized AVX, AVX2, and AVX-512 algorithms using either C++ intrinsic functions or x86-64 assembly language. What You Will LearnUnderstand the essential details about x86 SIMD architectures and instruction sets including AVX, AVX2, and AVX-512.Master x86 SIMD data types, arithmetic instructions, and data management operations using both integer and floating-point operands.Code performance-enhancing functions and algorithms that fully exploit the SIMD capabilities of a modern x86 processor.Employ C++ intrinsic functions and x86-64 assembly language code to carry out arithmetic calculations using common programming constructs including arrays, matrices, and user-defined data structures.Harness the x86 SIMD instruction sets to significantly accelerate the performance of computationally intense algorithms in applications such as machine learning, image processing, computer graphics, statistics, and matrix arithmetic.Apply leading-edge coding strategies and techniques to optimally exploit the x86 SIMD instruction sets for maximum possible performance. Who This Book Is ForIntermediate to advanced programmers/developers in general. Readers of this book should have previous programming experience with modern C++ (i.e., ANSI C++11 or later) and Assembly. Some familiarity with Microsoft's Visual Studio or the GNU toolchain will be helpful. The target audience for Modern X86 SIMD Programming are experienced software developers, programmers and maybe some hobbyists.
Toote pilt
90
56,99 €
Kaup24
Modern Programmable Interconnect Design
GTIN: 9783031806285 Aiandusraamatud
Modern Programmable Interconnect Design
Toote pilt
202,72 €
−35,78 €
Libristo
Modern X86 Assembly Language Programming
Tootekood: 43387551 GTIN: 9781484296028 Compilers & interpreters
This book is an instructional text that will teach you how to code x86-64 assembly language functions. It also explains how you can exploit the SIMD capabilities of an x86-64 processor using x86-64 assembly language and the AVX, AVX2, and AVX-512 instruction sets.This updated edition's content and organization are designed to help you quickly understand x86-64 assembly language programming and the unique computational capabilities of x86 processors. The source code is structured to accelerate learning and comprehension of essential x86-64 assembly language programming constructs and data structures. Modern X86 Assembly Language Programming, Third Edition includes source code for both Windows and Linux. The source code elucidates current x86-64 assembly language programming practices, run-time calling conventions, and the latest generation of software development tools.What You Will LearnUnderstand important details of the x86-64 processor platform, including its core architecture, data types, registers, memory addressing modes, and the basic instruction setUse the x86-64 instruction set to create assembly language functions that are callable from C++Create assembly language code for both Windows and Linux using modern software development tools including MASM (Windows) and NASM (Linux)Employ x86-64 assembly language to efficiently manipulate common data types and programming constructs including integers, text strings, arrays, matrices, and user-defined structuresExplore indispensable elements of x86 SIMD architectures, register sets, and data types.Master x86 SIMD arithmetic and data operations using both integer and floating-point operandsHarness the AVX, AVX2, and AVX-512 instruction sets to accelerate the performance of computationally-intense calculations in machine learning, image processing, signal processing, computer graphics, statistics, and matrix arithmetic applicationsApply leading-edge coding strategies to optimally exploit the AVX, AVX2, and AVX-512 instruction sets for maximum possible performanceWho This Book Is ForSoftware developers who are creating programs for x86 platforms and want to learn how to code performance-enhanced algorithms using the core x86-64 instruction set; developers who need to learn how to write SIMD functions or accelerate the performance of existing code using the AVX, AVX2, and AVX-512 instruction sets; and computer science/engineering students or hobbyists who want to learn or better understand x86-64 assembly language programming and the AVX, AVX2, and AVX-512 instruction sets.
Toote pilt
90
56,99 €
Libristo
Move to Global War: IB History Print and Online Pack: Oxford IB Diploma Programme
Tootekood: 09108958 GTIN: 9780198354932 For International Baccalaureate (IB) Diploma
Drive critical, engaged learning. Helping learners more deeply understand historical concepts, the student-centred approach of this new Course Book enables broader, big picture understanding. Developed directly with the IB and fully supporting the new 2015 syllabus, the structured format helps you easily progress through the new course content.
Toote pilt
7
74,59 €
Libristo
Multi-Platform Graphics Programming with Kivy
Tootekood: 35575869 GTIN: 9781484271124 Graphical & digital media applications
Modern science requires computer graphics models to provide realistic visual renderings. Learning the appropriate programming tools for 2D and 3D modeling doesn't have to be so difficult. This book reviews the best programming tools to achieve this and explains how to apply them to mobile platforms like Android. Multi-Platform Graphics Programming with Kivy provides a straightforward introductory approach for designing 2D, 3D, and stereoscopic applications, using analytical equations from vector algebra. Throughout the book you'll look closely at this approach and develop scenes in Kivy, taking advantage of powerful mathematical functions for arrays by NumPy for Python. Unbuntu is used to develop the programs, which allows you to easily convert to Android platform. Each chapter contains step-by-step descriptions on each subject and provides complete program listings. What You'll Learn Work with Kivy, a modern, powerful multi-platform graphics system Convert and run programs on Android devices Program, fill faces, and rotate 2D and 3D polygons Apply the concepts of 2D and 3D applications Develop stereoscopic scenes Review a straightforward introduction to 2D, 3D, and stereoscopic graphics applications Use simple analytical equations from vector algebra Who This Book Is For The primary audience is students and researchers in graphics programming with experience in analytical equations.
Toote pilt
90
45,59 €
Kaup24
Munapann AMT Gastroguss I226EZ2
Tootekood: I226EZ2 GTIN: 4250194611544 Pannid
Munapann AMT Gastroguss I226EZ2
Toote pilt
1-5 tp
90,90 €
Kaup24
Muruväetis Progarden Autumn, 10kg
Tootekood: 2.007761 GTIN: 4770107252560 Kuivväetised
Muruväetis Progarden Autumn, 10kg
Toote pilt
Tellitav
21,99 €
Kaup24
Näohoolduskomplekt Sisley-Paris Hydra-Global Discovery Programm naistele: niisutav näokreem Hydra Global, 40 ml + mitsellaarvesi Eau Efficace, 30 ml + näokreem Express Flower Gel, 10 ml + näoseerum Hydra-Global Serum, 5 ml
Tootekood: kSI310 GTIN: 3473311266262 Näokreemid
Näohoolduskomplekt Sisley-Paris Hydra-Global Discovery Programm naistele: niisutav näokreem Hydra Global, 40 ml + mitsellaarvesi Eau Efficace, 30 ml + näokreem Express Flower Gel, 10 ml + näoseerum Hydra-Global Serum, 5 ml
Toote pilt
Tellitav
214,00 €
Kaup24
Näopesuvaht kurkumiga NEUTROGENA Clear & Soothe 150 ml
Tootekood: JNTR2708 GTIN: 3574661527086 Näopuhastusvahendid
Näopesuvaht kurkumiga NEUTROGENA Clear & Soothe 150 ml
Toote pilt
1-5 tp
8,09 €
−0,10 €
Kaup24
Närimislelu Mam Max The Frog, 4 kuud+, 1 tk
Tootekood: 411210 GTIN: 7392855112100 Närimislelud
Närimislelu Mam Max The Frog, 4 kuud+, 1 tk
Toote pilt
Tellitav
9,99 €
Kaup24
Neljakandiline grillpann AMT Gastroguss, 26x26 cm
GTIN: 4250194622229 Pannid
Neljakandiline grillpann AMT Gastroguss, 26x26 cm
Toote pilt
Tellitav
65,25 €
Kaup24
Neutrogena
Tootekood: kNEU080 GTIN: 3574661527925 Kehakreemid, kehaspreid
Neutrogena
Toote pilt
Tellitav
5,20 €
Digizone
Neutrogena
Tootekood: S05126798 Keha- ja nahahooldus
Neutrogena
12-14tp
13,35 €
Benu
NEUTROGENA HUULEPALSAM 4,8G
Tootekood: MM0057008 GTIN: 3574660013139 Näohooldus
NEUTROGENA hügieeniline huulepulk kuivadele ja lõhenenud huultele. Sisaldab SPF 4 päikesekaitsefaktorit.
Toote pilt
Laos
4,57 €
Kaup24
Neutrogena Hydro Boost mitsellaarvesi 3 in 1 (mitsellaarvesi) 400 ml
GTIN: 3574661450940 Näopuhastusvahendid
Neutrogena Hydro Boost mitsellaarvesi 3 in 1 (mitsellaarvesi) 400 ml
Toote pilt
Tellitav
13,31 €
Kaup24
Neutrogena Intensiivselt taastav huulepalsam 15 ml
GTIN: 3574660602807 Huulepulgad, -läiked, -palsamid, vaseliin
Neutrogena Intensiivselt taastav huulepalsam 15 ml
Toote pilt
Tellitav
4,37 €
Kaup24
Neutrogena jalgade kreem, 40 ml
GTIN: 3574660232691 Kehakreemid, kehaspreid
Neutrogena jalgade kreem, 40 ml
Toote pilt
Tellitav
21,78 €
Digizone
Neutrogena kätekreem Concentrated niisutav (50ml)
Tootekood: S0591695 Keha- ja nahahooldus
Neutrogena kätekreem Concentrated niisutav (50ml)
12-14tp
6,71 €
Benu
NEUTROGENA KÄTEKREEM KIIRESTI IMENDUV 75ML
Tootekood: MM0084958 GTIN: 3574660239867 Käte- ja jalahooldus
NEUTROGENA niisutab ja pehmendab koheselt nahka, taastades selle elastsuse. Kerge rasvatu koostise tõttu imendub kreem otsekohe, jättes meeldiva mugavustunde. Kiirestiimenduv kätekreem niisutab käsi koheselt, taastub naha pehmus ja elastsus.  
Toote pilt
Laos
7,27 €
Digizone
Neutrogena kätekreem kontsentreeritud (2 x 50ml)
Tootekood: S05101863 Keha- ja nahahooldus
Neutrogena kätekreem kontsentreeritud (2 x 50ml)
12-14tp
12,83 €
Digizone
Neutrogena kätekreem küüned (75ml)
Tootekood: S0594997 Maniküür ja pediküür
Neutrogena kätekreem küüned (75ml)
12-14tp
9,03 €
Digizone
Neutrogena kätekreem Norwegian Formula Rapid Absorption Valgustekstuur (140ml)
Tootekood: S0595388 Keha- ja nahahooldus
Neutrogena kätekreem Norwegian Formula Rapid Absorption Light Texture (140ml)
12-14tp
12,31 €
Digizone
Neutrogena kätekreem Visibly Renew 75ml
Tootekood: S05108983 Keha- ja nahahooldus
Neutrogena kätekreem Visibly Renew 75ml
12-14tp
10,37 €
Digizone
Neutrogena keha taastav Palsam REPARACIÓN INTENSA 100ml
Tootekood: S05126792 Keha- ja nahahooldus
Neutrogena keha taastav Palsam REPARACIÓN INTENSA 100ml
12-14tp
13,83 €
Kaup24
Neutrogena kehakreem, 400 ml
GTIN: 3574660653151 Kehakreemid, kehaspreid
Neutrogena kehakreem, 400 ml
Toote pilt
Tellitav
8,79 €
Kaup24
NEUTROGENA kergesti imenduv kätekreem, 75 ml
GTIN: 3574660239829 Kehakreemid, kehaspreid
NEUTROGENA kergesti imenduv kätekreem, 75 ml
Toote pilt
Tellitav
5,20 €
Digizone
Neutrogena Kooriv kreem Bright Boost 75ml
Tootekood: S05101872 Näohoolduskosmeetika
Neutrogena Kooriv kreem Bright Boost 75ml
12-14tp
17,25 €
Digizone
Neutrogena Kooriv näokreem 3.57466E+12 150ml
Tootekood: S0595012 Näohoolduskosmeetika
Neutrogena Kooriv näokreem Neutrogena Spot Controlling (150ml)
12-14tp
18,57 €
Digizone
Neutrogena näokreem HYDRO BOOST
Tootekood: S05144577 Näohoolduskosmeetika
Neutrogena näokreem HYDRO BOOST
12-14tp
30,79 €
Digizone
Neutrogena näokreem Hydro Boost 50ml
Tootekood: S0594970 Näohoolduskosmeetika
Neutrogena näokreem Hydro Boost 50ml
12-14tp
23,86 €
Digizone
Neutrogena näokreem HYDRO BOOST 50ml
Tootekood: S05128859 Näohoolduskosmeetika
Neutrogena näokreem HYDRO BOOST 50ml
12-14tp
15,78 €
Digizone
Neutrogena näokreem Hydro Boost Hydro Boost 50ml (50ml)
Tootekood: S0594971 Näohoolduskosmeetika
Neutrogena
12-14tp
21,59 €
Digizone
Neutrogena näokreem Hydro Boost Skin Rescue Balm 50ml, naistele
Tootekood: 23-133191 Näohoolduskosmeetika
Neutrogena näokreem Hydro Boost Skin Rescue Balm 50ml, naistele
12-14tp
23,01 €
Digizone
Neutrogena näokreem Retinol Boost 30ml
Tootekood: S05111707 Näohoolduskosmeetika
Neutrogena näokreem Retinol Boost 30ml
12-14tp
32,87 €
Digizone
Neutrogena näokreem Retinol Boost 50ml
Tootekood: S05111706 Näohoolduskosmeetika
Neutrogena näokreem Retinol Boost 50ml
12-14tp
35,02 €
Digizone
Neutrogena näopuhastusgeel GRANITOS PERSISTENTES
Tootekood: S05144868 Näohoolduskosmeetika
Neutrogena näopuhastusgeel GRANITOS PERSISTENTES
12-14tp
16,99 €
Digizone
Neutrogena näopuhastusgeel Granitos Persistentes 200ml
Tootekood: S0595011 Näohoolduskosmeetika
Neutrogena näopuhastusgeel Neutrogena Spot Controlling (200ml)
12-14tp
18,53 €
Digizone
Neutrogena Niisutav huulepalsam 2042724 Spf 5 4,8 g
Tootekood: S0596276 Kosmeetika ja makeup
Neutrogena Niisutav huulepalsam Neutrogena Lèvres Spf 5 (4,8g)
12-14tp
6,08 €
Digizone
Neutrogena niisutav ihupiim Deep Moisture (400ml)
Tootekood: S0577475 Keha- ja nahahooldus
Neutrogena niisutav ihupiim Deep Moisture Hypoallergenic Body Lotion (400ml)
12-14tp
12,43 €
Digizone
Neutrogena niisutav jalakreem Crema Pies 50ml
Tootekood: S0598123 Maniküür ja pediküür
Neutrogena niisutav jalakreem Crema Pies 50ml
12-14tp
10,40 €
Digizone
Neutrogena niisutav jalakreem Kuiv nahk (2 x 100ml)
Tootekood: S0594965 Maniküür ja pediküür
Neutrogena niisutav jalakreem Kuiv nahk (2 x 100ml)
12-14tp
13,70 €
Digizone
Neutrogena niisutav kehakreem Kuiv nahk hetktõmmis Imendumine (400ml)
Tootekood: S0595001 Keha- ja nahahooldus
Neutrogena niisutav kehakreem Kuiv nahk hetktõmmis Imendumine (400ml)
12-14tp
11,21 €
Digizone
Neutrogena niisutav kehakreem Kuiv nahk Õli (400ml)
Tootekood: S0595000 Keha- ja nahahooldus
Neutrogena niisutav kehakreem Kuiv nahk Õli (400ml)
12-14tp
13,30 €
Digizone
Neutrogena Niisutav näohooldus Hydro Boost Urban Protect Spf 25 (50ml)
Tootekood: S0594974 Näohoolduskosmeetika
Neutrogena Niisutav Näohooldus Neutrogena Hydro Boost Urban Protect Spf 25 (50ml)
12-14tp
25,26 €
Digizone
Neutrogena niisutav näokreem HYDRO BOOST 50ml
Tootekood: S05127320 Näohoolduskosmeetika
Neutrogena niisutav näokreem HYDRO BOOST 50ml
12-14tp
21,78 €