Browse Results

Showing 36,651 through 36,675 of 55,783 results

Penetration Testing Azure for Ethical Hackers: Develop practical skills to perform pentesting and risk assessment of Microsoft Azure environments

by David Okeyode Karl Fosaaen Charles Horton

Simulate real-world attacks using tactics, techniques, and procedures that adversaries use during cloud breachesKey FeaturesUnderstand the different Azure attack techniques and methodologies used by hackersFind out how you can ensure end-to-end cybersecurity in the Azure ecosystemDiscover various tools and techniques to perform successful penetration tests on your Azure infrastructureBook DescriptionSecurity professionals working with Azure will be able to put their knowledge to work with this practical guide to penetration testing. The book provides a hands-on approach to exploring Azure penetration testing methodologies that will help you get up and running in no time with the help of a variety of real-world examples, scripts, and ready-to-use source code. As you learn about the Microsoft Azure platform and understand how hackers can attack resources hosted in the Azure cloud, you'll find out how to protect your environment by identifying vulnerabilities, along with extending your pentesting tools and capabilities. This book starts by taking you through the prerequisites for pentesting Azure and shows you how to set up a pentesting lab. You'll then simulate attacks on Azure assets such as web applications and virtual machines from anonymous and authenticated perspectives. Finally, you'll learn about the opportunities for privilege escalation in Azure tenants and ways in which an attacker can create persistent access to an environment. By the end of this book, you'll be able to leverage your ethical hacking skills to identify and implement different tools and techniques to perform successful penetration tests on your own Azure infrastructure.What you will learnIdentify how administrators misconfigure Azure services, leaving them open to exploitationUnderstand how to detect cloud infrastructure, service, and application misconfigurationsExplore processes and techniques for exploiting common Azure security issuesUse on-premises networks to pivot and escalate access within AzureDiagnose gaps and weaknesses in Azure security implementationsUnderstand how attackers can escalate privileges in Azure ADWho this book is forThis book is for new and experienced infosec enthusiasts who want to learn how to simulate real-world Azure attacks using tactics, techniques, and procedures (TTPs) that adversaries use in cloud breaches. Any technology professional working with the Azure platform (including Azure administrators, developers, and DevOps engineers) interested in learning how attackers exploit vulnerabilities in Azure hosted infrastructure, applications, and services will find this book useful.

Hierarchical Archimedean Copulas (SpringerBriefs in Applied Statistics and Econometrics)

by Ostap Okhrin Jan Górecki

This book offers a thorough understanding of Hierarchical Archimedean Copulas (HACs) and their practical applications. It covers the basics of copulas, explores the Archimedean family, and delves into the specifics of HACs, including their fundamental properties. The text also addresses sampling algorithms, HAC parameter estimation, and structure, and highlights temporal models with applications in finance and economics. The final chapter introduces R, MATLAB, and Octave toolboxes for copula modeling, enabling students, researchers, data scientists, and practitioners to model complex dependence structures and make well-informed decisions across various domains.

Linear Programming and Algorithms for Communication Networks: A Practical Guide to Network Design, Control, and Management

by Eiji Oki

Explaining how to apply to mathematical programming to network design and control, Linear Programming and Algorithms for Communication Networks: A Practical Guide to Network Design, Control, and Management fills the gap between mathematical programming theory and its implementation in communication networks. From the basics all the way through to m

Advanced Internet Protocols, Services, and Applications

by Eiji Oki Roberto Rojas-Cessa Mallikarjun Tatipamula Christian Vogt

Today, the internet and computer networking are essential parts of business, learning, and personal communications and entertainment. Virtually all messages or transactions sent over the internet are carried using internet infrastructure- based on advanced internet protocols. Advanced internet protocols ensure that both public and private networks operate with maximum performance, security, and flexibility. This book is intended to provide a comprehensive technical overview and survey of advanced internet protocols, first providing a solid introduction and going on to discuss internetworking technologies, architectures and protocols. The book also shows application of the concepts in next generation networks and discusses protection and restoration, as well as various tunnelling protocols and applications. The book ends with a thorough discussion of emerging topics.

Learning C# Programming with Unity 3D

by Alex Okita

Designed to give you enough familiarity in a programming language to be immediately productive, Learning C# Programming with Unity 3D provides the basics of programming and brings you quickly up to speed. Organized into easy-to-follow lessons, the book covers how C# is used to make a game in Unity3D. After reading this book, you will be armed with

Learning C# Programming with Unity 3D, second edition

by Alex Okita

Learning C# Programming with Unity 3D, Second Edition is for the novice game programmer without any prior programming experience. Readers will learn how C# is used to make a game in Unity 3D. Many example projects provide working code to learn from and experiment with. As C# evolves, Unity 3D evolves along with it. Many new features and aspects of C# are included and explained. Common programming tasks are taught by way of making working game mechanics. The reader will understand how to read and apply C# in Unity 3D and apply that knowledge to other development environments that use C#. New to this edition: includes latest C# language features and useful tools included with the .NET library like LINQ, Local Functions Tuples, and more! Key Features Provides a starting point for the first-time programmer C# Code examples are simple short and clear Learn the very basics on up to interesting tricks which C# offers

Python Testing with pytest: Simple, Rapid, Effective, and Scalable

by Brian Okken

Do less work when testing your Python code, but be just as expressive, just as elegant, and just as readable. The pytest testing framework helps you write tests quickly and keep them readable and maintainable - with no boilerplate code. Using a robust yet simple fixture model, it's just as easy to write small tests with pytest as it is to scale up to complex functional testing for applications, packages, and libraries. This book shows you how. For Python-based projects, pytest is the undeniable choice to test your code if you're looking for a full-featured, API-independent, flexible, and extensible testing framework. With a full-bodied fixture model that is unmatched in any other tool, the pytest framework gives you powerful features such as assert rewriting and plug-in capability - with no boilerplate code. With simple step-by-step instructions and sample code, this book gets you up to speed quickly on this easy-to-learn and robust tool. Write short, maintainable tests that elegantly express what you're testing. Add powerful testing features and still speed up test times by distributing tests across multiple processors and running tests in parallel. Use the built-in assert statements to reduce false test failures by separating setup and test failures. Test error conditions and corner cases with expected exception testing, and use one test to run many test cases with parameterized testing. Extend pytest with plugins, connect it to continuous integration systems, and use it in tandem with tox, mock, coverage, unittest, and doctest. Write simple, maintainable tests that elegantly express what you're testing and why. What You Need: The examples in this book are written using Python 3.6 and pytest 3.0. However, pytest 3.0 supports Python 2.6, 2.7, and Python 3.3-3.6.

Python Testing with pytest

by Brian Okken

Test applications, packages, and libraries large and small with pytest, Python's most powerful testing framework. pytest helps you write tests quickly and keep them readable and maintainable. In this fully revised edition, explore pytest's superpowers - simple asserts, fixtures, parametrization, markers, and plugins - while creating simple tests and test suites against a small database application. Using a robust yet simple fixture model, it's just as easy to write small tests with pytest as it is to scale up to complex functional testing. This book shows you how. pytest is undeniably the best choice for testing Python projects. It's a full-featured, flexible, and extensible testing framework. pytest's fixture model allows you to share test data and setup procedures across multiple layers of tests. The pytest framework gives you powerful features such as assert rewriting, parametrization, markers, plugins, parallel test execution, and clear test failure reporting - with no boilerplate code. With simple step-by-step instructions and sample code, this book gets you up to speed quickly on this easy-to-learn yet powerful tool. Write short, maintainable tests that elegantly express what you're testing. Speed up test times by distributing tests across multiple processors and running tests in parallel. Use Python's builtin assert statements instead of awkward assert helper functions to make your tests more readable. Move setup code out of tests and into fixtures to separate setup failures from test failures. Test error conditions and corner cases with expected exception testing, and use one test to run many test cases with parameterized testing. Extend pytest with plugins, connect it to continuous integration systems, and use it in tandem with tox, mock, coverage, and even existing unittest tests. Write simple, maintainable tests quickly with pytest. What You Need: The examples in this book were written using Python 3.10 and pytest 7. pytest 7 supports Python 3.5 and above.

Digital Design and Fabrication (Computer Engineering Series)

by Vojin G. Oklobdzija

In response to tremendous growth and new technologies in the semiconductor industry, this volume is organized into five, information-rich sections. Digital Design and Fabrication surveys the latest advances in computer architecture and design as well as the technologies used to manufacture and test them. Featuring contributions from leading experts, the book also includes a new section on memory and storage in addition to a new chapter on nonvolatile memory technologies. Developing advanced concepts, this sharply focused book— Describes new technologies that have become driving factors for the electronic industry Includes new information on semiconductor memory circuits, whose development best illustrates the phenomenal progress encountered by the fabrication and technology sector Contains a section dedicated to issues related to system power consumption Describes reliability and testability of computer systems Pinpoints trends and state-of-the-art advances in fabrication and CMOS technologies Describes performance evaluation measures, which are the bottom line from the user’s point of view Discusses design techniques used to create modern computer systems, including high-speed computer arithmetic and high-frequency design, timing and clocking, and PLL and DLL design

Digital Systems and Applications (Computer Engineering Series)

by Vojin G. Oklobdzija

New design architectures in computer systems have surpassed industry expectations. Limits, which were once thought of as fundamental, have now been broken. Digital Systems and Applications details these innovations in systems design as well as cutting-edge applications that are emerging to take advantage of the fields increasingly sophisticated capabilities. This book features new chapters on parallelizing iterative heuristics, stream and wireless processors, and lightweight embedded systems. This fundamental text— Provides a clear focus on computer systems, architecture, and applications Takes a top-level view of system organization before moving on to architectural and organizational concepts such as superscalar and vector processor, VLIW architecture, as well as new trends in multithreading and multiprocessing. includes an entire section dedicated to embedded systems and their applications Discusses topics such as digital signal processing applications, circuit implementation aspects, parallel I/O algorithms, and operating systems Concludes with a look at new and future directions in computing Features articles that describe diverse aspects of computer usage and potentials for use Details implementation and performance-enhancing techniques such as branch prediction, register renaming, and virtual memory Includes a section on new directions in computing and their penetration into many new fields and aspects of our daily lives

Building an Enterprise-Wide Business Continuity Program

by Kelley Okolita

If you had to evacuate from your building right now and were told you couldn't get back in for two weeks, would you know what to do to ensure your business continues to operate? Would your staff? Would every person who works for your organization? Increasing threats to business operations, both natural and man-made, mean a disaster could occur at any time. It is essential that corporations and institutions develop plans to ensure the preservation of business operations and the technology that supports them should risks become reality. Building an Enterprise-Wide Business Continuity Program goes beyond theory to provide planners with actual tools needed to build a continuity program in any enterprise. Drawing on over two decades of experience creating continuity plans and exercising them in real recoveries, including 9/11 and Hurricane Katrina, Master Business Continuity Planner, Kelley Okolita, provides guidance on each step of the process. She details how to validate the plan and supplies time-tested tips for keeping the plan action-ready over the course of time. Disasters can happen anywhere, anytime, and for any number of reasons. However, by proactively planning for such events, smart leaders can prepare their organizations to minimize tragic consequences and readily restore order with confidence in the face of such adversity.

Cuckoo Malware Analysis

by Digit Oktavianto Iqbal Muhardianto

This book is a step-by-step, practical tutorial for analyzing and detecting malware and performing digital investigations. This book features clear and concise guidance in an easily accessible format.Cuckoo Malware Analysis is great for anyone who wants to analyze malware through programming, networking, disassembling, forensics, and virtualization. Whether you are new to malware analysis or have some experience, this book will help you get started with Cuckoo Sandbox so you can start analysing malware effectively and efficiently.

The VES Handbook of Visual Effects: Industry Standard VFX Practices and Procedures

by Jeffrey A. Okun Susan Zwerman

Wisdom from the best and the brightest in the industry, this visual effects bible belongs on the shelf of anyone working in or aspiring to work in VFX. The book covers techniques and solutions all VFX artists/producers/supervisors need to know, from breaking down a script and initial bidding, to digital character creation and compositing of both live-action and CG elements. In-depth lessons on stereoscopic moviemaking, color management and digital intermediates are included, as well as chapters on interactive games and full animation authored by artists from EA and Dreamworks respectively. From predproduction to acquisition to postproduction, every aspect of the VFX production workflow is given prominent coverage. VFX legends such as John Knoll, Mike Fink, and John Erland provide you with invaluable insight and lessons from the set, equipping you with everything you need to know about the entire visual effects workflow. Simply a must-have book for anyone working in or wanting to work in the VFX industry.

The VES Handbook of Visual Effects: Industry Standard VFX Practices and Procedures

by Jeffrey A. Okun Susan Zwerman Christopher McKittrick Lisa Sepp-Wilson

The award-winning VES Handbook of Visual Effects remains the most complete guide to visual effects techniques and best practices available today. This new edition has been updated to include the latest, industry-standard techniques, technologies, and workflows for the ever-evolving fast paced world of visual effects. The Visual Effects Society (VES) tasked the original authors to update their areas of expertise, such as AR/VR Moviemaking, Color Management, Cameras, VFX Editorial, Stereoscopic and the Digital Intermediate, as well as provide detailed chapters on interactive games and full animation. Additionally, 56 contributors share their best methods, tips, tricks, and shortcuts developed through decades of trial and error and real-world, hands-on experience.This third edition has been expanded to feature lessons on 2.5D/3D Compositing; 3D Scanning; Digital Cinematography; Editorial Workflow in Animated and Visual Effects Features; Gaming updates; General Geometry Instancing; Lens Mapping for VFX; Native Stereo; Real-Time VFX and Camera Tracking; Shot/Element Pulls and Delivery to VFX; Techvis; VFX Elements and Stereo; Virtual Production; and VR/AR (Virtual Reality / Augmented Reality).A must-have for anyone working in or aspiring to work in visual effects, The VES Handbook of Visual Effects, Third Edition covers essential techniques and solutions for all VFX artists, producers, and supervisors, from pre-production to digital character creation, compositing of both live-action and CG elements, photorealistic techniques, and much more. With subjects and techniques clearly and definitively presented in beautiful four-color, this handbook is a vital resource for any serious VFX artist.

Analytics for Retail: A Step-by-Step Guide to the Statistics Behind a Successful Retail Business

by Rhoda Okunev

Examine select retail business scenarios to learn basic mathematics, as well as probability and statistics required to analyze big data. This book focuses on useful and imperative applied analytics needed to build a retail business and explains mathematical concepts essential for decision making and communication in retail business environments. Everyone is a buyer or seller of products these days whether through a physical department store, Amazon, or their own business website. This book is a step-by-step guide to understanding and managing the mechanics of markups, markdowns, and basic statistics, math and computers that will help in your retail business. You'll tackle what to do with data once it is has accumulated and see how to arrange the data using descriptive statistics, primarily means, median, and mode, and then how to read the corresponding charts and graphs. Analytics for Retail is your path to creating visual representations that powerfully communicate information and drive decisions. What You'll LearnReview standard statistical concepts to enhance your understanding of retail dataUnderstand the concepts of markups, markdowns and profit margins, and probability Conduct an A/B testing email campaign with all the relevant analytics calculated and explainedWho This Book Is ForThis is a primer book for anyone in the field of retail that needs to learn or refresh their skills or for a reader who wants to move in their company to a more analytical position.

The Psychology of Evolving Technology: How Social Media, Influencer Culture and New Technologies are Altering Society

by Rhoda Okunev

Technological innovations have advanced at an incredible speed since the introduction of the computer that it has altered the fabric of our society. The possession of computers, smart-devices, along with social media, texting and video games, is now an intimate part of the structure of our culture. This book is a framework to start a conversation on how technology is changing our lifestyles and transforming our world. There is now an entire generation that has been using technology through the most delicate developmental time in their lives. This book presents how to look at the cognitive and psychosocial developmental stages and what are the age-appropriate milestones and factsheet of behaviors at different ages. It provides insight into the strength and vulnerable characteristics at each stage and the prevalence of some negative conditions in our society. You will gain a perspective of the encouraging and challenging aspects of computer learning, smart devices, and how to start and keep the conversation going from infancy to adulthood in order to keep and maintain your virtues and ways to circumvent unfavorable consequences. In short, The Psychology of Evolving Technology looks at how cutting-edge and revolutionary high technologies have disrupted our society through its many luxuries and conveniences and how it has altered the outlook of our values, privileges, and expectations. What You'll LearnDetermine what adjustments should be made to regulate new innovations to allow them to succeed See how development stages in a child now interact with technologyReview how social media and influencer culture are changing the way we see ourselves in society Who This Book Is For All readers curious about the effect of technology on individuals, growing children, and the fabric of society

Asset Accounting Configuration in SAP ERP: A Step-by-Step Guide

by Andrew Okungbowa

In this book, noted expert Andrew Okungbowa explains SAP Asset Accounting (FI-AA) in SAP-ERP, including its associated business benefits, and guides you through the considerable complexities of SAP-ERP configuration. Using FI-AA for fixed asset management enables you to manage assets in multinational companies across a broad range of industries and produce reports to meet various needs in line with legal requirements. Configuring SAP-ERP can be a daunting exercise, however, and there are few resources that address these issues. Asset Accounting Configuration in SAP ERP fills that resource gap by covering the major aspects of SAP FI-AA for anyone with SAP experience and the basic accounting knowledge and bookkeeping skills necessary to apply configuration. It provides configuration explanations in the simplest forms possible and provides step-by-step guidance with illustrations and practical examples. What you'll learn The details of the FI-AA syllabus How to configure FI-AA accounting in SAP How to integrate FI-AA accounting with other SAP modules How to transfer asset data How to prepare for startup and perform periodic processing Who this book is for The key target audience for this book includes SAP consultants, developers, accountants, support organizations and beginners. It is also a resourceful learning manual for universities and institutions whose curricula covers SAP-ERP Asset Accounting. Table of Contents Chapter 1 - Customizing Organizational Structures in SAP Asset Accounting (FI-AA) Chapter 2 - Integrating Asset Accounting with the General Ledger (FI-GL) Chapter 3 - Valuation of Fixed Assets Chapter 4 - Depreciation Chapter 5 - Special Valuation Chapter 6 - Customizing Master Data Chapter 7 - Customizing Transactions Chapter 8 - Customizing Validation and Substitution Chapter 9 - Reporting with Asset Accounting Chapter 10 - Transferring Asset Data Chapter 11 - Preparing for Production Startup Chapter 12 - Processing Periodic Programs Appendix A - Useful General Ledger Accounts Appendix B - Useful Transaction Codes

SAP S/4HANA Financial Accounting Configuration: Learn Configuration and Development on an S/4 System

by Andrew Okungbowa

Upgrade your knowledge to learn S/4HANA, the latest version of the SAP ERP system, with its built-in intelligent technologies, including AI, machine learning, and advanced analytics.Since the first edition of this book published as SAP ERP Financial and Controlling: Configuration and Use Management, the perspective has changed significantly as S/4HANA now comes with new features, such as FIORI (new GUI), which focuses on flexible app style development and interactivity with mobile phones. It also has a universal journal, which helps in data integration in a single location, such as centralized processing, and is faster than ECC S/3. It merges FI & CO efficiently, which enables document posting in the Controlling area setup. General Ledger Accounts (FI) and Cost Element (CO) are mapped together in a way that cost elements (both primary and secondary) are part of G/L accounts. And a mandatory setup of customer-vendor integration with business partners is included vs the earlier ECC creation with separate vendor master and customer master.This updated edition presents new features in SAP S/4HANA, with in-depth coverage of the FI syllabus in SAP S/4HANA. A practical and hands-on approach includes scenarios with real-life examples and practical illustrations. There is no unnecessary jargon in this configuration and end-user manual.What You Will LearnConfigure SAP FI as a pro in S/4Master core aspects of Financial Accounting and ControllingIntegrate SAP Financial with other SAP modulesGain a thorough hands-on experience with IMG (Implementation Guide)Understand and explain the functionalities of SAP FIWho This Book Is ForFI consultants, trainers, developers, accountants, and SAP FI support organizations will find the book an excellent reference guide. Beginners without prior FI configuration experience will find the step-by-step illustrations to be practical and great hands-on experience.

Magnetic Dynamics in Antiferromagnetically-Coupled Ferrimagnets: The Role of Angular Momentum (Springer Theses)

by Takaya Okuno

This book presents the theoretical and experimental investigations on antiferromagnetically coupled ferrimagnets and reveals new aspects of ferrimagnetic dynamics in terms of the role of angular momentum. The purpose of this book is to show readers that antiferromagnets/ferrimagnets are useful in spintronic devices in that (1) The non­adiabatic spin­transfer torque in antiferromagnets acts as a staggered magnetic field, which can drive the magnetic domain walls, and (2) The Gilbert damping parameter α, the energy ­dissipation rate associated with the magnetic dynamics of ferrimagnets, is insensitive to temperature in contrast to the conventional understanding that the effective α of ferrimagnets diverges at the angular momentum compensation temperature. This book provides readers with a scientific platform of ferrimagnetic dynamics, which serves as a useful basis for realizing the next ­generation of spintronic devices.

Metaheuristic Optimization: Nature-Inspired Algorithms Swarm and Computational Intelligence, Theory and Applications (Studies in Computational Intelligence #927)

by Modestus O. Okwu Lagouge K. Tartibu

This book exemplifies how algorithms are developed by mimicking nature. Classical techniques for solving day-to-day problems is time-consuming and cannot address complex problems. Metaheuristic algorithms are nature-inspired optimization techniques for solving real-life complex problems. This book emphasizes the social behaviour of insects, animals and other natural entities, in terms of converging power and benefits. Major nature-inspired algorithms discussed in this book include the bee colony algorithm, ant colony algorithm, grey wolf optimization algorithm, whale optimization algorithm, firefly algorithm, bat algorithm, ant lion optimization algorithm, grasshopper optimization algorithm, butterfly optimization algorithm and others. The algorithms have been arranged in chapters to help readers gain better insight into nature-inspired systems and swarm intelligence. All the MATLAB codes have been provided in the appendices of the book to enable readers practice how to solve examples included in all sections. This book is for experts in Engineering and Applied Sciences, Natural and Formal Sciences, Economics, Humanities and Social Sciences.

Beginning DevOps on AWS for iOS Development: Xcode, Jenkins, and Fastlane Integration on the Cloud

by Abdullahi Olaoye

Apply the principles of DevOps in software development—automated builds, automated tests, and continuous deployment and delivery—to iOS application development on Amazon Web Services (AWS) cloud. This book provides detailed walkthroughs and example source code is provided for the concepts discussed so you can put theory into practical application.You'll start by building a basic iOS application and then dive deep into key AWS Developer tools and services to see how they can be used in iOS application development. Then review the details of the integration of these fully managed AWS services with open-source tools such as Jenkins and Fastlane that allow developers to get the best of both worlds and further help to enhance and increase agility in the development lifecycle of iOS apps. You'll also investigate the Amazon EC2 Mac instance, which allows you to run XCode in a cloud environment for the first time to leverage the flexibility, elasticity, and scale of AWS. It also allows for seamless integration of XCode with fully managed AWS Services from source code control to application deployment. Finally, the book covers how a fully managed Continuous Integration Continuous Deployment (CICD) pipeline can be used to orchestrate all the different components of iOS application development to achieve a fully automated development lifecycle. Get started building your iOS applications using a fully automated process on the AWS Cloud today!What You'll LearnBuild an iOS application using AWS DevOps tools Incorporate continuous deployment in your iOS application development Integrate AWS tooling with Xcode and open source tools such as Jenkins and FastlaneWho This Book Is For​iOS application developers wanting to incorporate DevOps and Cloud Architecture into their development process.

Kung Fu Hero and The Forbidden City: A ComedyShortsGamer Graphic Novel

by Deji Olatunji aka ComedyShortsGamer

IT WAS ONLY MEANT TO BE A PRANK VIDEO...But now DEJI (AKA ComedyShortsGamer) has unleashed the forces of evil in Beijing's Forbidden City.Armed with nothing more than bravado and a talking dog, Deji must return a stolen dragon goblet to the tomb of the mighty Emperor before dawn, or face the end of the world!Standing in his way are gangs of triads, wild dog statues brought to life and skeleton ghosts, not to mention his startling ability to snatch defeat from the jaws of victory.But if Deji is going to survive the night he must triumph over his greatest foe of all, his brother, KSI.Can Deji overcome years of being a slacker and become a kung fu hero to save a world? Join him on his hilarious quest to prove to his parents that a lifetime playing Tekken wasn't a waste of time.

Pro Team Foundation Service

by Mathias Olausson Joachim Rossberg Jakob Ehn Mattias Sköld

Pro Team Foundation Service gives you a jump-start into Microsoft's cloud-based Application Lifecycle Management platform, taking you through the different stages of software development. Every project needs to plan, develop, test and release software and with agile practices often at a higher pace than ever before. Microsoft's Team Foundation Service is a cloud-based platform that gives you tools for agile planning and work tracking. It has a code repository that can be used not only from Visual Studio but from Java platforms and Mac OS X. The testing tools allow testers to start testing at the same time as developers start developing. The book also covers how to set up automated practices such as build, deploy and test workflows. This book: Takes you through the major stages in a software development project. Gives practical development guidance for the whole team. Enables you to quickly get started with modern development practices. With Microsoft Team Foundation Service comes a collaboration platform that gives you and your team the tools to better perform your tasks in a fully integrated way. What you'll learn What ALM is and what it can do for you. Leverage a cloud-based ALM platform for quick improvements in your development process. Improve your agile development process using integrated tools and practices. Develop automated build, deployment and testing processes. Integrate different development tools with one collaboration platform. Get started with ALM best-practices first time round. Who this book is for Pro Team Foundation Service is for any development team that wants to take their development practices to the next level. Microsoft Team Foundation Service is an excellent platform for managing the entire application development lifecycle and being a cloud-based offering it is very easy to get started. Pro Team Foundation Service is a great guide for anyone in a team who wants to get started with the service and wants to get expert guidance to do it right. Table of Contents Introduction to Application Lifecycle Management Introduction to Agile Planning, Development, and Testing Deciding on a Hosted Service Getting Started Working with the Initial Product Backlog Managing Team and Alerts Initial Sprint Planning Running the Sprint Kanban Engaging the Customer Choosing Source Control Options Working with Team Foundation Version Control in Visual Studio Working with Git in Visual Studio Working in Heterogeneous Environments Configuring Build Services Working with Builds Customizing Builds Continuous Deployment Agile Testing Test Management Lab Management

Human Factors in Intelligent Vehicles

by Cristina Olaverri-Monreal Fernando García-Fernández Rosaldo J. F. Rossetti

Human Factors in Intelligent Vehicles addresses issues related to the analysis of human factors in the design and evaluation of intelligent vehicles for a wide spectrum of applications and over different dimensions. To commemorate the 8th anniversary of the IEEE ITS Workshop on Human Factors (http://hfiv.net) some recent works of authors active in the automotive human factors community have been collected in this book.Enclosed here are extended versions of papers and tutorials that were presented at the IEEE ITSS Workshop on “Human Factors in Intelligent Vehicles” and also included is additional deeper analysis along with detailed experimental and simulation results.The contributors cover autonomous vehicles as well as the frameworks for analyzing automation, modelling and methods for road users’ interaction such as intelligent user interfaces, including brain-computer interfaces and simulation and analysis tools related to human factors.

Model Checking, Synthesis, and Learning: Essays Dedicated to Bengt Jonsson on The Occasion of His 60th Birthday (Lecture Notes in Computer Science #13030)

by Ernst-Rüdiger Olderog Bernhard Steffen Wang Yi

This Festschrift, dedicated to Bengt Jonsson on the occasion of his 60th birthday, contains papers written by many of his friends and collaborators.Bengt has made major contributions covering a wide range of topics including verification and learning. His works on verification, in finite state systems, learning, testing, probabilistic systems, timed systems, and distributed systems reflect both the diversity and the depth of his research. Besides being an excellent scientist, Bengt is also a leader who has greatly influenced the careers of both his students and his colleagues. His main focus throughout his career has been in the area of formal methods, and the research papers dedicated to him in this volume address related topics, particularly related to model checking, temporal logic, and automata learning.

Refine Search

Showing 36,651 through 36,675 of 55,783 results