This document describes the process of starbursting, which is a variant of brainstorming that focuses on generating questions rather than answers. The three-step starbursting process involves:
1. Having participants write down questions in different categories like who, what, when to understand the problem without answering the questions.
2. Reviewing the questions and selecting the three most strategic questions to focus on answering, as the answers to these will be key to solving the challenge.
3. Dividing the team to each work on answering one of the three questions, then rotating through all three questions to fully understand the problem from different perspectives.
This document describes the process of starbursting, which is a variant of brainstorming that focuses on generating questions rather than answers. The three-step starbursting process involves:
1. Having participants write down questions in different categories like who, what, when to understand the problem without answering the questions.
2. Reviewing the questions and selecting the three most strategic questions to focus on answering, as the answers to these will be key to solving the challenge.
3. Dividing the team to each work on answering one of the three questions, then rotating through all three questions to fully understand the problem from different perspectives.
El resumen presenta una escena donde el Se?or Jourdain, un burgués que quiere ser noble, recibe lecciones de música y baile de sus profesores. Los profesores han preparado una serenata para Jourdain, la cual escucha aunque la encuentra lúgubre. Luego los profesores intentan convencer a Jourdain de la importancia de la música y el baile, afirmando que sin ellos no puede haber paz ni progreso. Jourdain queda convencido de sus argumentos.
App Engine is Google's fully managed platform as a service that allows developers to build and run applications on Google's infrastructure. It provides several services including Cloud Datastore for scalable storage, Cloud SQL for relational databases, Cloud Storage for file storage, and Task Queues for background processing. Developers can build and deploy applications using App Engine's SDKs and APIs, and App Engine automatically scales applications up and down as traffic levels change.
This document discusses SQLite usage including its advantages of being file-based and suitable for development and small applications. It also notes SQLite limitations such as lack of access control lists and allowing only one write at a time. It provides code examples for creating a SQLite database and table, preparing SQL statements, binding parameters, executing queries, and handling errors. It also covers topics like using indexes, time zone handling, debugging SQL, and dealing with busy databases.
How to improve the network of Docker? How to integrate with OpenVSwitch? How to apply more fine-grained QoS limitation and monitor the resource usage of containers? How to improve Docker in non-intrusive ways? This slides shared by Li Yulai, the Chief Architect of SpeedyCloud, is to answer questions above. Visit http://www.speedycloud.cn to find out more.
JerryScript is a lightweight JavaScript engine optimized for microcontrollers and IoT devices. It has a small base footprint of only 3KB of RAM and implements ECMAScript 5.1. JerryScript parses code directly to compact bytecode without an intermediate representation, uses compressed pointers and value representations to reduce memory usage, and is highly portable across platforms. A demo of a Pong game showed JerryScript running on a microcontroller driving an LED matrix with gameplay shared across devices. Future work will focus on additional optimizations, debugging support, and selected ES6 features.
The document discusses an organization's efforts to improve employee engagement. It outlines several initiatives that were planned and implemented, including focusing leadership commitment on engagement, actively involving all employees through projects and activities, launching exciting recognition and learning programs, and ensuring transparent communication. Through these coordinated efforts over time, the organization was able to significantly improve engagement survey results from 2010 to 2015 despite challenges in the market.
Consul is a service discovery tool that allows services to register themselves and discover other services via a distributed key-value store. It provides service discovery, health checking, and distributed configuration management. Consul works by having Consul agents that gossip and use the Raft consensus protocol to maintain a consistent key-value store across datacenters. Clients can access services via HTTP endpoints to register services, discover health checks, and access the key-value store.
This document discusses KVM and virtualization technologies from Samsung Open Source Group. It provides an overview of KVM features and contributions from Linaro and ARM. It also summarizes key areas like vCPU scheduling, guest memory management, I/O, and challenges with cache coherency between the guest and QEMU. Device pass-through techniques using PCI and device tree are described. The virt machine model, support for multiple page sizes, and guest debugging are also covered at a high level.
Reactive services were defined by the Reactive Manifesto. They are built to be more flexible, loosely-coupled and scalable and also they are qualified based on the four principles: responsive, resilient, elastic and message driven. Java and the Java EE platform offers a pretty good structure and libraries to implement reactive services and transform it in a microservices architecture designed.