Skip to content

Instantly share code, notes, and snippets.

View huyhoang8398's full-sized avatar
🐧
Tux Ta Tux Tax

Do Hoang huyhoang8398

🐧
Tux Ta Tux Tax
View GitHub Profile
@huyhoang8398
huyhoang8398 / nvim-indentation.txt
Created August 16, 2023 11:33 — forked from ericdouglas/super-tip.txt
Change 4 spaces to 2 spaces indentation and change tab to spaces - Vim tip
// 4 spaces to 2 spaces
%s;^\(\s\+\);\=repeat(' ', len(submatch(0))/2);g
// Tab to 2 spaces
:%s/\t/ /g
@huyhoang8398
huyhoang8398 / amazon-ec2-ftp.md
Created January 25, 2023 10:08 — forked from gunjanpatel/amazon-ec2-ftp.md
amazon ec2 LAMP and FTP installation and setup
@huyhoang8398
huyhoang8398 / php-docker-ext
Created January 10, 2023 15:37 — forked from hoandang/php-docker-ext
Complete list of php docker ext
RUN apt update
RUN apt upgrade -y
RUN apt install -y apt-utils
RUN a2enmod rewrite
RUN apt install -y libmcrypt-dev
RUN docker-php-ext-install mcrypt
RUN apt install -y libicu-dev
RUN docker-php-ext-install -j$(nproc) intl
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/