Skip to content

Instantly share code, notes, and snippets.

View ridharezzag's full-sized avatar
🏠
Working from home

RidhaRezzag ridharezzag

🏠
Working from home
View GitHub Profile
@helpsquad
helpsquad / helpsquad_ffmpeg.sh
Last active June 26, 2018 02:27
Installs latest ffmpeg on Centos 6
#script used on serversquad servers -> www.serversquad.eu
yum install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel -y
yum install ruby rubygems -y
#install flvtool2
gem install flvtool2
#install yamdi
cd /usr/local/src
wget https://sourceforge.net/projects/yamdi/files/yamdi/1.9/yamdi-1.9.tar.gz
@manjeshpv
manjeshpv / passport.js
Last active February 29, 2024 15:11
Passport.js using MySQL for Authentication with Express
// config/passport.js
// load all the things we need
var LocalStrategy = require('passport-local').Strategy;
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',