Skip to content

Instantly share code, notes, and snippets.

View jovib's full-sized avatar
🤘
Awesome!!

Joel Villalobos jovib

🤘
Awesome!!
View GitHub Profile
@jovib
jovib / gist:3cb305a1a35dc150003d
Last active October 15, 2015 17:06 — forked from ghafran/gist:20e339c4bf9e2bfc3652
install webrtc2sip on ubuntu
#!/bin/bash
#http://linux.autostatic.com/installing-webrtc2sip-on-ubuntu-1204#install_packages
sudo -i
# install
apt-get update
apt-get install -y python-software-properties
add-apt-repository ppa:autostatic/doubango
@jovib
jovib / DB.sql
Created April 10, 2014 15:15 — forked from msurguy/DB.sql
dropdown dynamic in laravel
CREATE TABLE `makers` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
@jovib
jovib / install.sh
Last active December 16, 2015 11:49 — forked from cloud8421/install.sh
INSTALL TMUX 1.6
wget -q -O - https://raw.github.com/gist/2204072/install_tmux_1.6_on_ubuntu_10.04.sh | sudo bash