Browse Results

Showing 70,876 through 70,900 of 85,197 results

Rural and Small Public Libraries: Challenges and Opportunities (Advances in Librarianship #43)

by Brian Real

Rural and small public libraries provide invaluable services to their communities. These information institutions operate in areas that, when compared to national averages, have poor broadband accessibility and weaker connection speeds, low home internet adoption rates, higher unemployment rates, and less per capita access to doctors and other healthcare providers. Public libraries help to bridge these divides and help to mitigate the impact of these geographic and socioeconomic disadvantages. However, librarians are only able to do so much when they are funded by limited, primarily local revenues and are not able to achieve economies of scale that come with larger service population bases. Thus, this volume begins by defining the challenges that rural and small libraries face before shifting to an analysis of ways that these obstacles can be overcome or mitigated. Building off of this foundation, the authors explore ideas for enhancing community partnerships and outreach, using rural and small public libraries as centers for local cultural heritage activities, and training rural public librarians to better serve their publics. The authors of this volume bridge the gap between academic research and practical application, creating a volume that will allow rural librarians, trustees, and their allies to argue for greater support and enact change to benefit their service communities.

Rural Marketing: Growing the Non-urban Consumer

by Sanal Kumar Velayudhan

Rural markets offer a sizable and resilient pool of consumers to organizations and marketers. This book offers a comprehensive understanding of the fundamentals of rural marketing that influence consumer behaviour within the framework of a rapidly changing economy. The book: - includes in-depth discussions on critical issues in rural markets as well as case-studies that examine their socio-cultural nuances, peculiarities, and their economic and technological environments; - looks at concepts that are unique to rural markets from the perspective of the buyer and the marketer and analyses buying behaviour and its influences as well as the pricing, value, and positioning of products by brands; - analyses emerging trends and the future of these markets and the introduction of digitization and ecommerce in rural areas; - offers marketing tools and a detailed understanding of rural markets for professionals working in small or low-income markets. The cutting-edge learning tools presented in this book will make it of interest to professionals, students, and researchers working in rural marketing and management, business and economics, management studies, business planning, and marketing.

Rural Marketing: Growing the Non-urban Consumer

by Sanal Kumar Velayudhan

Rural markets offer a sizable and resilient pool of consumers to organizations and marketers. This book offers a comprehensive understanding of the fundamentals of rural marketing that influence consumer behaviour within the framework of a rapidly changing economy. The book: - includes in-depth discussions on critical issues in rural markets as well as case-studies that examine their socio-cultural nuances, peculiarities, and their economic and technological environments; - looks at concepts that are unique to rural markets from the perspective of the buyer and the marketer and analyses buying behaviour and its influences as well as the pricing, value, and positioning of products by brands; - analyses emerging trends and the future of these markets and the introduction of digitization and ecommerce in rural areas; - offers marketing tools and a detailed understanding of rural markets for professionals working in small or low-income markets. The cutting-edge learning tools presented in this book will make it of interest to professionals, students, and researchers working in rural marketing and management, business and economics, management studies, business planning, and marketing.

Rust Cookbook

by Vigneshwer Dhinakaran

75-80 recipes for learning Rust programming About This Book • Learn to build high-performance Rust units and integrate them into your existing application • Work through recipes on performance, robustness, security, memory management, and scalability • Work through recipes to build foreign function interface with C, JS, and Python Who This Book Is For If you want to write Rust programs, then this book is for you. This book is for those who have a basic knowledge of Rust or any programming language. If you are a C/C developer who is migrating to Rust for various reasons, this book is ideal for you. What You Will Learn • Understand system programming language problems and see how Rust provides unique solutions • Get to know the core concepts of Rust to develop fast and safe applications • Explore the possibility of integrating Rust units into existing applications to make them more efficient • Achieve better parallelism, security, and performance • Explore ways to package your Rust application and ship it for deployment in a production environment • Discover how to build web applications and services using Rust to provide high-performance to the end user In Detail If you are building concurrent applications, server-side programs, or high-performance applications, you will benefit from this language. This book comes with a lot of application-specific recipes to kick-start your development of real-world high-performance applications with the Rust programming language and integrating Rust units into your existing applications. In this book, you will find some 80 practical recipes written in Rust that will allow you to use the code samples right away in your existing applications. These recipes have been tested with stable rust compiler versions of 1.14.0 and above. This book will help you understand the core concepts of the Rust language, enabling you to develop efficient and high-performance applications by incorporating features such as zero cost abstraction and better memory management. We'll delve into advanced-level concepts such as error handling, macros, crates, and parallelism in Rust. Toward the end of the book, you will learn how to create HTTP servers and web services, building a strong foundational knowledge in server-side programming and enabling you to deliver solutions to build high-performance and safer production-level web applications and services using Rust. Style and approach This book helps you learn the core concepts of Rust faster by taking a recipe-based approach, where you can try out different code snippets to understand a concept.

Rust Essentials

by Ivo Balbaert

This book is intended for software developers interested in systems level and application programming, and are looking for a quick entry into using Rust and understanding the core features of the framework. It is assumed that you have a basic understanding of Java, C#, Ruby, Python or JavaScript.

Rust Essentials (2nd edition)

by Ivo Balbaert

Key Features Get started with Rust to build scalable and high performance applications Enhance your application development skills using the power of Rust Discover the power of Rust when developing concurrent applications for large and scalable software Book Description Rust is the new, open source, fast, and safe systems programming language for the 21st century, developed at Mozilla Research, and with a steadily growing community. It was created to solve the dilemma between high-level, slow code with minimal control over the system, and low-level, fast code with maximum system control. It is no longer necessary to learn C/C++ to develop resource intensive and low-level systems applications. This book will give you a head start to solve systems programming and application tasks with Rust. We start off with an argumentation of Rust's unique place in today's landscape of programming languages. You'll install Rust and learn how to work with its package manager Cargo. The various concepts are introduced step by step: variables, types, functions, and control structures to lay the groundwork. Then we explore more structured data such as strings, arrays, and enums, and you’ll see how pattern matching works. Throughout all this, we stress the unique ways of reasoning that the Rust compiler uses to produce safe code. Next we look at Rust's specific way of error handling, and the overall importance of traits in Rust code. The pillar of memory safety is treated in depth as we explore the various pointer kinds. Next, you’ll see how macros can simplify code generation, and how to compose bigger projects with modules and crates. Finally, you’ll discover how we can write safe concurrent code in Rust and interface with C programs, get a view of the Rust ecosystem, and explore the use of the standard library. What you will learn Set up your Rust environment to achieve the highest productivity Bridge the performance gap between safe and unsafe languages Use pattern matching to create flexible code Apply generics and traits to develop widely applicable code Organize your code in modules and crates Build macros to extend Rust’s capabilities and reach Apply tasks to tackle problems concurrently in a distributed environment About the Author Ivo Balbaert is currently a lecturer in (web) programming and databases at CVO Antwerpen, a community college in Belgium. He received a PhD in applied physics from University of Antwerp in 1986. He worked for 20 years in the software industry as a developer and consultant in several companies and for 10 years as project manager at the University Hospital of Antwerp. From 2000 onward, he switched to partly teaching, developing software, and writing technical books. Table of Contents STARTING WITH RUST USING VARIABLES AND TYPES USING FUNCTIONS AND CONTROL STRUCTURES STRUCTURING DATA AND MATCHING PATTERNS HIGHER-ORDER FUNCTIONS AND ERROR HANDLING Using traits and OOP in Rust POINTERS AND MEMORY SAFETY ORGANIZING CODE AND MACROS CONCURRENCY AND PARALLELISM PROGRAMMING AT THE BOUNDARIES Exploring the standard library The ecosystem of crates

Rust for the IoT: Building Internet of Things Apps with Rust and Raspberry Pi

by Joseph Faisal Nusairat

Get started programming Rust applications for the Internet of Things (IoT). This book is a programming skills migration book that teaches you the Rust programming techniques most useful for IoT applications. You'll step through from server to board development in creating a set of IoT applications. In Rust for the IoT, you'll learn how to build a modern server-side application using Rust on the backend. Then you'll use docker and Kubernetes to deploy these to a managed cloud. Finally you will use a Raspberry Pi with a SenseHat and Camera to capture the world around you and send that information to the cloud. While you will be able to follow along without any cloud or hardware, to make the most of it we recommend a few cloud pieces and hardware that is designed to integrate with the software in this book. After reading and using this book, you'll see how to apply Rust to the Internet of Things. What You Will Learn Create a modern Rust backend complete with handling eventual consistency and interacting via a GraphQL interface Use the Raspberry PI to serve as a cheap IoT device that one can easily deploy around the house Capture temperature, video, and use the interactive joystick to interact with the software you’ve created Use OpenCV to perform facial detection from the PI’s camera and save that information to the cloud. Create deployable helm charts for the cloud, and for the device create complete ISOs that allow you to easily deploy the Pi’s OS + custom software Who This Book Is ForYou will need to have a basic understanding of cloud application development at a minimum and the basics of Rust coding. This book is for those interested in or working with the IoT and the Raspberry Pi who want to learn how Rust can work for them.

Rust High Performance: Learn to skyrocket the performance of your Rust applications

by Iban Eguia Moraza

Find bottlenecks, identify the proper algorithm to use, optimize performance, and create really efficient Rust applicationsAbout This BookUnderstand common performance pitfalls and improve the performance of your applications.Get to grips with parallel programming and multithreading with Rust.Learn metaprogramming in Rust.Who This Book Is ForThis book is for Rust developers keen to improve the speed of their code or simply to take their skills to the next level.What You Will LearnMaster tips and tricks to make your code faster.Learn how to identify bottlenecks in your Rust applicationsDiscover how to profile your Rust software.Understand the type system to create compile-time optimizations.Master the borrow checker .Learn metaprogramming in Rust to avoid boilerplate code.Discover multithreading and work stealing in Rust.Understand asynchronous programming in Rust.In DetailAt times, it is difficult to get the best performance out of Rust. This book teaches you to optimize the speed of your Rust code to the level of languages such as C/C++. You'll understand and fix common pitfalls, learn how to improve your productivity by using metaprogramming, and speed up your code by concurrently executing parts of it safely and easily. You will master the features of the language which will make you stand out and use them to really improve the efficiency of your algorithmsThe book begins with a gentle introduction to help you identify bottlenecks when programming in Rust. We highlight common performance pitfalls, along with strategies to detect and resolve these issues early. We move on to mastering Rust's type system, which will enable us to create impressive optimizations in both performance and safety at compile time. You will then learn how to effectively manage memory in Rust, mastering the borrow checker. We move on to measuring performance and you will see how this affects the way you write code. Moving ahead, you will perform metaprogramming in Rust to boost the performance of your code and your productivity. You will finally learn parallel programming in Rust, which enables efficient and faster execution by using multithreading and asynchronous programming.Style and approachYou'll embark on a learning journey that will teach about you deep-core concepts in the Rust language. Learning those concepts—such as understanding the borrow checker—will make you competent to write more efficient Rust code. To learn those core concepts, you'll perform practical work and see for yourself how specific patterns improve the performance of your code.

Rust High Performance: Learn to skyrocket the performance of your Rust applications

by Iban Eguia Moraza

Find bottlenecks, identify the proper algorithm to use, optimize performance, and create really efficient Rust applicationsAbout This BookUnderstand common performance pitfalls and improve the performance of your applications.Get to grips with parallel programming and multithreading with Rust.Learn metaprogramming in Rust.Who This Book Is ForThis book is for Rust developers keen to improve the speed of their code or simply to take their skills to the next level.What You Will LearnMaster tips and tricks to make your code faster.Learn how to identify bottlenecks in your Rust applicationsDiscover how to profile your Rust software.Understand the type system to create compile-time optimizations.Master the borrow checker .Learn metaprogramming in Rust to avoid boilerplate code.Discover multithreading and work stealing in Rust.Understand asynchronous programming in Rust.In DetailAt times, it is difficult to get the best performance out of Rust. This book teaches you to optimize the speed of your Rust code to the level of languages such as C/C++. You'll understand and fix common pitfalls, learn how to improve your productivity by using metaprogramming, and speed up your code by concurrently executing parts of it safely and easily. You will master the features of the language which will make you stand out and use them to really improve the efficiency of your algorithmsThe book begins with a gentle introduction to help you identify bottlenecks when programming in Rust. We highlight common performance pitfalls, along with strategies to detect and resolve these issues early. We move on to mastering Rust's type system, which will enable us to create impressive optimizations in both performance and safety at compile time. You will then learn how to effectively manage memory in Rust, mastering the borrow checker. We move on to measuring performance and you will see how this affects the way you write code. Moving ahead, you will perform metaprogramming in Rust to boost the performance of your code and your productivity. You will finally learn parallel programming in Rust, which enables efficient and faster execution by using multithreading and asynchronous programming.Style and approachYou'll embark on a learning journey that will teach about you deep-core concepts in the Rust language. Learning those concepts—such as understanding the borrow checker—will make you competent to write more efficient Rust code. To learn those core concepts, you'll perform practical work and see for yourself how specific patterns improve the performance of your code.

Rust High Performance: Learn To Skyrocket The Performance Of Your Rust Applications

by Iban Eguia Moraza

Sometimes it's difficult to get the best performance out of Rust. This book teaches you how to optimize the speed of your Rust code to the level of languages such as C/C++. You'll understand and fix common pitfalls, learn how to improve your productivity by using metaprogramming, and speed up your code by concurrently executing parts of it safely and easily. Master the features of the language that make it stand out and use them to really improve the efficiency of your algorithms.

Rust Programming By Example: Enter The World Of Rust By Building Engaging, Concurrent, Reactive, And Robust Applications

by Guillaume Gomez

Rust is an open source, safe, concurrent, practical language created by Mozilla. It runs blazingly fast, prevents segfaults, and guarantees safety. This book gets you started with essential software development by guiding you through the different aspects of Rust programming. With this approach, you can bridge the gap between learning and implementing immediately.

Rust Quick Start Guide: The easiest way to learn Rust programming

by Daniel Arbuckle

Get familiar with writing programs in the trending new systems programming language that brings together the powerful performance of low-level languages with the advanced features like thread safety in multi-threaded code Key Features Learn the semantics of Rust, which can be significantly different from other programming languages Understand clearly how to work with the Rust compiler which strictly enforces rules that may not be obvious Examples and insights beyond the Rust documentation Book Description Rust is an emerging programming language applicable to areas such as embedded programming, network programming, system programming, and web development. This book will take you from the basics of Rust to a point where your code compiles and does what you intend it to do! This book starts with an introduction to Rust and how to get set for programming, including the rustup and cargo tools for managing a Rust installation and development workflow. Then you'll learn about the fundamentals of structuring a Rust program, such as functions, mutability, data structures, implementing behavior for types, and many more. You will also learn about concepts that Rust handles differently from most other languages. After understanding the Basics of Rust programming, you will learn about the core ideas, such as variable ownership, scope, lifetime, and borrowing. After these key ideas, you will explore making decisions in Rust based on data types by learning about match and if let expressions. After that, you'll work with different data types in Rust, and learn about memory management and smart pointers. What you will learn Install Rust and write your first program with it Understand ownership in Rust Handle different data types Make decisions by pattern matching Use smart pointers Use generic types and type specialization Write code that works with many data types Tap into the standard library Who this book is for This book is for people who are new to Rust, either as their first programming language or coming to it from somewhere else. Familiarity with computer programming in any other language will be helpful in getting the best out of this book.

Rust Quick Start Guide: The easiest way to learn Rust programming

by Daniel Arbuckle

Get familiar with writing programs in the trending new systems programming language that brings together the powerful performance of low-level languages with the advanced features like thread safety in multi-threaded code Key Features Learn the semantics of Rust, which can be significantly different from other programming languages Understand clearly how to work with the Rust compiler which strictly enforces rules that may not be obvious Examples and insights beyond the Rust documentation Book Description Rust is an emerging programming language applicable to areas such as embedded programming, network programming, system programming, and web development. This book will take you from the basics of Rust to a point where your code compiles and does what you intend it to do! This book starts with an introduction to Rust and how to get set for programming, including the rustup and cargo tools for managing a Rust installation and development workflow. Then you'll learn about the fundamentals of structuring a Rust program, such as functions, mutability, data structures, implementing behavior for types, and many more. You will also learn about concepts that Rust handles differently from most other languages. After understanding the Basics of Rust programming, you will learn about the core ideas, such as variable ownership, scope, lifetime, and borrowing. After these key ideas, you will explore making decisions in Rust based on data types by learning about match and if let expressions. After that, you'll work with different data types in Rust, and learn about memory management and smart pointers. What you will learn Install Rust and write your first program with it Understand ownership in Rust Handle different data types Make decisions by pattern matching Use smart pointers Use generic types and type specialization Write code that works with many data types Tap into the standard library Who this book is for This book is for people who are new to Rust, either as their first programming language or coming to it from somewhere else. Familiarity with computer programming in any other language will be helpful in getting the best out of this book.

Rust Quick Start Guide: The Easiest Way To Learn Rust Programming

by Daniel Arbuckle

Rust is an emerging programming language applicable to areas such as embedded programming, network programming, system programming, and web development. This book will take you from the basics of Rust to the point where your code compiles and does what you intend!

Rust Standard Library Cookbook: Over 75 Recipes To Leverage The Power Of Rust

by Jan Nils Ferner

Mozilla’s Rust is gaining much attention with amazing features and a powerful library. This book will take you through varied recipes to teach you how to leverage the Standard library to implement effective solutions.

Rust Web Programming: A hands-on guide to developing fast and secure web apps with the Rust programming language

by Maxwell Flitton

Adopt the Rust programming language by learning how to build fully functional web applications and services and address challenges relating to safety and performanceKey FeaturesBuild scalable web applications in Rust using popular frameworks such as Actix, Rocket, and WarpCreate front-end components that can be injected into multiple viewsDevelop data models in Rust to interact with the databaseBook DescriptionAre safety and high performance a big concern for you while developing web applications? While most programming languages have a safety or speed trade-off, Rust provides memory safety without using a garbage collector. This means that with its low memory footprint, you can build high-performance and secure web apps with relative ease. This book will take you through each stage of the web development process, showing you how to combine Rust and modern web development principles to build supercharged web apps. You'll start with an introduction to Rust and understand how to avoid common pitfalls when migrating from traditional dynamic programming languages. The book will show you how to structure Rust code for a project that spans multiple pages and modules. Next, you'll explore the Actix Web framework and get a basic web server up and running. As you advance, you'll learn how to process JSON requests and display data from the web app via HTML, CSS, and JavaScript. You'll also be able to persist data and create RESTful services in Rust. Later, you'll build an automated deployment process for the app on an AWS EC2 instance and Docker Hub. Finally, you'll play around with some popular web frameworks in Rust and compare them. By the end of this Rust book, you'll be able to confidently create scalable and fast web applications with Rust.What you will learnStructure scalable web apps in Rust in Rocket, Actix Web, and WarpApply data persistence for your web apps using PostgreSQLBuild login, JWT, and config modules for your web appsServe HTML, CSS, and JavaScript from the Actix Web serverBuild unit tests and functional API tests in Postman and NewmanDeploy the Rust app with NGINX and Docker onto an AWS EC2 instanceWho this book is forThis book on web programming with Rust is for web developers who have programmed in traditional languages such as Python, Ruby, JavaScript, and Java and are looking to develop high-performance web applications with Rust. Although no prior experience with Rust is necessary, a solid understanding of web development principles and basic knowledge of HTML, CSS, and JavaScript are required if you want to get the most out of this book.

RxJava Essentials

by Ivan Morgillo

If you are an experienced Java developer, reactive programming will give you a new way to approach scalability and concurrency in your backend systems, without forcing you to switch programming languages.

S-BPM Illustrated: A Storybook about Business Process Modeling and Execution

by Albert Fleischmann Stefan Raß Robert Singer

S-BPM stands for “subject-oriented business process management” and focuses on subjects that represent the entities (people, programs etc.) that are actively engaged in processes. S-BPM has become one of the most widely discussed approaches for process professionals. Its potential particularly lies in the integration of advanced information technology with organizational and managerial methods to foster and leverage business innovation, operational excellence and intra- and inter-organizational collaboration. Thus S-BPM can also be understood as a stakeholder-oriented and social business process management methodology.In this book, the authors show how S-BPM and its tools can be used in order to solve communication and synchronization problems involving humans and/or machines in an organization. All the activities needed in order to implement a business process are shown step by step; it starts by analyzing the problem, continues with modeling and validating the corresponding process, and finishes off by embedding the process into the organization. The final result is a workflow that executes the process without the need for any programming. To this end, in the first step a very simple process is implemented, which is subsequently extended and improved in “adaption projects,” because additional problems have to be solved. This approach reflects the organizational reality, in which processes must always be changed and adapted to new requirements. This is a hands-on book, written by professionals for professionals, with a clear and concise style, a wealth of illustrations (as the title suggests), and focusing on an ongoing example with a real industrial background. Readers who want to execute all the steps by themselves can simply download the S-BPM tool suite from the www.i2pm.net website.

S-BPM in the Production Industry: A Stakeholder Approach

by Matthias Neubauer Christian Stary

This book is open access under a CC BY-NC 4.0 license.This volume presents several case studies highlighting the latest findings in Industry 4.0 projects utilizing S-BPM features. Their potential is explored in detail, while the limits of engineering a company from a communication-centred perspective are also discussed. After a general introduction and an overview of the book in chapter 1, chapter 2 starts by condensing the industrial challenges driven by the German “Industry 4.0” trend to form a concrete vision for future production industries. Subsequently, chapter 3 introduces the basic concepts of S-BPM and its capabilities, in particular for supporting the restructuring of processes. The next three chapters then present various case studies, e.g. at an SME offering the production of atypical, unique and special purpose machinery, equipment and technologically complex units particularly useful in the automotive and electronic industries; and at a further SME producing highly-customized floor cleaning machines. Rounding out the coverage, the last two chapters summarize the achievements and lessons learned with regard to the road ahead. Overall, the book provides a realistic portrait of the status quo based on current findings, and outlines the future activities to be pursued in order to establish stakeholder-centred digital production systems. As such, developers, educators, and practitioners will find both the conceptual background and results from the field reflecting the state-of-the-art in vertical and horizontal process integration.

S-BPM in the Wild: Practical Value Creation

by Albert Fleischmann Werner Schmidt Christian Stary

This is the first book to present field studies on the application of subject-oriented business process management (S-BPM). Each case presents a specific story and focuses on an essential modeling or implementation issue, and most end with implications or suggestions for further studies. Significant variables and success factors are identified that were discovered during the respective study and lead to suggesting S-BPM novelties. For each case, the authors explain step-by-step how the story develops, and provide readers guidance by detailing the respective rationale.The studies covered are clustered according to three main S-BPM themes: Part I “Business Operation Support” documents approaches to the practical development of S-BPM solutions in various application domains and organizational settings, while Part II “Consultancy and Education Support” highlights cases that can help to train readers in S-BPM modeling and knowledge acquisition for S-BPM lifecycle iterations. It also refers to architecting S-BPM solutions for application cases based on hands-on experience. Part III “Technical Execution Support” focuses on concepts for utilizing specific theories and technologies to execute S-BPM models. It also addresses how to create reference models for certain settings in the field. Lastly, the appendix covers all relevant aspects needed to grasp S-BPM modeling and apply it based on fundamental examples. Its format reconciles semantic precision with syntactic rigor.>Addressing the needs of developers, educators and practitioners, this book will help companies to learn from the experiences of first-time users and to develop systems that fit their business processes, explaining the latest key methodological and technological S-BPM developments in the fields of training, research and application.

S-BPM ONE: First International Workshop, Karlsruhe, Germany, October 22, 2009, Revised Selected Papers (Communications in Computer and Information Science #85)

by Hagen Buchwald Albert Fleischmann Detlef Seese Christian Stary

This volume contains a selection of papers from the First Workshop on Subject- Oriented Business Process Management (S-BPM ONE). Establishing a multi- and cross-disciplinary interchange of underyling and applied concepts, successful appli- tion studies, and innovative development ideas, the workshop emphasized the pro- tive realization of role- or actor-oriented modeling on the basis of exchanging m- sages when accomplishing tasks. The workshop was organized as a forum for the discussion of foundations, achievements, reflections, and further developments. In this way, its contributions not only addressed the current state of the art, but also the various lines of research and development, either running or planned. The state of the art is reflected in terms of concepts, modeling language, and tool features on the one hand. On the other hand, it is reflected through the discussion of industrial case studies. These indicate the current practice when implementing the subject-oriented BPM paradigm in industrial settings. By challenging conceptual foundations they also allow us to define a common ground for future developments in research and practice. The S-BPM ONE contributions focus on challenges arising from the evolution of service-oriented architectures and the need for more flexible business organizations. The latter require coherent and adaptive representation and processing techniques for business process modeling and execution. Corresponding technologies have to be grounded in theories of computer science, in order to provide an adequate infrastr- ture for thorough BPM including technology-enhanced change management.

S-BPM ONE - Application Studies and Work in Progress: 6th International Conference, S-BPM ONE 2014, Eichstätt, Germany, April 22-23, 2014. Proceedings (Communications in Computer and Information Science #422)

by Cornelia Zehbold

This book constitutes the thoroughly refereed proceedings of the 6th International Conference on Subject-Oriented Business Process Management, S-BPM ONE 2014, held in Eichstätt, Germany, in April 2014. The 14 application-oriented papers selected during the peer review process and included in this volume deal with a variety of topics ranging from model elicitation over strategic alignment to the application of S-BPM in different domains like software effort estimation, production planning and education.

S-BPM ONE - Education and Industrial Developments: 4th International Conference, S-BPM ONE 2012, Vienna, Austria, April 4-5, 2012. Proceedings (Communications in Computer and Information Science #284)

by Stefan Oppl Albert Fleischmann

This book constitutes the thoroughly refereed proceedings of the industrial track of the 4th International Conference on Subject-Oriented Business Process Management, S-BPM ONE 2012, held in Vienna, Austria, in April 2012. S-BPM as a discipline is characterized by a seamless approach toward the analysis, modeling, implementation, execution, and maintenance of business processes, with an explicit stakeholder focus. The 19 papers included were selected from the practically oriented submissions, and they have gone through the same rigorous peer-review process as their scientific counterparts.

S-BPM ONE - Learning by Doing - Doing by Learning: Third International Conference S-BPM ONE 2011, Ingolstadt, Germany, September 29-30, 2011, Proceedings (Communications in Computer and Information Science #213)

by Werner Schmidt

This book constitutes the refereed proceedings of the Third International Conference on Subject-Oriented Business Process Management, S-BPM ONE 2011, held in Ingolstadt, Germany, in September 2011. The papers feature the analysis, modeling, implementation, execution and management of interaction patterns with an explicit stakeholder focus and also embrace themes pertaining to the engineering and management of systems and organizations, particularly with respect to the areas of interaction culture, process-aware information systems, strategic alignment, and governance structures.

S-BPM ONE - Running Processes: 5th International Conference, S-BPM ONE 2013, Deggendorf, Germany, March 11-12, 2013. Proceedings (Communications in Computer and Information Science #360)

by Herbert Fischer Josef Schneeberger

This book constitutes the thoroughly refereed proceedings of the 5th International Conference on Subject-Oriented Business Process Management, S-BPM ONE 2013, held in Deggendorf, Germany, in March 2013. The papers are organized in topical sections on running concepts; running business process management types; running applications; running ideas; running solutions; running projects.

Refine Search

Showing 70,876 through 70,900 of 85,197 results