Skip to content

Instantly share code, notes, and snippets.

View rashed-jitu's full-sized avatar

Rashedur Rahman Jitu rashed-jitu

  • Monstar Lab Bangladesh
  • Dhaka , Bangladesh.
View GitHub Profile
@Tawshif
Tawshif / bootstrap4-grid-mixin-only.scss
Last active April 24, 2018 06:15
Bootstrap4 grid system all mixins in a single file to use with bootstrap 3 or any scss based system
@at-root {
@-ms-viewport { width: device-width; } // stylelint-disable-line at-rule-no-vendor-prefix
}
html {
box-sizing: border-box;
-ms-overflow-style: scrollbar;
}
*,
@sumardi
sumardi / nginx.default.conf
Last active November 2, 2024 14:29
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \