| name |
|---|
Fastify Backend Scaffold |
This guide provides a complete walkthrough for building a modern Node.js / Bun.js backend package with Fastify, TypeScript, Drizzle ORM, and Better Auth from scratch.
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:
To claim this, I am signing this object:
| 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; |
| # 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)' |
| # .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 |
| 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 |
| 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' |
| [ | |
| { | |
| "name":"Africa/Abidjan", | |
| "offset":"+00:00" | |
| }, | |
| { | |
| "name":"Africa/Accra", | |
| "offset":"+00:00" | |
| }, | |
| { |
| 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')); |