Skip to content

Instantly share code, notes, and snippets.

View maravilhosinga's full-sized avatar

Maravilho Singa maravilhosinga

View GitHub Profile
@maravilhosinga
maravilhosinga / index.html
Created January 6, 2019 15:39
International Telephone Input - BOOTSTRAP INPUT GROUP
<h1>International Telephone Input - BOOTSTRAP INPUT GROUP</h1>
<form>
<div class="input-group">
<input type="tel" class="form-control">
<span class="input-group-addon">Tel</span>
</div>
<br>
<div class="input-group">
<input type="tel" class="form-control">
<span class="input-group-addon">Tel</span>
@maravilhosinga
maravilhosinga / gist:8d0c123e1fd191a5b89fa70b210dc56c
Created March 6, 2018 17:21 — forked from seanmcn/gist:62a021a765ad4f8e593b
The Perfect Web Server - Nginx, Ajenti, Ubuntu
#Insall Ajenti
apt-get update
wget http://repo.ajenti.org/debian/key -O- | apt-key add -
echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list
apt-get update
apt-get install ajenti
service ajenti restart
# Uninstall Apache2
sudo apt-get autoremove && sudo apt-get remove apache2*