Skip to content

Instantly share code, notes, and snippets.

View david-romero's full-sized avatar
🎯
Focusing

David Romero david-romero

🎯
Focusing
View GitHub Profile
@tafarij
tafarij / install-pulse.sh
Created April 22, 2017 13:05
Install Pulse Secure on Ubuntu 16.04
# https://vt4help.service-now.com/kb_view_customer.do?sysparm_article=KB0010740#linux
wget https://secure.nis.vt.edu/resources/downloads/pulse-8.2R5.i386.deb
sudo dpkg –i pulse-8.2R5.i386.deb
/usr/local/pulse/PulseClient.sh install_dependency_packages
@renshuki
renshuki / ubuntu_agnoster_install.md
Last active July 11, 2024 15:06
Ubuntu 16.04 + Terminator + Oh My ZSH with Agnoster Theme

Install Terminator (shell)

sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator

Terminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").

Install ZSH

@chrisross
chrisross / curl_delete_repo_bitbucket
Created April 28, 2013 05:01
A shell command for deleting a Bitbucket repository (using cURL and BitBucket's Repositories API v1)
curl -u <username_here> https://api.bitbucket.org/1.0/repositories/<username_here>/<repo_slug> -X DELETE