Sprint
Revisar qué hemos terminado
- Revisar columna "Listo"
- Revisar columna "En producción"
- Mover tarjetas que estén OK de "En producción" a "Listo"
- Archivar tarjetas columna "Listo"
- Mover tarjetas que no estén ok de "En producción" a "Backlog"
I hereby claim:
To claim this, I am signing this object:
const actionMap: any = { | |
[gateAccess.REWIND_REGISTRATION]: (state, action) => { | |
switch (state.step) { | |
case 'vehicle': | |
return resetState(state); | |
case 'driver': | |
return updateObject(state, { lastAccess: null, step: 'vehicle' }); | |
case 'confirmation': | |
return updateObject(state, { | |
lastAccess: null, |
import { Injectable } from '@angular/core'; | |
import { | |
HttpRequest, | |
HttpHandler, | |
HttpEvent, | |
HttpInterceptor, | |
HttpErrorResponse, | |
} from '@angular/common/http'; | |
import { EnvConfigurationProvider } from 'gl-ionic2-env-configuration'; |
# Use this file to configure the Overcommit hooks you wish to use. This will | |
# extend the default configuration defined in: | |
# https://github.com/brigade/overcommit/blob/master/config/default.yml | |
# | |
# At the topmost level of this YAML file is a key representing type of hook | |
# being run (e.g. pre-commit, commit-msg, etc.). Within each type you can | |
# customize each hook, such as whether to only run it on certain files (via | |
# `include`), whether to only display output if it fails (via `quiet`), etc. | |
# | |
# For a complete list of hooks, see: |
Overcommit is a gem that makes easy to add, configure and run tasks on git hooks (script that are run when manipulating a git repo, for example, before making a commit).
overcommit
to development environment, or install it globally on you machine with gem install overcommit
overcommit
, install the git hooks provided by overcommit
: overcommit --install
{ | |
"env": { | |
"es6": false, | |
"browser": true | |
}, | |
"parserOptions": { | |
"ecmaVersion": 5 | |
}, | |
"plugins": [], | |
"globals": { |
require 'em-websocket' | |
EM.run do | |
EM::WebSocket.run(host: '0.0.0.0', port: 8080) do |ws| | |
ws.onopen do |handshake| | |
puts 'WebSocket connection open' | |
# Access properties on the EM::WebSocket::Handshake object, e.g. | |
# path, query_string, origin, headers |
# http://blog.honeybadger.io/building-a-simple-websockets-server-from-scratch-in-ruby/ | |
require 'socket' # Provides TCPServer and TCPSocket classes | |
require 'digest/sha1' | |
server = TCPServer.new('localhost', 2345) | |
loop do | |
# Wait for a connection |
#!/usr/bin/env python3 | |
'''Usage: | |
python3 http-stdout-echo.py -a <bind-address> -p <bind-port> | |
Examples: | |
python3 http-stdout-echo.py # (will listen at 127.0.0.1:8080 by default) | |
python3 http-stdout-echo.py -a 10.3.1.3 -p 5555''' | |
from http.server import HTTPServer, BaseHTTPRequestHandler |