Browse Results

Showing 27,676 through 27,700 of 53,408 results

Python Microservices Development

by Tarek Ziade

A practical approach to conquering the complexities of Microservices using the Python tooling ecosystem About This Book • A very useful guide for Python developers who are shifting to the new microservices-based development • A concise, up-to-date guide to building efficient and lightweight microservices in Python using Flask, Tox, and other tools • Learn to use Docker containers, CoreOS, and Amazon Web Services to deploy your services Who This Book Is For This book is for developers who have basic knowledge of Python, the command line, and HTTP-based application principles, and those who want to learn how to build, test, scale, and manage Python 3 microservices. No prior experience of writing microservices in Python is assumed. What You Will Learn • Explore what microservices are and how to design them • Use Python 3, Flask, Tox, and other tools to build your services using best practices • Learn how to use a TDD approach • Discover how to document your microservices • Configure and package your code in the best way • Interact with other services • Secure, monitor, and scale your services • Deploy your services in Docker containers, CoreOS, and Amazon Web Services In Detail We often deploy our web applications into the cloud, and our code needs to interact with many third-party services. An efficient way to build applications to do this is through microservices architecture. But, in practice, it's hard to get this right due to the complexity of all the pieces interacting with each other. This book will teach you how to overcome these issues and craft applications that are built as small standard units, using all the proven best practices and avoiding the usual traps. It's a practical book: you'll build everything using Python 3 and its amazing tooling ecosystem. You will understand the principles of TDD and apply them. You will use Flask, Tox, and other tools to build your services using best practices. You will learn how to secure connections between services, and how to script Nginx using Lua to build web application firewall features such as rate limiting. You will also familiarize yourself with Docker's role in microservices, and use Docker containers, CoreOS, and Amazon Web Services to deploy your services. This book will take you on a journey, ending with the creation of a complete Python application based on microservices. By the end of the book, you will be well versed with the fundamentals of building, designing, testing, and deploying your Python microservices. Style and approach This book is an linear, easy-to-follow guide on how to best design, write, test, and deploy your microservices. It includes real-world examples that will help Python developers create their own Python microservice using the most efficient methods.

Learning iOS Penetration Testing

by Swaroop Yermalkar

Secure your iOS applications and uncover hidden vulnerabilities by conducting penetration testsAbout This BookAchieve your goal to secure iOS devices and applications with the help of this fast paced manualFind vulnerabilities in your iOS applications and fix them with the help of this example-driven guideAcquire the key skills that will easily help you to perform iOS exploitation and forensics with greater confidence and a stronger understandingWho This Book Is ForThis book is for IT security professionals who want to conduct security testing of applications. This book will give you exposure to diverse tools to perform penetration testing. This book will also appeal to iOS developers who would like to secure their applications, as well as security professionals. It is easy to follow for anyone without experience of iOS pentesting.What You Will LearnUnderstand the basics of iOS app development, deployment, security architecture, application signing, application sandboxing, and OWASP TOP 10 for mobileSet up your lab for iOS app pentesting and identify sensitive information stored locallyPerform traffic analysis of iOS devices and catch sensitive data being leaked by side channelsModify an application's behavior using runtime analysisAnalyze an application's binary for security protectionAcquire the knowledge required for exploiting iOS devicesLearn the basics of iOS forensicsIn DetailiOS has become one of the most popular mobile operating systems with more than 1.4 million apps available in the iOS App Store. Some security weaknesses in any of these applications or on the system could mean that an attacker can get access to the device and retrieve sensitive information. This book will show you how to conduct a wide range of penetration tests on iOS devices to uncover vulnerabilities and strengthen the system from attacks.Learning iOS Penetration Testing discusses the common vulnerabilities and security-related shortcomings in an iOS application and operating system, and will teach you to conduct static and dynamic analysis of iOS applications.This practical guide will help you uncover vulnerabilities in iOS phones and applications. We begin with basics of iOS security and dig deep to learn about traffic analysis, code analysis, and various other techniques. Later, we discuss the various utilities, and the process of reversing and auditing.Style and approachThis fast-paced and practical guide takes a step-by-step approach to penetration testing with the goal of helping you secure your iOS devices and apps quickly.

Building Minecraft Server Modifications - Second Edition

by Cody M. Sommer

Create and customize your very own Minecraft server using Java and the Spigot API About This Book * Set up a Minecraft server that you control * Use object-oriented programming to modify Minecraft regardless of your level of experience * This interactive guide will help you create a unique experience for you and your friends Who This Book Is For This book is great for anyone who is interested in customizing their Minecraft server. Whether you are new to programming, Java, Bukkit, or even Minecraft itself, this book has you covered. All you need is a valid Minecraft account. If you are interested in programming as a career or hobby, this book will get you started. If you are simply interested in playing Minecraft with your friends, then this book will help you make that experience even more enjoyable. What You Will Learn * Install and run a Spigot server for free on your home PC * Adjust the server settings to customize Minecraft to your liking * Install an IDE and configure a project to write code * Install and test plugins on a Spigot server * Test your plugins through debugging the code * Program in game commands and permissions * Get to know advanced programming concepts such as event-driven programming, configuration files, saving/loading data, and scheduled tasks * Implement configuration files to make your plugins customizable * Save and load your plugin's data to persist across server restarts In Detail Minecraft is a sandbox game that allows you to play it in any way you want. Coupled with a multiplayer server powered by Spigot, you can customize the game even more! Using the Bukkit API, anyone interested in learning how to program can control their Minecraft world by developing server plugins. This book is a great introduction to software development through the wonderful world of Minecraft. We start by instructing you through how to set up your home PC for Minecraft server development. This includes an IDE complete with the required libraries as well as a Spigot server to test on. You will be guided through writing code for several different plugins. Each chapter teaches you new skills to create plugins of increasing complexity, and each plugin adds a new concept of the Bukkit API By the end of the book, you will have all the knowledge you need about the API to successfully create any type of plugin. You can then practice and build your Java skills through developing more mods for their server. Style and approach This hands-on guide is filled with interactive examples to help you modify Minecraft. Programming terms and concepts are explained along the way so even those who have never written code before can keep up.

Functional PHP

by Gilles Crettenand

Uncover the secrets of functional programming with PHP to ensure your applications are as great as they can be About This Book • Greatly improve your code quality, testability, and readability using modern functional programming techniques • Get a solid foundation in functional programming techniques and methodologies • Step-by-step learn the concepts to architect more robust code Who This Book Is For If you are a PHP developer with knowledge of object-oriented programming, this book is for you. You do not need prior experience with functional programming. What You Will Learn • Declare functions/callables and find out how to manipulate and call them • Write pure functions to get more robust code that can be easily tested • Learn to compose function using various techniques • Use a functional approach to find readable solutions to common issues • Utilize performance optimization techniques such as laziness, memorization, and parallelization • Build the business logic of applications with the functional paradigm • Test functional code and know how to speed up test runs using parallel testing • Understand the impact and limitation of functional programming in PHP In Detail A functional approach encourages code reuse, greatly simplifies testing, and results in code that is concise and easy to understand. This book will demonstrate how PHP can also be used as a functional language, letting you learn about various function techniques to write maintainable and readable code. After a quick introduction to functional programming, we will dive right in with code examples so you can get the most of what you've just learned. We will go further with monads, memoization, and property-based testing. You will learn how to make use of modularity of function while writing functional PHP code. Through the tips and best practices in this book, you'll be able to do more with less code and reduce bugs in your applications. Not only will you be able to boost your performance, but you will also find out how to eliminate common loop problems. By the end of the book, you will know a wide variety of new techniques that you can use on any new or legacy codebase. Style and approach This is an easy-to-follow, definitive guide on developing applications using a functional paradigm with PHP. It will guide you through functional programming with the help of real-life examples.

Learning CoreOS

by Kingston Smiler. S Shantanu Agrawal

Your one-stop guide for building, configuring, maintaining, and deploying one of the world's fastest growing OSes About This Book * Understand the features of CoreOS and learn to administrate and secure a CoreOS environment * Develop, test, and deploy cloud services and applications more quickly and efficiently inside lightweight containers using CoreOS * This is a complete tutorial on CoreOS, which is the preferred OS for cloud computing as it contains components that facilitate cloud management Who This Book Is For This book is for cloud or enterprise administrators and application developers who would like to gain knowledge about CoreOS to deploy a cloud application or micro-services on a cluster of cloud servers. It is also aimed at administrators with basic networking experience. You do not need to have any knowledge of CoreOS. What You Will Learn * Understand the benefits of CoreOS as a cloud orchestration platform * Learn about lightweight containers and various container frameworks such as Docker and RKT in CoreOS * Manage services and containers across cluster using Fleet and systemd * Set up a CoreOS environment using Vagrant * Create and manage CoreOS clusters * Discover the service parameters using etcd * Find out about chaining services running on the cluster using Flannel / Rudder and Weave * Create a virtual tenant network and service chaining using OVS In Detail CoreOS is an open source operating system developed upon the Linux kernel. The rise of CoreOS is directly related to the rise of Docker (a Linux container management system). It is a minimal operating system layer and takes a different approach to automating the deployment of containers. The major difference between CoreOS and other Linux distributions is that CoreOS was designed to deploy hundreds of servers. CoreOS immensely helps the users to create systems, which are easy to scale and manage, making life easier for all, be it developer, QA, or deployer. This book is all about setting up, deploying, and using CoreOS to manage clusters and clouds. It will help you understand what CoreOS is and its benefits as a cloud orchestration platform. First, we'll show you how to set up a simple CoreOS instance with single node in the cluster and how to run a Docker container inside the CoreOS instance. Next, you'll be introduced to Fleet and systemd, and will deploy and distribute Docker services across different nodes in cluster using Fleet. Later, you'll be briefed about running services in a cluster with constraints, publishing the services already running on the cluster to new services, and making your services interact with each other. We conclude by teaching you about advanced container networking. By the end of the book, you will know the salient features of CoreOS and will be able to deploy, administrate, and secure a CoreOS environment. Style and approach This practical guide covers the basics and advanced topics related to CoreOS and lightweight containers. The topics are covered in an easy-to-follow manner with each feature explained in detail, beginning with a brief overview and followed by an explanation of its corresponding configuration files.

Extending Puppet - Second Edition

by Jaime Soriano Pastor Alessandro Franceschi

Start pulling the strings of your infrastructure with Puppet - learn how to configure, customize, and manage your systems more intelligently About This Book * Explore the wider Puppet ecosystem of useful tools * Design and manage your Puppet architecture for optimum performance * Write more efficient code that keeps your infrastructure more robust Who This Book Is For If you are a Puppet user, this book will help you on different levels. If you a beginner, we summarize the key Puppet components and give you the elements to have a broader vision. For more experienced users, you will be surprised by with topics on designing, implementing, adapting, and deploying Puppet architectures. If you are expert, you will find topics and information that is rarely exposed in other books, giving you an insight into Puppet's future and its usage on alternative devices. What You Will Learn * Learn the principles of Puppet language and ecosystem * Extract the features of Hiera and PuppetDB's power usage * Explore the different approaches to Puppet architecture design * Use Puppet to manage network, cloud, and virtualization devices * Manage and test the Puppet code workflow * Tweak, hack, and adapt the Puppet extension points * Get a run through of the strategies and patterns to introduce Puppet automation * Master the art of writing reusable modules In Detail Puppet has changed the way we manage our systems, but Puppet itself is changing and evolving, and so are the ways we are using it. To tackle our IT infrastructure challenges and avoid common errors when designing our architectures, an up-to-date, practical, and focused view of the current and future Puppet evolution is what we need. With Puppet, you define the state of your IT infrastructure, and it automatically enforces the desired state. This book will be your guide to designing and deploying your Puppet architecture. It will help you utilize Puppet to manage your IT infrastructure. Get to grips with Hiera and learn how to install and configure it, before learning best practices for writing reusable and maintainable code. You will also be able to explore the latest features of Puppet 4, before executing, testing, and deploying Puppet across your systems. As you progress, Extending Puppet takes you through higher abstraction modules, along with tips for effective code workflow management. Finally, you will learn how to develop plugins for Puppet - as well as some useful techniques that can help you to avoid common errors and overcome everyday challenges. Style and approach This is a collection of specific information about multiple topics related to Puppet and its ecosystem. Starting from a review of the very basics to more advanced topics, mixing practical advice with important theory and broader perspective, along with implementation details.

Professional CSS3

by Piotr Sikora

This book is for web designers who wish to learn the best ways to work with CSS for web development.

Distributed Computing with Python

by Francesco Pierfederici

Harness the power of multiple computers using Python through this fast-paced informative guide About This Book * You'll learn to write data processing programs in Python that are highly available, reliable, and fault tolerant * Make use of Amazon Web Services along with Python to establish a powerful remote computation system * Train Python to handle data-intensive and resource hungry applications Who This Book Is For This book is for Python developers who have developed Python programs for data processing and now want to learn how to write fast, efficient programs that perform CPU-intensive data processing tasks. What You Will Learn * Get an introduction to parallel and distributed computing * See synchronous and asynchronous programming * Explore parallelism in Python * Distributed application with Celery * Python in the Cloud * Python on an HPC cluster * Test and debug distributed applications In Detail CPU-intensive data processing tasks have become crucial considering the complexity of the various big data applications that are used today. Reducing the CPU utilization per process is very important to improve the overall speed of applications. This book will teach you how to perform parallel execution of computations by distributing them across multiple processors in a single machine, thus improving the overall performance of a big data processing task. We will cover synchronous and asynchronous models, shared memory and file systems, communication between various processes, synchronization, and more. Style and Approach This example based, step-by-step guide will show you how to make the best of your hardware configuration using Python for distributing applications.

Building Apple Watch Projects

by Stuart Grimshaw

Discover exciting and fun projects by building brilliant applications for the Apple Watch About This Book * Explore the opportunities opened up to developers by Apple's latest device: the Apple Watch * Be a crackerjack at developing software across a broad range of watch app categories * From an eminent author, master all stages of development, from the first stage through to a completed project Who This Book Is For If you have some basic knowledge of programming in Swift and are looking for the best way to get started with Apple Watch development, this book is just the right one for you! What You Will Learn * Understand the concept of the Apple Watch as an autonomous device as well as it being paired with the iPhone * Get your app up and running * Design exciting, inspiring, and attractive layouts for your apps * Make your user interface more engaging using images and animation * Enable your Watch and iPhone apps to transport and share data * Leverage the feature-rich set of WatchKit technologies provided by Apple * Connect your apps to the Internet * Submit your app to the App Store In Detail With Apple's eagerly anticipated entry into the wearable arena, the field is wide open for a new era of app development. The Apple Watch is one of the most important technologies of our time. This easy-to-understand book takes beginners on a delightful journey of discovering the features available to the developer, right up to the completion of medium-level projects ready for App Store submission. It provides the fastest way to develop real-world apps for the Apple Watch by teaching you the concepts of Watch UI, visual haptic and audio, message and data exchange between watch and phone, Web communication, and finally Visual, haptic as well as audio feedback for users. By the end of this book, you will have developed at least four fully functioning apps for deployment on watchOS 2. Style and approach This is a step-by-step guide to developing apps for the Apple Watch with the help of screenshots and fully coded working examples.

Switching to Angular 2

by Minko Gechev

Build SEO-friendly, high-performance single-page applications with Angular 2 About This Book * Get up to date with the latest changes to Angular 2, including the improvements to directives, change detection, dependency injection, router, and more * Understand Angular 2's new component-based architecture * Start using TypeScript to supercharge your Angular 2 applications Who This Book Is For Do you want to jump in at the deep end of Angular 2? Or perhaps you're interested assessing the changes before moving over? If so, then Switching to Angular 2 is the book for you. To get the most out of the book, you'll need to be familiar with AngularJS 1.x, and have a good understanding of JavaScript. No knowledge of the changes made to Angular 2 is required follow along. What You Will Learn * Understand the changes made from Angular 1.x with side-by-side code samples to help demystify the Angular 2 learning curve * Start working with Angular 2's new method of implementing directives * Use TypeScript to write modern, powerful Angular 2 applications * Dig in to the change-detection method, and other architectural changes to make sure you know what's going on under the hood of Angular 2. * Get to work with the new router in Angular 2 * Use the new features of Angular 2 including pipes, or the updated features such as forms, services, and the DI module * Master server-side rendering in Angular 2 to keep your new applications SEO friendly In Detail AngularJS is a JavaScript framework that makes building web applications easier. It is used today in large-scale, high-traffic websites that struggle with under-performance, portability issues, as well as SEO unfriendliness, and complexity at scale. Angular 2 changes that. It is the modern framework you need to build performant and robust web applications. "Switching to Angular 2" is the quickest way to get to grips with Angular 2 and will help you transition in to the brave new world of Angular 2. We'll start with an overview which sets the changes of the framework in context with version 1.x. After that, you will be taken on a TypeScript crash-course so we can take advantage of Angular 2 in its native, statically-typed environment. We'll look at the new change-detection method in detail, how Directives and Components change how you create websites with Angular, the new Angular 2 router, and much more. By the end of the book, you'll be ready to start building quick and efficient Angular 2 applications that take advantage of all the new features on offer. Style and approach Starting with a comparison between Angular versions that is filled with side-by-side code examples to help highlight the changes, each chapter then looks at major changes to the framework as is filled with small examples and sample code to get you started

Mastering Magento 2 - Second Edition

by Bret Williams

This book is for web designers, developers, or e-commerce store-owners who design or manage Magento stores for their clients and want to gain an in-depth understanding of the various features of Magento 2.

Learning IoT with Particle Core and Photon

by Rashid Khan

This book is for developers, IoT enthusiasts, and hobbyists who want to enhance their knowledge of IoT machine-to-machine architecture using Particle Photon and Electron, and implement cloud-based IoT projects.

Learning Spark SQL

by Aurobindo Sarkar

Design, implement, and deliver successful streaming applications, machine learning pipelines and graph applications using Spark SQL API About This Book • Learn about the design and implementation of streaming applications, machine learning pipelines, deep learning, and large-scale graph processing applications using Spark SQL APIs and Scala. • Learn data exploration, data munging, and how to process structured and semi-structured data using real-world datasets and gain hands-on exposure to the issues and challenges of working with noisy and "dirty" real-world data. • Understand design considerations for scalability and performance in web-scale Spark application architectures. Who This Book Is For If you are a developer, engineer, or an architect and want to learn how to use Apache Spark in a web-scale project, then this is the book for you. It is assumed that you have prior knowledge of SQL querying. A basic programming knowledge with Scala, Java, R, or Python is all you need to get started with this book. What You Will Learn • Familiarize yourself with Spark SQL programming, including working with DataFrame/Dataset API and SQL • Perform a series of hands-on exercises with different types of data sources, including CSV, JSON, Avro, MySQL, and MongoDB • Perform data quality checks, data visualization, and basic statistical analysis tasks • Perform data munging tasks on publically available datasets • Learn how to use Spark SQL and Apache Kafka to build streaming applications • Learn key performance-tuning tips and tricks in Spark SQL applications • Learn key architectural components and patterns in large-scale Spark SQL applications In Detail In the past year, Apache Spark has been increasingly adopted for the development of distributed applications. Spark SQL APIs provide an optimized interface that helps developers build such applications quickly and easily. However, designing web-scale production applications using Spark SQL APIs can be a complex task. Hence, understanding the design and implementation best practices before you start your project will help you avoid these problems. This book gives an insight into the engineering practices used to design and build real-world, Spark-based applications. The book's hands-on examples will give you the required confidence to work on any future projects you encounter in Spark SQL. It starts by familiarizing you with data exploration and data munging tasks using Spark SQL and Scala. Extensive code examples will help you understand the methods used to implement typical use-cases for various types of applications. You will get a walkthrough of the key concepts and terms that are common to streaming, machine learning, and graph applications. You will also learn key performance-tuning details including Cost Based Optimization (Spark 2.2) in Spark SQL applications. Finally, you will move on to learning how such systems are architected and deployed for a successful delivery of your project. Style and approach This book is a hands-on guide to designing, building, and deploying Spark SQL-centric production applications at scale.

Learning Python Design Patterns - Second Edition

by Chetan Giridhar

Leverage the power of Python design patterns to solve real-world problems in software architecture and design About This Book * Understand the structural, creational, and behavioral Python design patterns * Get to know the context and application of design patterns to solve real-world problems in software architecture, design, and application development * Get practical exposure through sample implementations in Python v3.5 for the design patterns featured Who This Book Is For This book is for Software architects and Python application developers who are passionate about software design. It will be very useful to engineers with beginner level proficiency in Python and who love to work with Python 3.5 What You Will Learn * Enhance your skills to create better software architecture * Understand proven solutions to commonly occurring design issues * Explore the design principles that form the basis of software design, such as loose coupling, the Hollywood principle and the Open Close principle among others * Delve into the object-oriented programming concepts and find out how they are used in software applications * Develop an understanding of Creational Design Patterns and the different object creation methods that help you solve issues in software development * Use Structural Design Patterns and find out how objects and classes interact to build larger applications * Focus on the interaction between objects with the command and observer patterns * Improve the productivity and code base of your application using Python design patterns In Detail With the increasing focus on optimized software architecture and design it is important that software architects think about optimizations in object creation, code structure, and interaction between objects at the architecture or design level. This makes sure that the cost of software maintenance is low and code can be easily reused or is adaptable to change. The key to this is reusability and low maintenance in design patterns. Building on the success of the previous edition, Learning Python Design Patterns, Second Edition will help you implement real-world scenarios with Python's latest release, Python v3.5. We start by introducing design patterns from the Python perspective. As you progress through the book, you will learn about Singleton patterns, Factory patterns, and Facade patterns in detail. After this, we'll look at how to control object access with proxy patterns. It also covers observer patterns, command patterns, and compound patterns. By the end of the book, you will have enhanced your professional abilities in software architecture, design, and development. Style and approach This is an easy-to-follow guide to design patterns with hands-on examples of real-world scenarios and their implementation in Python v3.5. Each topic is explained and placed in context, and for the more inquisitive, there are more details on the concepts used.

Node.js Design Patterns - Second Edition

by Luciano Mammino Mario Casciaro

Get the best out of Node.js by mastering its most powerful components and patterns to create modular and scalable applications with ease About This Book * Create reusable patterns and modules by leveraging the new features of Node.js . * Understand the asynchronous single thread design of node and grasp all its features and patterns to take advantage of various functions. * This unique guide will help you get the most out of Node.js and its ecosystem. Who This Book Is For The book is meant for developers and software architects with a basic working knowledge of JavaScript who are interested in acquiring a deeper understanding of how to design and develop enterprise-level Node.js applications. Basic knowledge of Node.js is also helpful to get the most out of this book. What You Will Learn * Design and implement a series of server-side JavaScript patterns so you understand why and when to apply them in different use case scenarios * Become comfortable with writing asynchronous code by leveraging constructs such as callbacks, promises, generators and the async-await syntax * Identify the most important concerns and apply unique tricks to achieve higher scalability and modularity in your Node.js application * Untangle your modules by organizing and connecting them coherently * Reuse well-known techniques to solve common design and coding issues * Explore the latest trends in Universal JavaScript, learn how to write code that runs on both Node.js and the browser and leverage React and its ecosystem to implement universal applications In Detail Node.js is a massively popular software platform that lets you use JavaScript to easily create scalable server-side applications. It allows you to create efficient code, enabling a more sustainable way of writing software made of only one language across the full stack, along with extreme levels of reusability, pragmatism, simplicity, and collaboration. Node.js is revolutionizing the web and the way people and companies create their software. In this book, we will take you on a journey across various ideas and components, and the challenges you would commonly encounter while designing and developing software using the Node.js platform. You will also discover the "Node.js way" of dealing with design and coding decisions. The book kicks off by exploring the basics of Node.js describing it's asynchronous single-threaded architecture and the main design patterns. It then shows you how to master the asynchronous control flow patterns,and the stream component and it culminates into a detailed list of Node.js implementations of the most common design patterns as well as some specific design patterns that are exclusive to the Node.js world.Lastly, it dives into more advanced concepts such as Universal Javascript, and scalability' and it's meant to conclude the journey by giving the reader all the necessary concepts to be able to build an enterprise grade application using Node.js. Style and approach This book takes its intended readers through a comprehensive explanation to create a scalable and efficient real-time server-side apps.

Mastering Java for Data Science

by Alexey Grigorev

This book is for those Java developers who are comfortable with developing applications in Java and are familiar with the basic concepts of data science. This is the go-to book for anyone looking to master the subject using Java. If you are willing to build efficient data applications in your enterprise environment without changing your existing stack, this book is for you!

3D Printing Designs: Octopus Pencil Holder

by Joe Larson

Learn to design and 3D print organic and functional designs using Blender About This Book * Learn how to make complex shapes by editing basic ones * Make printable objects from multiple shapes and parts * Learn how to design from scratch, without a reference to physical objects Who This Book Is For You should have basic knowledge of Blender and 3D printing and be interested in printing your first object. What You Will Learn * Get to know the guiding principles required to create 3D printer-friendly models * Understand material characteristics, printing specifications, tolerances, and design tips * Master the art of modifying basic shapes with Blender's powerful editing tools: extrude, loop cuts, and other transformations * Learn techniques of editing complex meshes, smoothing, combining shapes, and exporting them into STL files for printing In Detail This book will cover the very basic but essential techniques you need to model an organic and functional object for 3D printing using Blender. Starting with pen and paper and then moving on to the computer, you will create your first project in Blender, add basic geometric shapes, and use techniques such as extruding and subdividing to transform these shapes into complex meshes. You will learn how modifiers can automatically refine the shape further and combine multiple shapes into a single 3D printable model. By the end of the book, you will have gained enough practical hands-on experience to be able to create a 3D printable object of your choice, which in this case is a 3D print-ready octopus pencil holder. Style and approach This is a starter project designed to introduce you to your first real-world 3D printing designs, where you'll learn how to handle the fundamental principles of 3D printing design and have your hands on your reward in no time.

Mastering Concurrency Programming with Java 9 - Second Edition

by Javier Fernandez Gonzalez

Master the principles to make applications robust, scalable and responsive About This Book • Implement concurrent applications using the Java 9 Concurrency API and its new components • Improve the performance of your applications and process more data at the same time, taking advantage of all of your resources • Construct real-world examples related to machine learning, data mining, natural language processing, and more Who This Book Is For This book is for competent Java developers who have basic understanding of concurrency, but knowledge of effective implementation of concurrent programs or usage of streams for making processes more efficient is not required What You Will Learn • Master the principles that every concurrent application must follow • See how to parallelize a sequential algorithm to obtain better performance without data inconsistencies and deadlocks • Get the most from the Java Concurrency API components • Separate the thread management from the rest of the application with the Executor component • Execute phased-based tasks in an efficient way with the Phaser components • Solve problems using a parallelized version of the divide and conquer paradigm with the Fork / Join framework • Find out how to use parallel Streams and Reactive Streams • Implement the “map and reduce” and “map and collect” programming models • Control the concurrent data structures and synchronization mechanisms provided by the Java Concurrency API • Implement efficient solutions for some actual problems such as data mining, machine learning, and more In Detail Concurrency programming allows several large tasks to be divided into smaller sub-tasks, which are further processed as individual tasks that run in parallel. Java 9 includes a comprehensive API with lots of ready-to-use components for easily implementing powerful concurrency applications, but with high flexibility so you can adapt these components to your needs. The book starts with a full description of the design principles of concurrent applications and explains how to parallelize a sequential algorithm. You will then be introduced to Threads and Runnables, which are an integral part of Java 9's concurrency API. You will see how to use all the components of the Java concurrency API, from the basics to the most advanced techniques, and will implement them in powerful real-world concurrency applications. The book ends with a detailed description of the tools and techniques you can use to test a concurrent Java application, along with a brief insight into other concurrency mechanisms in JVM. Style and approach This is a complete guide that implements real-world examples of algorithms related to machine learning, data mining, and natural language processing in client/server environments. All the examples are explained using a step-by-step approach.

Scientific Computing with Scala

by Vytautas Jancauskas

Learn to solve scientific computing problems using Scala and its numerical computing, data processing, concurrency, and plotting libraries About This Book * Parallelize your numerical computing code using convenient and safe techniques. * Accomplish common high-performance, scientific computing goals in Scala. * Learn about data visualization and how to create high-quality scientific plots in Scala Who This Book Is For Scientists and engineers who would like to use Scala for their scientific and numerical computing needs. A basic familiarity with undergraduate level mathematics and statistics is expected but not strictly required. A basic knowledge of Scala is required as well as the ability to write simple Scala programs. However, complicated programming concepts are not used in the book. Anyone who wants to explore using Scala for writing scientific or engineering software will benefit from the book. What You Will Learn * Write and read a variety of popular file formats used to store scientific data * Use Breeze for linear algebra, optimization, and digital signal processing * Gain insight into Saddle for data analysis * Use ScalaLab for interactive computing * Quickly and conveniently write safe parallel applications using Scala's parallel collections * Implement and deploy concurrent programs using the Akka framework * Use the Wisp plotting library to produce scientific plots * Visualize multivariate data using various visualization techniques In Detail Scala is a statically typed, Java Virtual Machine (JVM)-based language with strong support for functional programming. There exist libraries for Scala that cover a range of common scientific computing tasks - from linear algebra and numerical algorithms to convenient and safe parallelization to powerful plotting facilities. Learning to use these to perform common scientific tasks will allow you to write programs that are both fast and easy to write and maintain. We will start by discussing the advantages of using Scala over other scientific computing platforms. You will discover Scala packages that provide the functionality you have come to expect when writing scientific software. We will explore using Scala's Breeze library for linear algebra, optimization, and signal processing. We will then proceed to the Saddle library for data analysis. If you have experience in R or with Python's popular pandas library you will learn how to translate those skills to Saddle. If you are new to data analysis, you will learn basic concepts of Saddle as well. Well will explore the numerical computing environment called ScalaLab. It comes bundled with a lot of scientific software readily available. We will use it for interactive computing, data analysis, and visualization. In the following chapters, we will explore using Scala's powerful parallel collections for safe and convenient parallel programming. Topics such as the Akka concurrency framework will be covered. Finally, you will learn about multivariate data visualization and how to produce professional-looking plots in Scala easily. After reading the book, you should have more than enough information on how to start using Scala as your scientific computing platform Style and approach Examples are provided on how to use Scala to do basic numerical and scientific computing tasks. All the concepts are illustrated with more involved examples in each chapter. The goal of the book is to allow you to translate existing experience in scientific computing to Scala.

Angular 2 Cookbook

by Matt Frisbie

Discover over 70 recipes that provide the solutions you need to know to face every challenge in Angular 2 head on About This Book • A first-rate reference guide with a clear structure and intuitive index that gives you as a developer exactly the information you want in exactly the way you want it • Covers no legacy material from the outdated Angular release candidates; it is up-to-date with the latest release of Angular 2.4 • All the code in the book is explicitly written out, and every piece of code shown is a step towards building a simple working example Who This Book Is For This book is for developers who are competent with JavaScript and are looking to dive headfirst into the TypeScript edition of Angular 2. This book is also geared towards developers with experience in Angular 1 who are looking to make the transition. What You Will Learn • Understand how to best move an Angular 1 application to Angular 2 • Build a solid foundational understanding of the core elements of Angular 2 such as components, forms, and services • Gain an ability to wield complex topics such as Observables and Promises • Properly implement applications utilizing advanced topics such as dependency injection • Know how to maximize the performance of Angular 2 applications • Understand the best ways to take an Angular 2 application from TypeScript in a code editor to a fully function application served on your site • Get to know the best practices when organizing and testing a large Angular 2 application In Detail Angular 2 introduces an entirely new way to build applications. It wholly embraces all the newest concepts that are built into the next generation of browsers, and it cuts away all the fat and bloat from Angular 1. This book plunges directly into the heart of all the most important Angular 2 concepts for you to conquer. In addition to covering all the Angular 2 fundamentals, such as components, forms, and services, it demonstrates how the framework embraces a range of new web technologies such as ES6 and TypeScript syntax, Promises, Observables, and Web Workers, among many others. This book covers all the most complicated Angular concepts and at the same time introduces the best practices with which to wield these powerful tools. It also covers in detail all the concepts you'll need to get you building applications faster. Oft-neglected topics such as testing and performance optimization are widely covered as well. A developer that reads through all the content in this book will have a broad and deep understanding of all the major topics in the Angular 2 universe. Style and approach This book follows a cookbook approach—each recipe presents a unique problem to which the solution is presented in a clear, concise, and manner step-by-step manner. With practical hands-on guidance in each and every recipe, you'll be able to get to grips with the concepts.

Learning ServiceNow

by Tim Woodruff

IT Service management at your fingertips About This Book • Leverage ServiceNow's capabilities to achieve improved service management and excellent results in your IT operations by following step-by-step, practical instructions • Build core administration, management, and maintenance skills with IT service management and IT operations management • Improve your workflow efficiency by designing and creating responsive and automated workflows Who This Book Is For This book is for IT professionals and administrators who are planning to or are already trying to implement ServiceNow in their organization for Enterprise IT service management tasks. Some familiarity with web technologies (JavaScript) would be helpful. System administration experience is necessary. What You Will Learn • Acquire and configure your own free personal developer instance of ServiceNow • Read (and write!) clear, effective requirements for ServiceNow development • Avoid common pitfalls and missteps that could seriously impact future progress and upgradeability • Know how to troubleshoot when things go wrong using debugging tools • Discover developer “tips and tricks” • Pick up great tips from top ServiceNow development and administration professionals, and find out what they wish they knew when they were starting out In Detail This book shows you how to put important ServiceNow features to work in the real world. We will introduce key concepts and examples on managing and automating IT services, and help you build a solid foundation towards this new approach. We'll demonstrate how to effectively implement various system configurations within ServiceNow. We'll show you how to configure and administer your instance, and then move on to building strong user interfaces and creating powerful workflows. We also cover other key elements of ServiceNow, such as alerts and notifications, security, reporting, and custom development. You will learn how to improve your business' workflow, processes, and operational efficiency. By the end of this book, you will be able to successfully configure and manage ServiceNow within your organization. Style and approach This book is a step-by-step practical tutorial to help you quickly deploy and configure ServiceNow in your organization.

Drupal 8 Development Cookbook

by Matt Glaman

Over 60 hands-on recipes that get you acquainted with Drupal 8's features and help you harness its power About This Book * Discover the enhanced content authoring experience that comes with Drupal 8 and how to customize it * Take advantage of the broadened multilingual and tools of the new version to provide an internationalized website * This step-by-step guide will show you how to deploy from development, staging, and production of a website with Drupal 8's brand new configuration management system Who This Book Is For This book is for those have been working with Drupal, such as site builders, back-end developers, and front-end developers, and who are eager to see what awaits when they start using Drupal 8 What You Will Learn * Extend Drupal through contributed or custom modules and themes * Develop an internationalized website with Drupal's multilingual tools * Integrate third-party front-end and back-end libraries with Drupal * Turn Drupal into a web services provider using REST * Create a mobile-first responsive Drupal application * Run SimpleTest and PHPUnit to test Drupal * Understand the plugin system that powers many of Drupal 8's new APIs to extend its functionality * Get to grips with the mechanics of the configuration management system and the ability to import and export site configuration In Detail Began as a message board, Drupal today is open source software maintained and developed by a community of over 1,000,000 users and developers. Drupal is used by numerous local businesses to global corporations and diverse organizations all across the globe. With Drupal 8?s recent release and the exciting features it brings, this book will be your go-to guide to experimenting with all of these features through helpful recipes. We'll start by showing you how to customize and configure the Drupal environment as per your requirements, as well as how to install third-party libraries and then use them in the Drupal environment. Then we will move on to creating blocks and custom modules with the help of libraries. We will show you to use the latest mobile-first feature of Drupal 8, which will help you make your apps responsive across all the major platforms. This book will also show you how to incorporate multilingual facilities in your sites, use web services and third-party plugins with your applications from inside Drupal 8, and test and deploy your apps Style and approach This practical, recipe-based book will provide you with actionable techniques and methods to improve your existing Drupal development skills. It will get you started with Drupal 8 and will be your reference guide to building new applications with Drupal.

VMware NSX Cookbook: Over 70 recipes to master the network virtualization skills to implement, validate, operate, upgrade, and automate VMware NSX for vSphere

by Tony Sangha Bayu Wibowo

Network virtualization at your fingertipsKey FeaturesOver 70 practical recipes created by two VCIX-NV certified NSX expertsExplore best practices to deploy, operate, and upgrade VMware NSX for vSphereLeverage NSX REST API using various tools from Python in VMware vRealize OrchestratorBook DescriptionThis book begins with a brief introduction to VMware's NSX for vSphere Network Virtualization solutions and how to deploy and configure NSX components and features such as Logical Switching, Logical Routing, layer 2 bridging and the Edge Services Gateway. Moving on to security, the book shows you how to enable micro-segmentation through NSX Distributed Firewall and Identity Firewall and how to do service insertion via network and guest introspection. After covering all the feature configurations for single-site deployment, the focus then shifts to multi-site setups using Cross-vCenter NSX.Next, the book covers management, backing up and restoring, upgrading, and monitoring using built-in NSX features such as Flow Monitoring, Traceflow, Application Rule Manager, and Endpoint Monitoring. Towards the end, you will explore how to leverage VMware NSX REST API using various tools from Python to VMware vRealize Orchestrator.What you will learnUnderstand, install, and configure VMware NSX for vSphere solutionsConfigure logical switching, routing, and Edge Services Gateway in VMware NSX for vSphereLearn how to plan and upgrade VMware NSX for vSphereLearn how to use built-in monitoring tools such as Flow Monitoring, Traceflow, Application Rule Manager, and Endpoint MonitoringLearn how to leverage the NSX REST API for management and automation using various tools from Python to VMware vRealize OrchestratorWho this book is forIf you are a security and network administrator and looking to gain an intermediate level for network and security virtualization, then this book is for you. The reader should have a basic knowledge with VMware NSX.

Mastering Android Application Development

by Antonio Pachon Ruiz

Learn how to do more with the Android SDK with this advanced Android Application guide which shows you how to make even better Android apps that users will loveAbout This BookLearn how to design and build better Android apps to reach new usersExplore the latest features and tools in the Android SDK that will help you become a better developerFrom concurrency to testing - through to adding adverts and billing, this book ties together every element to help you deliver a high-quality Android application on Google PlayWho This Book Is ForMastering Android Application Development is intended for Android developers that want insight on and guidance through the steps they need to take to give their creations the edge in a competitive market.What You Will LearnCreate an Android project with Android M featuresDesign the basic navigation for our app using the UI componentsSet up a cloud-based platform and store data on itImplement programming patterns such as Singleton and Observer to maintain your project code for future useDisplay lists and grids using Android RecyclerViewImplement user interface components and make your app look professionalHandle, download, and store images along with memory managementCreate the database and content providers to perform read-write operationsAdd notifications to the app and analytics to track the user's usageShow a Google map view on your appConfigure minify to obfuscate the codeAdd adverts and create products for purchase in your appIn DetailThere are millions of Android apps out there for people to download - how do you make sure yours has the edge? It's not always about innovation and ideas - the most successful apps are those that are able to satisfy customer demands - they're the ones that look the best, the fastest, and the easiest and most intuitive to use.This book shows you how to create Android applications that do precisely that - it has been designed help you consider and answer those questions throughout the development process, so you can create applications that stand out against the crowd. Learn how to create exemplary UIs that contribute to a satisfying user experience through the lens of Material Design, and explore how to harness the range of features within the Android SDK to help you. Dive deeper into complex programming concepts and discover how to leverage concurrency and navigate memory management and image handling. You'll also find further guidance on testing and debugging so you can guarantee that your application is reliable and robust for users.Beyond this you'll find out how to extend your app and add greater functionality, including notifications, location services, adverts and app billing (essential if you want to properly monetize your creation!). To make sure you have confidence at every stage in the process, the book also shows you how to release your app to the Play store - to make sure your maximising your efforts to create a popular Android application!Style and approachThis is a step-by-step guide where theory and practice are merged in a way that helps you to put a new concept into practice with ease. By helping to focus on the end result, and showing all the technical steps you need to get there, you will be poised for development success!

Modular Programming with Python

by Erik Westra

Introducing modular techniques for building sophisticated programs using Python About This Book * The book would help you develop succinct, expressive programs using modular deign * The book would explain best practices and common idioms through carefully explained and structured examples * It will have broad appeal as far as target audience is concerned and there would be take away for all beginners to Python Who This Book Is For This book is intended for beginner to intermediate level Python programmers who wish to learn how to use modules and packages within their programs. While readers must understand the basics of Python programming, no knowledge of modular programming techniques is required. What You Will Learn * Learn how to use modules and packages to organize your Python code * Understand how to use the import statement to load modules and packages into your program * Use common module patterns such as abstraction and encapsulation to write better programs * Discover how to create self-testing Python packages * Create reusable modules that other programmers can use * Learn how to use GitHub and the Python Package Index to share your code with other people * Make use of modules and packages that others have written * Use modular techniques to build robust systems that can handle complexity and changing requirements over time In Detail Python has evolved over the years and has become the primary choice of developers in various fields. The purpose of this book is to help readers develop readable, reliable, and maintainable programs in Python. Starting with an introduction to the concept of modules and packages, this book shows how you can use these building blocks to organize a complex program into logical parts and make sure those parts are working correctly together. Using clearly written, real-world examples, this book demonstrates how you can use modular techniques to build better programs. A number of common modular programming patterns are covered, including divide-and-conquer, abstraction, encapsulation, wrappers and extensibility. You will also learn how to test your modules and packages, how to prepare your code for sharing with other people, and how to publish your modules and packages on GitHub and the Python Package Index so that other people can use them. Finally, you will learn how to use modular design techniques to be a more effective programmer. Style and approach This book will be simple and straightforward, focusing on imparting learning through a wide array of examples that the readers can put into use as they read through the book. They should not only be able to understand the way modules help in improving development, but they should also be able to improvise on their techniques of writing concise and effective code.

Refine Search

Showing 27,676 through 27,700 of 53,408 results