Recently Updated Pages
NestJS - Commands
nest new backend nest generate service GitHub nest generate module GitHub #-----------------...
Guia para instalar y configurar docker en un vps server para desplegar web apps
Actualizar el sistema sudo apt update sudo apt upgrade Instalar Uncomplicated Firewall (UFW) sud...
Utils Commands - .NET
dotnet new webapi # Minimal version dotnet new web dotnet new list dotnet new gitignore...
Flutter - commands
flutter pub get flutter run
React - HOC (Higher Order Component)
import React, {ReactElement} from 'react'; const withAds = (Component: React.ComponentType) =&...
React Native - Agregar Splash Screen
https://www.netguru.com/codestories/react-native-splash-screen https://www.npmjs.com/package/rea...
Remove node_modules
# -- Linux # Print out a list of directories to be deleted: find . -name 'node_modules' -type d...
React Native - APK release
https://reactnative.dev/docs/signed-apk-android #Generating an upload key keytool -genkeypair...
React Native - Tips para reducir el tamaño del apk
https://medium.com/@aswinmohanme/how-i-reduced-the-size-of-my-react-native-app-by-86-27be72bba640...
Docker - Comandos básicos
# Para crear imagen a partir del Dockerfile del directorio actual docker build -t nombre_imagen ...
Regex
Email - General Email Regex (RFC 5322 Official Standard) (?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\...
Useful commands
psql -h localhost -p 3700 -U postgres < backup_date-15-04-2022_00-00-00-production.sql #Para ...
CSS Grid
.itemsContainer { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, 400p...
CSS - Tricks
& .breadcrumbs-container .breadcrumb span { overflow: hidden; white-space: ...
Ruby on Rails - Commands
# install ruby on rails gem install rails bundle install rails new first-api --api --datab...
Running test (jest) node.js on Windows
node ./node_modules/jest/bin/jest.js --runInBand
Linux - Cron Tabs
# Ubuntu cron tab file location: # /var/spool/cron/crontabs/ # list crontabs crontab -l #...
SSH Config
ssh-keygen -t rsa -b 4096 -C "[email protected]" eval "$(ssh-agent -s)" ssh-add ~/.ssh...
React - Testing
React - Optimize Performance
Case 1 - Preventing Wasted Renders with Complex Props Create new object reference before delete ...