Skip to main content

Recently Updated Pages

NestJS - Commands

NestJS

nest new backend nest generate service GitHub nest generate module GitHub #-----------------...

Updated 1 year ago by Juan Navas

Guia para instalar y configurar docker en un vps server para desplegar web apps

DevOps

Actualizar el sistema sudo apt update sudo apt upgrade Instalar Uncomplicated Firewall (UFW) sud...

Updated 1 year ago by Juan Navas

Utils Commands - .NET

.NET

dotnet new webapi # Minimal version dotnet new web dotnet new list dotnet new gitignore...

Updated 1 year ago by Juan Navas

Flutter - commands

Flutter

flutter pub get flutter run

Updated 1 year ago by Juan Navas

React - HOC (Higher Order Component)

React

import React, {ReactElement} from 'react'; const withAds = (Component: React.ComponentType) =&...

Updated 2 years ago by Juan Navas

React Native - Agregar Splash Screen

React Native

https://www.netguru.com/codestories/react-native-splash-screen https://www.npmjs.com/package/rea...

Updated 2 years ago by Juan Navas

Remove node_modules

Node.js

# -- Linux # Print out a list of directories to be deleted: find . -name 'node_modules' -type d...

Updated 2 years ago by Juan Navas

React Native - APK release

React Native

https://reactnative.dev/docs/signed-apk-android #Generating an upload key keytool -genkeypair...

Updated 2 years ago by Juan Navas

React Native - Tips para reducir el tamaño del apk

React Native

https://medium.com/@aswinmohanme/how-i-reduced-the-size-of-my-react-native-app-by-86-27be72bba640...

Updated 2 years ago by Juan Navas

Docker - Comandos básicos

Docker

# Para crear imagen a partir del Dockerfile del directorio actual docker build -t nombre_imagen ...

Updated 2 years ago by Juan Navas

Regex

Regex

Email - General Email Regex (RFC 5322 Official Standard) (?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\...

Updated 2 years ago by Juan Navas

Useful commands

PostgreSQL

psql -h localhost -p 3700 -U postgres < backup_date-15-04-2022_00-00-00-production.sql #Para ...

Updated 2 years ago by Juan Navas

CSS Grid

CSS

.itemsContainer { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, 400p...

Updated 2 years ago by Juan Navas

CSS - Tricks

CSS

& .breadcrumbs-container .breadcrumb span { overflow: hidden; white-space: ...

Updated 2 years ago by Juan Navas

Ruby on Rails - Commands

Ruby on rails

# install ruby on rails gem install rails bundle install rails new first-api --api --datab...

Updated 2 years ago by Juan Navas

Running test (jest) node.js on Windows

Node.js

node ./node_modules/jest/bin/jest.js --runInBand

Updated 3 years ago by Juan Navas

Linux - Cron Tabs

Linux

# Ubuntu cron tab file location: # /var/spool/cron/crontabs/ # list crontabs crontab -l #...

Updated 3 years ago by Juan Navas

SSH Config

Git

ssh-keygen -t rsa -b 4096 -C "[email protected]" eval "$(ssh-agent -s)" ssh-add ~/.ssh...

Updated 3 years ago by Juan Navas

React - Testing

React

Updated 4 years ago by Juan Navas

React - Optimize Performance

React

Case 1 - Preventing Wasted Renders with Complex Props Create new object reference before delete ...

Updated 4 years ago by Juan Navas