Skip to content

Instantly share code, notes, and snippets.

View Rnbsov's full-sized avatar
🍇
Just studying now

Lavrentiy Rubtsov Rnbsov

🍇
Just studying now
View GitHub Profile
@jamesob
jamesob / install-steps.sh
Last active November 10, 2025 09:17
Getting to Android and react-native development in Arch Linux (2024)
# This (very scant) guide allows you to do Android and react-native development on Linux by
# running the android emulator in a container.
# install yay via AUR
git clone https://aur.archlinux.org/yay.git && cd yay && makpkg -si
# install all android dev packages per https://wiki.archlinux.org/title/Android
yay -Sy android-sdk-cmdline-tools-latest android-sdk-build-tools android-sdk-platform-tools android-platform
# add to .zshrc
@micalevisk
micalevisk / Dockerfile
Last active August 19, 2025 17:35
Production Dockerfile example for NestJS projects.
## ===========================================================> The common stage
FROM node:16.14 AS base
ENV NODE_ENV=production
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
## Remove unnecessary files from `node_modules` directory