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
| # Reinstalar extensiones de VSCode desde Gist | |
| # Autor: Luis Palacios | |
| # Gist: https://gist.github.com/LuisPalacios/9bccecf260cf4cc73d74fe9d500f7e94 | |
| $GistUrl = "https://gist.githubusercontent.com/LuisPalacios/9bccecf260cf4cc73d74fe9d500f7e94/raw/" | |
| Write-Host "Descargando lista de extensiones desde gist..." -ForegroundColor Cyan | |
| try { | |
| # Descargar el contenido del gist |
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
| #!/bin/bash | |
| # Reinstalar extensiones de VSCode desde Gist | |
| # Autor: Luis Palacios | |
| # Gist: https://gist.github.com/LuisPalacios/9bccecf260cf4cc73d74fe9d500f7e94 | |
| # | |
| # Uso: ./load_extensions_vscode_from_gist.sh [opciones] [binario] | |
| # Ejemplos: | |
| # ./load_extensions_vscode_from_gist.sh # Usa 'code' por defecto | |
| # ./load_extensions_vscode_from_gist.sh cursor | |
| # ./load_extensions_vscode_from_gist.sh --sync # Sincroniza (ofrece borrar extras) |
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
| alefragnani.project-manager | |
| anthropic.claude-code | |
| bierner.markdown-mermaid | |
| davidanson.vscode-markdownlint | |
| drblury.protobuf-vsc | |
| eamodio.gitlens | |
| firefox-devtools.vscode-firefox-debug | |
| formulahendry.code-runner | |
| foxundermoon.shell-format | |
| github.vscode-github-actions |
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
| # -------------------------------------------------------------------------------------------------------------- # | |
| # The apps below this line WILL be uninstalled by default. Add a # character in front of any app you want to # | |
| # KEEP installed by default. # | |
| # -------------------------------------------------------------------------------------------------------------- # | |
| Clipchamp.Clipchamp # Video editor from Microsoft | |
| Microsoft.3DBuilder # Basic 3D modeling software | |
| Microsoft.549981C3F5F10 # Cortana app (Voice assistant) | |
| Microsoft.BingFinance # Finance news and tracking via Bing (Discontinued) | |
| Microsoft.BingFoodAndDrink # Recipes and food news via Bing (Discontinued) | |
| Microsoft.BingHealthAndFitness # Health and fitness tracking/news via Bing (Discontinued) |
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
| #!/bin/bash | |
| set -euo pipefail | |
| # ============================================================================= | |
| # Script de apagado ordenado por UPS usando NUT (Network UPS Tools) | |
| # ============================================================================= | |
| # Este script se ejecuta autom谩ticamente desde el contenedor LXC `nut`, que act煤a | |
| # como servidor maestro (upsmon master). El contenedor est谩 directamente | |
| # conectado a la UPS por USB y monitoriza su estado en tiempo real. | |
| # |
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
| # Pi-hole 6 Whitelist | |
| # | |
| ## Dominios exactos | |
| ## ---------------------- | |
| # Fuente: https://raw.githubusercontent.com/FadeMind/hosts.whitelists/refs/heads/master/whitelist.FadeMind.txt | |
| adsmoloco.com | |
| analytics.google.com | |
| api.leanplum.com |
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
| [dns] | |
| upstreams = [ | |
| "208.67.222.222", | |
| "208.67.220.220" | |
| ] ### CHANGED, default = [] | |
| CNAMEdeepInspect = true | |
| blockESNI = true | |
| EDNS0ECS = true | |
| ignoreLocalhost = false | |
| showDNSSEC = 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
| # | |
| # Archivo gitattributes - definici贸n de atributos por la extensi贸n | |
| # | |
| # Ejemplo para desarrollo multiplataforma: Windows, Linux, MacOS | |
| # | |
| # Otras colecciones de archivos .gitattributes para los lenguajes de programaci贸n m谩s populares: https://github.com/gitattributes/gitattributes | |
| # | |
| # El objetivo es poder trabajar en entornos mixtos de Windows, Linux y MacOS | |
| # y permitir que Git gestione los finales de l铆nea en los archivos, logrando un comportamiento | |
| # consistente para todos los desarrolladores. Este archivo es una buena pr谩ctica para normalizar |
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 LuisPa | |
| # | |
| # +---------+ +----------+ +----------+ | |
| # |Laptop | | Mac | | PC (Win) | | |
| # |slimbook | | macmini | | kymera | | |
| # |cliente | | cliente | | SERVIDOR | | |
| # +---------+ +----------+ +----------+ | |
| # | |
| # |
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
| local green = "\x1b[92m" | |
| local yellow = "\x1b[93m" | |
| local cyan = "\x1b[36m" | |
| local normal = "\x1b[m" | |
| -- A prompt filter that discards any prompt so far and sets the | |
| -- prompt to the current working directory. An ANSI escape code | |
| -- colors it yellow. | |
| local cwd_prompt = clink.promptfilter(30) | |
| function cwd_prompt:filter(prompt) |
NewerOlder