Skip to content

Instantly share code, notes, and snippets.

View carlosvillu's full-sized avatar
🏠
Working from home

Carlos Villuendas Zambrana carlosvillu

🏠
Working from home
View GitHub Profile
#!/bin/bash
function csview {
local file="$1"
cat "$file" | sed -e 's/,,/, ,/g' | column -s ";" -t | less -#5 -N -S
}
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
javascript:(function(){ try { let cls = 0; const canvas = document.createElement('canvas'); canvas.style.width = '100%'; canvas.style.height = '100%'; canvas.width = window.innerWidth; canvas.height = window.innerHeight; canvas.style.position = 'absolute'; canvas.style.left = 0; canvas.style.top = 0; canvas.style.zIndex = 100000; canvas.style.pointerEvents = 'none'; document.body.appendChild(canvas); const context = canvas.getContext('2d'); const po = new PerformanceObserver((list) => { canvas.style.transition = 'opacity 0s'; canvas.style.opacity = 1; context.clearRect(0, 0, canvas.width, canvas.height); for (const entry of list.getEntries()) { if (!entry.hadRecentInput && entry.value >= 0.0025) { cls += entry.value; let consoleGroup = `%cTotal CLS value: ${cls}`; let styles = ''; if (cls >= 0.1) { styles = 'color: red;'; } console.group(consoleGroup, styles); consol
#!/bin/bash
# =============================================================================
# HETZNER VPS SETUP SCRIPT FOR PONDER DEVELOPMENT
# =============================================================================
# Este script automatiza la configuración completa de un VPS nuevo de Hetzner
# para desarrollo con Ponder, siguiendo las mejores prácticas de seguridad.
#
# Uso: curl -sSL https://raw.githubusercontent.com/tu-repo/setup.sh | bash
# O: wget -O - https://raw.githubusercontent.com/tu-repo/setup.sh | bash
@carlosvillu
carlosvillu / Readme.md
Created October 23, 2025 16:53
Monitor Tech Debt

@s4l/tech-debt

A CLI tool to track and monitor technical debt reduction progress in monorepo projects by analyzing ESLint violations and sending metrics to Datadog.

Motivation

Technical debt is inevitable in software projects. While ESLint helps identify code quality issues, it doesn't provide visibility into the progress of fixing them over time. This tool bridges that gap by:

  • Tracking progress: Monitor how many files still violate specific ESLint rules
  • Measuring impact: Calculate the percentage of affected files (affectation rate)