Kamis, 23 Februari 2017

1Bookcase - DevOps, DBAs, and DBaaS


1Bookcase - DevOps, DBAs, and DBaaS

Link to 1Bookcase

DevOps, DBAs, and DBaaS

Posted: 23 Feb 2017 01:08 AM PST

Learn how DBAs in a DevOps environment manage data platforms and change requests to support and optimize continuous integration, delivery, testing, and deployment in the application development life cycle. On the Dev side, DBAs evaluate change requests to ensure compliance with organizational best practices and guard against degradation of database performance and the validity of dependent objects. On the Ops side, DBAs perform release and troubleshooting activities in support of the application, manage the data platform's access and security, and monitor and maintain performance of the databases that they have designed and provisioned.

DevOps, DBAs, and DBaaS investigates the complex intersection between DBA functions and DevOps processes. DevOps teams traditionally viewed DBAs as process outliers who disrupt and retard SDLC timelines. At each touch point, veteran DBA Mike Cuppett shows how DBAs can most effectively contribute to decreasing release cycle times and improving product resiliency by applying automation, orchestration, and DBaaS solutions to database administration in ways that dovetail with DevOps requirements and metrics.

At a high level, Cuppett demonstrates the importance of leveling silo walls in the IT supply chain and of measuring application performance holistically by reference to satisfaction of customer requirements and end-user experience. At a technical level, he drills into topics and case studies on diagnosing and resolving problems commonly encountered by DBAs and DevOps teams when meshing database management with application delivery.

What You Will Learn:
  • Understand techniques and best practices at all points of collaboration between DBAs and DevOps teams in product development
  • Use tools for measuring DBA inputs to DevOps processes by holistic criteria of end-user experience and business requirement
  • Integrate open source database technologies with DevOps
  • Know when to decouple application and database layers and move to DBaaS models
  • Overcome language and mindset barriers between DBAs and DevOps teams
 
Who This Book Is For:
 
DBAs who are leaning toward or already involved with DevOps and DevOps engineers, team leaders, developers and product managers who are already working with DBAs or planning to integrate DBAs in DevOps teams. The secondary readership is executives and managers in companies that practice DevOps.

 

The post DevOps, DBAs, and DBaaS appeared first on 1Bookcase.


READ MORE - 1Bookcase - DevOps, DBAs, and DBaaS

Rabu, 17 Agustus 2016

1Bookcase - 6 books ready for downloading


1Bookcase - 6 books ready for downloading

Link to 1Bookcase

Think Python, 2nd Edition

Posted: 16 Aug 2016 01:10 PM PDT

Think Python

If you want to learn how to program, working with Python is an excellent way to start. This hands-on guide takes you through the language a step at a time, beginning with basic programming concepts before moving on to functions, recursion, data structures, and object-oriented design. This second edition and its supporting code have been updated for Python 3.

Through exercises in each chapter, you'll try out programming concepts as you learn them. Think Python is ideal for students at the high school or college level, as well as self-learners, home-schooled students, and professionals who need to learn programming basics. Beginners just getting their feet wet will learn how to start with Python in a browser.

  • Start with the basics, including language syntax and semantics
  • Get a clear definition of each programming concept
  • Learn about values, variables, statements, functions, and data structures in a logical progression
  • Discover how to work with files and databases
  • Understand objects, methods, and object-oriented programming
  • Use debugging techniques to fix syntax, runtime, and semantic errors
  • Explore interface design, data structures, and GUI-based programs through case studies

The post Think Python, 2nd Edition appeared first on 1Bookcase.

Cassandra: The Definitive Guide, 2nd Edition

Posted: 16 Aug 2016 01:07 PM PDT

Cassandra

Imagine what you could do if scalability wasn’t a problem. With this hands-on guide, you'll learn how the Cassandra database management system handles hundreds of terabytes of data while remaining highly available across multiple data centers. This expanded second edition—updated for Cassandra 3.0—provides the technical details and practical examples you need to put this database to work in a production environment.

Authors Jeff Carpenter and Eben Hewitt demonstrate the advantages of Cassandra's non-relational design, with special attention to data modeling. If you're a developer, DBA, or application architect looking to solve a database scaling issue or future-proof your application, this guide helps you harness Cassandra's speed and flexibility.

  • Understand Cassandra's distributed and decentralized structure
  • Use the Cassandra Query Language (CQL) and cqlsh—the CQL shell
  • Create a working data model and compare it with an equivalent relational model
  • Develop sample applications using client drivers for languages including Java, Python, and Node.js
  • Explore cluster topology and learn how nodes exchange data
  • Maintain a high level of performance in your cluster
  • Deploy Cassandra on site, in the Cloud, or with Docker
  • Integrate Cassandra with Spark, Hadoop, Elasticsearch, Solr, and Lucene

The post Cassandra: The Definitive Guide, 2nd Edition appeared first on 1Bookcase.

Network Programmability and Automation

Posted: 16 Aug 2016 01:02 PM PDT

Network Programmability and Automation

Automation is the new skillset that network engineers need to pick up. Much like sysadmins have had to learn how to use new tools like Chef and Puppet, network engineers are learning that they just can’t do things manually anymore. With examples in each chapter, this practical book provides you with baseline skills in network programmability and automation, using a range of technologies including Linux, Python, JSON, and XML. No previous knowledge of software development, programming, automation, or DevOps is required.

  • Understand the basics of Linux as applied to networking
  • Learn how to use text editors and Python to automate networks
  • Apply sound software design principles like continuous integration, DevOps, source control, etc. to optimize networks

The post Network Programmability and Automation appeared first on 1Bookcase.

Secure Coding in C and C++, 2nd Edition

Posted: 16 Aug 2016 12:58 PM PDT

Secure Coding in C and C++, 2nd Edition

Learn the Root Causes of Software Vulnerabilities and How to Avoid Them

Commonly exploited software vulnerabilities are usually caused by avoidable software defects. Having analyzed tens of thousands of vulnerability reports since 1988, CERT has determined that a relatively small number of root causes account for most of the vulnerabilities.

Secure Coding in C and C++, Second Edition, identifies and explains these root causes and shows the steps that can be taken to prevent exploitation. Moreover, this book encourages programmers to adopt security best practices and to develop a security mindset that can help protect software from tomorrow's attacks, not just today's. Drawing on the CERT's reports and conclusions, Robert C. Seacord systematically identifies the program errors most likely to lead to security breaches, shows how they can be exploited, reviews the potential consequences, and presents secure alternatives.

Coverage includes technical detail on how to

  • Improve the overall security of any C or C++ application
  • Thwart buffer overflows, stack-smashing, and return-oriented programming attacks that exploit insecure string manipulation logic
  • Avoid vulnerabilities and security flaws resulting from the incorrect use of dynamic memory management functions
  • Eliminate integer-related problems resulting from signed integer overflows, unsigned integer wrapping, and truncation errors
  • Perform secure I/O, avoiding file system vulnerabilities
  • Correctly use formatted output functions without introducing format-string vulnerabilities
  • Avoid race conditions and other exploitable vulnerabilities while developing concurrent code

The second edition features

  • Updates for C11 and C++11
  • Significant revisions to chapters on strings, dynamic memory management, and integer security
  • A new chapter on concurrency
  • Access to the online secure coding course offered through Carnegie Mellon's Open Learning Initiative (OLI)

Secure Coding in C and C++, Second Edition, presents hundreds of examples of secure code, insecure code, and exploits, implemented for Windows and Linux. If you're responsible for creating secure C or C++ software–or for keeping it safe–no other book offers you this much detailed, expert assistance.

The post Secure Coding in C and C++, 2nd Edition appeared first on 1Bookcase.

Java Performance Companion

Posted: 16 Aug 2016 12:54 PM PDT

Java Performance Companion

Java Performance Companion shows how to systematically and proactively improve Java performance with today's advanced multicore hardware and complex operating system environments.

The authors, who are all leading Java performance and Java HotSpot VM experts, help you improve performance by using modern software engineering practices, avoiding common mistakes, and applying tips and tricks gleaned from years of real-world experience.

Picking up where Charlie Hunt and Binu John's classic Java Performance left off, this book provides unprecedented detail on two powerful Java platform innovations: the Garbage First (G1) garbage collector and the HotSpot VM Serviceability Agent.

Coverage includes

  • Leveraging G1 to overcome limitations in parallel, serial, and CMS garbage collection
  • Understanding each stage of G1 GC collections, both young and old
  • Getting under the hood with G1 and efficiently fine-tuning it for your application
  • Identifying potential optimizations, interpreting experimental results, and taking action
  • Exploring the internals of the HotSpot VM
  • Using HotSpot VM Serviceability Agent to analyze, triage, and resolve diverse HotSpot VM issues
  • Troubleshooting out of memory errors, Java level deadlocks, and HotSpot VM crashes
  • Extending the Serviceability Agent, and using the Plugin for VisualVM
  • Mastering useful HotSpot VM command line options not covered in Java™ Performance

Java Performance Companion can help you squeeze maximum performance and value from Java with JDK 8 or 9–for any application, in any environment.

The post Java Performance Companion appeared first on 1Bookcase.

Reengineering .NET

Posted: 16 Aug 2016 12:52 PM PDT

Reengineering .NET

Reengineer .NET Code to Improve Quality, Update Architecture, Access New Tools, and Accelerate Delivery of New Features

As software ages, it becomes brittle: difficult to understand, fix, manage, use, and improve. Developers working with  many platforms have encountered this problem; now, developers working with Microsoft's .NET are facing it as well.  In Reengineering .NET, leading .NET architect Bradley Irby introduces proven best practices for revitalizing older .NET code and integrating new architectural and development advances into business-critical systems that can't go offline.  Using a step-by-step approach, .NET professionals can make legacy enterprise software more reliable, maintainable,  attractive, and usable—and make it easier to upgrade for years to come.

Through real-world case studies and extensive downloadable sample code, Irby shows how to carefully plan a .NET  reengineering project, understand the true current state of your code, introduce unit testing and other agile methods, refactor to services and controllers, and leverage powerful .NET reengineering tools built into Microsoft Visual Studio 2012.

This book is an indispensable resource for all developers, architects, and project managers responsible for existing .NET code bases and for a wide audience of non-technical managers and CTOs who want to understand the unique  challenges faced by .NET teams involved in application or system reengineering projects.

Coverage includes:

  • Migrating legacy .NET software to more flexible, extensible, and maintainable architectures—without breaking it
  • Reengineering web applications with the MVC pattern, Winforms software with MVP, and WPF/Silverlight  systems with MVVM
  • Asking the right questions to predict refactoring problems before they happen
  • Planning and organizing reengineering projects to apply the right expertise to each task at the right time
  • Using innovative Test Doubling to make unit testing even more effective
  • Applying Dependency Inversion to break tight coupling and promote easier development and testing
  • Leveraging source control, defect tracking, and continuous integration
  • "Cleaning up" legacy solutions to improve them before you even touch business logic
  • Establishing solid development infrastructure to support your reengineering project
  • Refactoring to services—including advanced techniques using Repositories, Domain Models,  and the Command Dispatcher
  • Refactoring to controller/view or ViewModel/View pairs

The post Reengineering .NET appeared first on 1Bookcase.


READ MORE - 1Bookcase - 6 books ready for downloading

Kamis, 04 Agustus 2016

1Bookcase - 3 books ready for downloading


1Bookcase - 3 books ready for downloading

Link to 1Bookcase

Mesos in Action

Posted: 03 Aug 2016 03:17 PM PDT

Mesos in Action

Mesos in Action introduces readers to the Apache Mesos cluster manager and the concept of application-centric infrastructure. Filled with helpful figures and hands-on instructions, this book guides you from your first steps creating a highly-available Mesos cluster through deploying applications in production and writing native Mesos frameworks. You'll learn how to scale to thousands of nodes, while providing resource isolation between processes using Linux and Docker containers. You'll also learn practical techniques for deploying applications using popular key frameworks.

What's Inside

  • Spinning up your first Mesos cluster
  • Scheduling, resource administration, and logging
  • Deploying containerized applications with Marathon, Chronos, and Aurora
  • Writing Mesos frameworks using Python

About the Technology

Modern datacenters are complex environments, and when you throw Docker and other container-based systems into the mix, there's a great need to simplify. Mesos is an open source cluster management platform that transforms the whole datacenter into a single pool of compute, memory, and storage resources that you can allocate, automate, and scale as if you're working with a single supercomputer.

About the Reader

Readers need to be familiar with the core ideas of datacenter administration and need a basic knowledge of Python or a similar programming language.

The post Mesos in Action appeared first on 1Bookcase.

Data Algorithms

Posted: 03 Aug 2016 03:10 PM PDT

Data Algorithms

If you are ready to dive into the MapReduce framework for processing large datasets, this practical book takes you step by step through the algorithms and tools you need to build distributed MapReduce applications with Apache Hadoop or Apache Spark. Each chapter provides a recipe for solving a massive computational problem, such as building a recommendation system. You'll learn how to implement the appropriate MapReduce solution with code that you can use in your projects.

Dr. Mahmoud Parsian covers basic design patterns, optimization techniques, and data mining and machine learning solutions for problems in bioinformatics, genomics, statistics, and social network analysis. This book also includes an overview of MapReduce, Hadoop, and Spark.

Topics include:

  • Market basket analysis for a large set of transactions
  • Data mining algorithms (K-means, KNN, and Naive Bayes)
  • Using huge genomic data to sequence DNA and RNA
  • Naive Bayes theorem and Markov chains for data and market prediction
  • Recommendation algorithms and pairwise document similarity
  • Linear regression, Cox regression, and Pearson correlation
  • Allelic frequency and mining DNA
  • Social network analysis (recommendation systems, counting triangles, sentiment analysis)

The post Data Algorithms appeared first on 1Bookcase.

Transitions and Animations in CSS

Posted: 03 Aug 2016 03:06 PM PDT

Transitions and Animations in CSS

Add life and depth to your web applications and improve user experience through the discrete use of CSS transitions and animations. With this concise guide, you'll learn how to make page elements move or change in appearance, whether you want to realistically bounce a ball, gradually expand a drop-down menu, or simply bring attention to an element when users hover over it.

Short and deep, this book is an excerpt from the upcoming fourth edition of CSS: The Definitive Guide. When you purchase either the print or the ebook edition of Transitions and Animations in CSS, you'll receive a discount on the entire Definitive Guide once it's released. Why wait? Learn how to make your web pages come alive today.

  • Understand and learn how to implement Disney's 12 principles of cartoon animation
  • Learn which CSS properties you can animate and use in transitions
  • Apply CSS's four transition properties and nine animation properties to your CSS elements
  • Use CSS keyframe animations to granularly control an element's property values
  • Learn details that will save you hours of debugging and megabytes of unnecessary JavaScript

The post Transitions and Animations in CSS appeared first on 1Bookcase.


READ MORE - 1Bookcase - 3 books ready for downloading

Minggu, 31 Juli 2016

1Bookcase - 5 books ready for downloading


1Bookcase - 5 books ready for downloading

Link to 1Bookcase

ArcGIS for JavaScript developers by Example

Posted: 30 Jul 2016 09:50 AM PDT

ArcGIS for JavaScript developers by Example

The book starts by explaining the basics of the ArcGIS web mapping ecosystem. The book walks you through the development of six major applications, covering a wide variety of topics such as querying, rendering, advanced data visualization and performing map analytics. It also emphasizes on writing modular code using pure dojo, which is the preferred platform for developing web GIS applications using ArcGIS JavaScript API.By the end of the book, you will have gained enough practical experience to architect a robust and visually powerful mapping application using the API.

What you will learn

  • Find out what you need to develop a web mapping application in the ArcGIS environment
  • Get to know about the major features provided by the ArcGIS JavaScript API
  • See the coding best practices to develop modular dojo-based JavaScript applications
  • Get to grips with writing custom re-usable dojo modules using dojo and esri modules and dijits
  • Understand how to use various ArcGIS data sources and other open geospatial data available on the web
  • Discover how to query spatial data and get the best out of your data using analytical techniques
  • Master the art of rendering your map beautifully and create wonderful data visualizations using non-map objects such as charts
  • Grasp how to create secure and scalable web maps

The post ArcGIS for JavaScript developers by Example appeared first on 1Bookcase.

Learning VMware App Volumes

Posted: 30 Jul 2016 09:45 AM PDT

Learning VMware App Volumes

App Volumes provides a virtualized, real-time application delivery engine for virtual desktop infrastructure and is designed to enable VDI deployments to ensure greater flexibility, agility, and cost reduction.This book starts with an in-depth overview of the architecture and components used to design an optimized solution. We then show you how to install and configure App Volumes for different use cases such as VMware View integration, using VMware ThinApp, Citrix XenApp, and more.

Throughout the chapters, we provide hints, tips, and tricks as well as best practices. By the end of the book, you will have built a working App Volumes environment and acquired the skills to build and run a production environment.

What you will learn

  • Find out how the VMware App Volumes solution can enhance the management and delivery of applications in your desktop environment
  • Design a real-life App Volumes solution using best practices and following the recommended sizing guides
  • Install, configure, and deploy App Volumes so it is ready to start delivering applications
  • Create and prepare applications ready to be delivered to end users
  • Discover how App Volumes can enhance other desktop solutions by looking at how it integrates with VMware Horizon View, VMware ThinApp, RDSH, and Citrix XenDesktop/XenApp
  • Understand how to configure the advanced options within App Volumes

The post Learning VMware App Volumes appeared first on 1Bookcase.

Puppet for Containerization

Posted: 30 Jul 2016 09:43 AM PDT

Puppet for Containerization

This book teaches you how to take advantage of the new benefits of containerization systems such as Docker, Kubernetes, Docker Swarm, and Docker UCP, without losing the panoptical power of proper configuration management.You will learn how to integrate your containerized applications and modules with your Puppet workflow. You will also understand how to manage, monitor, and orchestrate hosts to keep deployed containers running seamlessly. With the help of this book, you can efficiently automate and document with containers, as a part of your system.

The book will also cover use cases of deploying Puppet within a containerized environment.

What you will learn

  • Write Puppet modules to build Docker
  • Create Docker Compose templates with .erb files
  • Get to know the architecture of Docker schedulers
  • Create a Docker network and service discovery framework
  • Build a fully functional Docker scheduler with Puppet
  • Make Docker production ready with Puppet

The post Puppet for Containerization appeared first on 1Bookcase.

Internet of Things with Python

Posted: 30 Jul 2016 09:35 AM PDT

Internet of Things with Python

Internet of Things (IoT) is revolutionizing the way devices/things interact with each other. And when you have IoT with Python on your side, you’ll be able to build interactive objects and design them.

This book lets you stay at the forefront of cutting-edge research on IoT. We’ll open up the possibilities using tools that enable you to interact with the world, such as Intel Galileo Gen 2, sensors, and other hardware. You will learn how to read, write, and convert digital values to generate analog output by programming Pulse Width Modulation (PWM) in Python. You will get familiar with the complex communication system included in the board, so you can interact with any shield, actuator, or sensor.

Later on, you will not only see how to work with data received from the sensors, but also perform actions by sending them to a specific shield. You’ll be able to connect your IoT device to the entire world, by integrating WiFi, Bluetooth, and Internet settings. With everything ready, you will see how to work in real time on your IoT device using the MQTT protocol in python.

By the end of the book, you will be able to develop IoT prototypes with Python, libraries, and tools.

What you will learn

  • Prototype and develop IoT solutions from scratch with Python as the programming language
  • Develop IoT projects with Intel Galileo Gen 2 board along with Python
  • Work with the different components included in the boards using Python and the MRAA library
  • Interact with sensors, actuators, and shields
  • Work with UART and local storage
  • Interact with any electronic device that supports the I2C bus
  • Allow mobile devices to interact with the board
  • Work with real-time IoT and cloud services
  • Understand Big Data and IoT analytics

The post Internet of Things with Python appeared first on 1Bookcase.

Expert Python Programming, 2nd Edition

Posted: 30 Jul 2016 09:28 AM PDT

Expert Python Programming, 2nd Edition

Python is a dynamic programming language, used in a wide range of domains by programmers who find it simple, yet powerful. Even if you find writing Python code easy, writing code that is efficient and easy to maintain and reuse is a challenge.

The focus of the book is to familiarize you with common conventions, best practices, useful tools and standards used by python professionals on a daily basis when working with code.

You will begin with knowing new features in Python 3.5 and quick tricks for improving productivity. Next, you will learn advanced and useful python syntax elements bought in this new version. Using advanced object-oriented concepts and mechanisms available in python, you will learn different approaches to implement metaprogramming. You will learn to choose good names, write packages and create standalone exectuables easily.

You will also be using some powerful tools such as buildout and vitualenv to release and deploy the code on remote servers for production use. Moving on, you will learn to effectively create Python extensions with C, C++, cython and pyrex. Important factors while writing code such as code management tools, writing clear documentation and test driven development are also covered.

You will now dive deeper to make your code efficient with general rules of optimization, strategies for finding bottlenecks and selected tools for application optimization

By the end of the book you will be an expert in writing efficient and maintainable code.

What you will learn

  • Conventions and best practices that are widely adopted in python community
  • Package python code effectively for community and production use
  • Easy and lightweight ways to automate code deployment on remote systems
  • Improve your code s quality, reliability and performance
  • Write concurrent code in python
  • Extend python with code written in different languages

The post Expert Python Programming, 2nd Edition appeared first on 1Bookcase.


READ MORE - 1Bookcase - 5 books ready for downloading

Sabtu, 30 Juli 2016

1Bookcase - 2 books ready for downloading


1Bookcase - 2 books ready for downloading

Link to 1Bookcase

Algorithms in a Nutshell, 2nd Edition

Posted: 29 Jul 2016 05:08 PM PDT

Algorithms in a Nutshell 2nd Edition

Creating robust software requires the use of efficient algorithms, but programmers seldom think about them until a problem occurs. This updated edition of Algorithms in a Nutshell describes a large number of existing algorithms for solving a variety of problems, and helps you select and implement the right algorithm for your needs—with just enough math to let you understand and analyze algorithm performance.

With its focus on application, rather than theory, this book provides efficient code solutions in several programming languages that you can easily adapt to a specific project. Each major algorithm is presented in the style of a design pattern that includes information to help you understand why and when the algorithm is appropriate.

With this book, you will:

  • Solve a particular coding problem or improve on the performance of an existing solution
  • Quickly locate algorithms that relate to the problems you want to solve, and determine why a particular algorithm is the right one to use
  • Get algorithmic solutions in C, C++, Java, and Ruby with implementation tips
  • Learn the expected performance of an algorithm, and the conditions it needs to perform at its best
  • Discover the impact that similar design decisions have on different algorithms
  • Learn advanced data structures to improve the efficiency of algorithms

The post Algorithms in a Nutshell, 2nd Edition appeared first on 1Bookcase.

Optimized C++

Posted: 29 Jul 2016 04:53 PM PDT

Optimized CPP

In today's fast and competitive world, a program's performance is just as important to customers as the features it provides. This practical guide teaches developers performance-tuning principles that enable optimization in C++. You'll learn how to make code that already embodies best practices of C++ design run faster and consume fewer resources on any computer—whether it's a watch, phone, workstation, supercomputer, or globe-spanning network of servers.

Author Kurt Guntheroth provides several running examples that demonstrate how to apply these principles incrementally to improve existing code so it meets customer requirements for responsiveness and throughput. The advice in this book will prove itself the first time you hear a colleague exclaim, "Wow, that was fast. Who fixed something?"

  • Locate performance hot spots using the profiler and software timers
  • Learn to perform repeatable experiments to measure performance of code changes
  • Optimize use of dynamically allocated variables
  • Improve performance of hot loops and functions
  • Speed up string handling functions
  • Recognize efficient algorithms and optimization patterns
  • Learn the strengths—and weaknesses—of C++ container classes
  • View searching and sorting through an optimizer's eye
  • Make efficient use of C++ streaming I/O functions
  • Use C++ thread-based concurrency features effectively

The post Optimized C++ appeared first on 1Bookcase.


READ MORE - 1Bookcase - 2 books ready for downloading

Kamis, 28 Juli 2016

1Bookcase - 5 books ready for downloading


1Bookcase - 5 books ready for downloading

Link to 1Bookcase

Designing Efficient BPM Applications

Posted: 27 Jul 2016 03:38 PM PDT

Designing Efficient BPM Applications

Looking for efficiency gains in your business? If you're a business analyst, this practical guide will show you how to design effective business process management (BPM) applications. Every business uses business processes—these everyday tasks help you gain and retain customers, stay profitable, and keep your operations infrastructure functioning.

BPM specialists Christine McKinty and Antoine Mottier show you step-by-step how to turn a simple business procedure into an automated, process-based application. Using hands-on examples, you'll quickly learn how to create an online process that's easy to use. Each chapter builds on earlier material.

You don't have to have any programming experience to design business processes—and if you have skills in designing workflows and understanding human interactions with processes, you already have a headstart.

Through the course of this book, you will:

  • Build a prototype of an application page
  • Create the most frequent use flow in a process, and define the data model
  • Generate real process forms and produce the first version of the application
  • Connect your application to external information systems, and then build and test the complete application

The post Designing Efficient BPM Applications appeared first on 1Bookcase.

Site Reliability Engineering

Posted: 27 Jul 2016 03:32 PM PDT

Site Reliability Engineering

The overwhelming majority of a software system's lifespan is spent in use, not in design or implementation. So, why does conventional wisdom insist that software engineers focus primarily on the design and development of large-scale computing systems?

In this collection of essays and articles, key members of Google's Site Reliability Team explain how and why their commitment to the entire lifecycle has enabled the company to successfully build, deploy, monitor, and maintain some of the largest software systems in the world. You'll learn the principles and practices that enable Google engineers to make systems more scalable, reliable, and efficient—lessons directly applicable to your organization.

This book is divided into four sections:

  • Introduction—Learn what site reliability engineering is and why it differs from conventional IT industry practices
  • Principles—Examine the patterns, behaviors, and areas of concern that influence the work of a site reliability engineer (SRE)
  • Practices—Understand the theory and practice of an SRE's day-to-day work: building and operating large distributed computing systems
  • Management—Explore Google’s best practices for training, communication, and meetings that your organization can use

The post Site Reliability Engineering appeared first on 1Bookcase.

Learning Node, 2nd Edition

Posted: 27 Jul 2016 03:30 PM PDT

Learning Node

Take your web development skills from browser to server with Node—and learn how to write fast, highly scalable network applications on this JavaScript-based platform. Updated for the latest Node Long Term Support (LTS) and Node Current (6.0) releases, this hands-on edition helps you master Node's core fundamentals and gain experience with several built-in and contributed modules.

Get up to speed on Node's event-driven, asynchronous I/O model for developing data-intensive applications that are frequently accessed but computationally simple. If you're comfortable working with JavaScript, this book provides many programming and deployment examples to help you take advantage of server-side development with Node.

  • Explore the frameworks and functionality for full-stack Node development
  • Dive into Node's module system and package management support
  • Test your application or module code on the fly with Node's REPL console
  • Use core Node modules to build web applications and an HTTP server
  • Learn Node's support for networks, security, and sockets
  • Access operating system functionality with child processes
  • Learn tools and techniques for Node development and production
  • Use Node in microcontrollers, microcomputers, and the Internet of Things

The post Learning Node, 2nd Edition appeared first on 1Bookcase.

Identity and Data Security for Web Development

Posted: 27 Jul 2016 03:27 PM PDT

Identity and Data Security for Web Development Best Practices

Developers, designers, engineers, and creators can no longer afford to pass responsibility for identity and data security onto others. Web developers who don't understand how to obscure data in transmission, for instance, can open security flaws on a site without realizing it. With this practical guide, you'll learn how and why everyone working on a system needs to ensure that users and data are protected.

Authors Jonathan LeBlanc and Tim Messerschmidt provide a deep dive into the concepts, technology, and programming methodologies necessary to build a secure interface for data and identity—without compromising usability. You'll learn how to plug holes in existing systems, protect against viable attack vectors, and work in environments that sometimes are naturally insecure.

  • Understand the state of web and application security today
  • Design security password encryption, and combat password attack vectors
  • Create digital fingerprints to identify users through browser, device, and paired device detection
  • Build secure data transmission systems through OAuth and OpenID Connect
  • Use alternate methods of identification for a second factor of authentication
  • Harden your web applications against attack
  • Create a secure data transmission system using SSL/TLS, and synchronous and asynchronous cryptography

The post Identity and Data Security for Web Development appeared first on 1Bookcase.

XenServer Administration Handbook

Posted: 27 Jul 2016 03:25 PM PDT

XenServer Administration Handbook

Packed with practical advice, this hands-on guide provides valuable information you need to most effectively optimize and manage the XenServer open source virtualization platform. Whether you run a modest installation of a few blades or multiple global enterprise datacenters, this book focuses on the most critical issues you're likely to encounter when designing a XenServer deployment and helps you handle day-to-day management tasks.

Tim Mackey and J.K. Benedict from Citrix Systems, the company that manages XenServer, show you how to design a deployment through best practices, deployment blueprints, and installation guidelines. The book's second part features concise, easy-to-implement recipes for day-to-day management, such as user rights, backup strategies, and hardware maintenance.

  • Learn precisely what makes a XenServer work, and how it can host 1000 virtual machines
  • Explore the core components of a production XenServer environment
  • Investigate several options on how and where to install XenServer
  • Examine several factors for “right sizing” your XenServer deployment to fit your needs
  • Work with a decision tree to optimize your XenServer deployment design
  • Understand how to accommodate guest VM virtualization modes
  • Use recipes that help you plan for, obtain, and apply XenServer upgrades

The post XenServer Administration Handbook appeared first on 1Bookcase.


READ MORE - 1Bookcase - 5 books ready for downloading