-
Describir con sus palabras qué entiende por Calidad.
La calidad puede definirse como el grado de satisfacción producida o percibida por un elemento (tangible o intangible) a través de distintas características que lo definen, componen o los efectos que este produce mediante su uso u obtención.
-
Cada uno de los denominados gurús(o padres) de la calidad han creado o instaurado algún programa, término o proceso que los ha colocado en ese lugar. Investigue y explique con sus palabras el aporte realizado por cada uno de los gurús mencionados en la teoría.
I hereby claim:
- I am tinchoz49 on github.
- I am macosta (https://keybase.io/macosta) on keybase.
- I have a public key ASDpYf9N6vCcyqtK2sQJy2vJj1c1U_yWWZzHokHC9FT0CAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const flyd = require('flyd'); | |
const snabbdom = require('snabbdom'); | |
const htmldomapi = require('snabbdom/htmldomapi').default; | |
htmldomapi.removeChild = (node, child) => { | |
if (node && child) { | |
node.removeChild(child); | |
} | |
}; | |
const patch = snabbdom.init([], htmldomapi); | |
const h = require('snabbdom/h').default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# list plugins: pure getopts tmux-zen lookup config bass spin upto | |
set fish_greeting '' | |
alias network:restart 'sudo systemctl restart NetworkManager.service' | |
alias vi 'nvim' | |
alias vim 'nvim' | |
alias am 'atom' | |
alias vs 'code' | |
alias docker:start 'sudo systemctl start docker' | |
alias docker:rmo-volume 'docker volume rm (docker volume ls -qf dangling=true)' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .config/termite/config | |
# use tdrop and wmctrl to the dropdown functionality: tdrop -a -m -f "-e /bin/fish" -s dropdown --create-hook "wmctrl -i -r $1 -b toggle,maximized_vert,maximized_horz" termite | |
[options] | |
scroll_on_output = false | |
scroll_on_keystroke = true | |
audible_bell = false | |
visible_bell = true | |
mouse_autohide = true | |
allow_bold = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g default-shell /bin/fish | |
set -g default-terminal "tmux" | |
set -ga terminal-overrides ",xterm-termite:Tc" | |
set-option -g mouse on | |
set-option -g set-titles on | |
set-option -g set-titles-string "#T" | |
set-window-option -g mode-keys vi | |
# change prefix because i use b for a lot of things in vim | |
unbind C-b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set shell=/bin/bash | |
call plug#begin('~/.vim/plugged') | |
Plug 'tpope/vim-fugitive' | |
Plug 'vim-syntastic/syntastic', { 'do': 'npm install -g resolve-eslint' } | |
Plug 'tpope/vim-surround' | |
Plug 'tpope/vim-repeat' | |
Plug 'terryma/vim-multiple-cursors' | |
"Plug 'Raimondi/delimitMate' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name":"Africa/Abidjan", | |
"offset":"+00:00" | |
}, | |
{ | |
"name":"Africa/Accra", | |
"offset":"+00:00" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ellip( item ) { | |
var wrap = item, | |
header = $(item.find('.ellip-header')), | |
content = $(item.find('.ellip-content')), | |
footer = $(item.find('.ellip-footer')); | |
var height = wrap.height(), | |
margin = 40, | |
p = $(content.find('p')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = {}, | |
buttonComponent = {}; | |
buttonComponent.controller = function ( options ) { | |
this.title = options.title; | |
}; | |
buttonComponent.view = function ( ctrl ) { | |
return m('button', 'The button component: ' + ctrl.title()); | |
}; |
NewerOlder