Node + TypeScript Initial setup mkdir typescript-starter cd typescript-starter Setup Node.js package.json
Astro files formatting Install the plugins pnpm/npm add/install -D prettier prettier-plugin-astro Paste this code into your file ".prettierrc.mjs" // .prettierrc.mjs
Send a message to Telegram Create a public channel in Telegram Create a bot chatting with "BotFather" Take the token provided after bot creation Make a fetch to Telegram API
React Native folder structure with Expo proyecto-app/ ├── .expo/ ├── .github/ # Configuración para CI/CD y GitHub Actions ├── assets/ # Recursos estáticos │ ├── fonts/ │ ├── images/ │ └── animations/ # Animaciones Lottie
Prettier config JSON for astro { "arrowParens": "always", "bracketSameLine": false, "objectWrap": "preserve", "bracketSpacing": true, "semi": true, "experimentalOperatorPosition": "end",
Add custom commands for iTerm + ZSH. Create new file and name .my_custom_commands.sh Add some functions e.g function ios() { open -a "Xcode" ~/Documents/iOS/MyiOSProject.xcodeproj }
Template para levantar contenedor en docker con PostgreSQL version: "3" services: myDB: image: postgres:latest container_name: my-database restart: always
Comandos para mantener pantalla activa al cerrar laptop desenchufada MacOS Ver configuración de hibernación pmset -g | grep hibernatemode Setear configuración para mantener pantalla activa sudo pmset -a sleep 0
Commands to find and kill ports running on MacOS View ports listening sudo lsof -nP -iTCP -sTCP:LISTEN View port listening on port provided lsof -i :3000