Skip to content

Instantly share code, notes, and snippets.

View Siumauricio's full-sized avatar
❤️
I may be slow to respond.

Mauricio Siu Siumauricio

❤️
I may be slow to respond.
  • Honduras, San Pedro Sula
View GitHub Profile
@Siumauricio
Siumauricio / AdbCommands
Created November 13, 2023 00:35 — forked from ernestkamara/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@Siumauricio
Siumauricio / nvmCommands.js
Created October 27, 2023 21:27 — forked from chranderson/nvmCommands.js
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node
@Siumauricio
Siumauricio / recomendada.Dockerfile
Created June 9, 2023 09:36 — forked from Klerith/recomendada.Dockerfile
NextJS - Dockerfile - Configuración simple y recomendada
# Fuente: https://github.com/vercel/next.js/blob/canary/examples/with-docker/README.md
# Install dependencies only when needed
FROM node:16-alpine AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile