Skip to content

Instantly share code, notes, and snippets.

View EntwistleOx's full-sized avatar
👽

Juan Díaz Ortega EntwistleOx

👽
  • https://www.zentagroup.com/
  • Santiago, Chile
View GitHub Profile
@EntwistleOx
EntwistleOx / .md
Created May 5, 2020 03:35
Scrum Master Professional Certificate - 04/05/2020

SCRUM MASTER - 04-05-2020

Marco Historico

Enero 1986 - Hirotaka Takeuchi / Ikujiro Nonaka

"The New New Product Development Game"

Desarrollaron una nueva forma de pensar acerca de como desarrollar productos y manejar proyectos con definiciones estrategicas de desarrollo flexible e incluyente, con un enfoque holistico, donde el valor esta en el equipo de trabajo, se trata de llegar al final como una unidad.

@EntwistleOx
EntwistleOx / .md
Last active May 8, 2020 20:49
SCRUM MASTER - 05-05-2020

SCRUM MASTER - 05-05-2020

Roles

Conjunto cohesivo de responsabilidades que pueden ser cumplidas por una o mas personas.

Scrum Team

Consiste en el Product Owner, Development Team y Scrum Master. Son autoorganizados y multifuncionales.

@EntwistleOx
EntwistleOx / .md
Created May 7, 2020 06:00
SCRUM MASTER 06-05-2020

SCRUM MASTER - 06-05-2020

Conceptos Claves

Tema

Coleccion de Epicas relacionadas para describir un sistema o subsistema en su totalidad.

Epics

@EntwistleOx
EntwistleOx / .md
Last active December 3, 2023 00:10
QUIZ - PROFESSIONAL SCRUM MASTER CERTIFICATE

SCRUM MASTER PROFESSIONAL CERTIFICATE (SMPC®)

Simulador para examen Scrum Master

1. ¿Quién debe hacer el trabajo requerido para los elementos del Producto Backlog, para crear un Incremento potencialmente liberable?

  1. El equipo Scrum.
  2. El Scrum Master.
  3. El Equipo de Desarrollo.
  4. El Product Owner.
@EntwistleOx
EntwistleOx / .md
Created May 8, 2020 20:51
QUIZ - PROFESSIONAL SCRUM MASTER CERTIFICATE

SCRUM MASTER PROFESSIONAL CERTIFICATE (SMPC®)

Preguntas de Apoyo V022020

1. El Scrum Master es responsable de promover y apoyar Scrum como se define en la Guía de Scrum.

  1. Verdadero.
  2. Falso.

2. Scrum es un(a) **_** que ha sido utilizada para gestionar el trabajo en ___ complejos.

@EntwistleOx
EntwistleOx / .md
Created May 8, 2020 20:51
QUIZ - PROFESSIONAL SCRUM MASTER CERTIFICATE

Scrum Master Professional Certificate (SMPC®)

Preguntas de Apoyo V022020

1. Si la reunión diaria de Scrum tiene un tiempo de 15 minutos, entonces...

  1. El Sprint Review es de 4 horas.
  2. El Sprint Review es de 1 hora.
  3. No lo sabemos, es necesario conocer la duración del Sprint.
  4. El Sprint Review es de 2 horas.
@EntwistleOx
EntwistleOx / .md
Last active January 30, 2023 12:25
Heroku and Github via SSH

Guide to connect Heroku and Github via SSH

Working on Ubuntu 18.04 LTS and Win 10

Create SSH key in your machine:

$ ssh-keygen -t rsa -b 4096 -C "my@email.com" 
@EntwistleOx
EntwistleOx / add_two_times.js
Created May 14, 2020 19:27 — forked from joseluisq/add_two_times.js
Add two string time values (HH:mm:ss) with javascript
/**
* Add two string time values (HH:mm:ss) with javascript
*
* Usage:
* > addTimes('04:20:10', '21:15:10');
* > "25:35:20"
* > addTimes('04:35:10', '21:35:10');
* > "26:10:20"
* > addTimes('30:59', '17:10');
* > "48:09:00"
/* Estructura y Datos de las Regiones, Provincias */
/* y Comunas de Chile. */
/* */
/* Fecha: Julio 2010 */
/* Autor: Juan Pablo Aqueveque - juque.cl */
--
-- Comunas
--
DROP TABLE IF EXISTS `comunas`;
@EntwistleOx
EntwistleOx / app.js
Created July 21, 2020 23:23 — forked from stongo/app.js
Joi validation in a Mongoose model
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/test');
var db = mongoose.connection;
db.on('error', function() {
return console.error.bind(console, 'connection error: ');
});