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
@rashed-jitu
rashed-jitu / nginx.default.conf
Created March 8, 2018 05:59 — forked from sumardi/nginx.default.conf
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 \
@rashed-jitu
rashed-jitu / findItemAllIndexes.js
Last active September 11, 2016 07:13
Find all indexes of an item of an array with javascript(js)
var array = ['hi','asdfa','ti' , 'rad' , 'hi' , 'asasd' , 'hi'];
function itemIndexs(array){
this.array = array;
this.findIndexs = function(item){
var tempArray = this.array , indexes = [];
while(tempArray.indexOf(item) >= 0){
var firstOcarence = tempArray.indexOf(item) , lastOcarence = tempArray.lastIndexOf(item);
if(firstOcarence == lastOcarence){
indexes.push(firstOcarence + 1);
tempArray[firstOcarence] = null;