Puntos | Resumen | Solución | Esfuerzo |
---|---|---|---|
1 | Insignificante, cambio de una linea, typo | Obvia, cero incertidumbre | Simple, podría hacer muchos de estos por día. |
2 | Cambio mínimo, cambios de configuración | Conocida, casi nada de incertidumbre | Bastante fácil, un code re view para checkear rápido |
3 | Pequeño, un feature específico, investigación o colaboración con otros equipos insignificante | Generalmente conocida, poca incertidumbre | Voy a necesitar enfocarme, requiere code review y tests con esfuerzo, necesita una sesión de concentración. |
5 | Feature compleja, requiere muy poca investigación o colaboración con otros equipos | Tengo una idea, investigación limitada a conocida incertidumbre | La complejidad o cantidad de trabajo requiere un par de sesiones de concentración |
8 | Feature compleja o grande, requiere un poco de investigación | El concepto y los objetivos son conocidos, la solución requiere **u |
This file contains 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
#!/bin/bash | |
# Script to change all the workspaces to the selected monitor | |
# | |
# Requirements: | |
# [Rofi](https://github.com/davatorium/rofi) | |
# [jq](https://jqlang.github.io/jq/) | |
display=$(echo -e "$(xrandr --listmonitors | awk 'NR > 1 {print $NF}')" | rofi -theme Pop-Dark -dmenu -multi-select ) | |
if [ -z "$display" ]; then |
This file contains 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
#!/bin/bash | |
# Create a new session called "💻🔥" | |
tmux new-session -d -s 💻🔥 | |
# Crate the first window and run vim | |
tmux new-window -t 💻🔥:1 -n "NOTES" | |
#Open vim with the last note | |
tmux send-keys "v ~/Notes/$(ls /home/pablo/Notes | sort | tail -n 1)/$(ls ~/Notes/$(ls /home/pablo/Notes | sort | tail -n 1) | sort | tail -n 1)" C-m | |
# Crate the second one |