MENU

Script For Showing Menu in Sublime Text 3

by 11:07 PM
undefined
At the point of writing this entry, Sublime Text has reached build 3059. I installed this awesome little program and accidentally hide the menu bar and this action is irreversible, at least not by pressing shortcut keys or right clicking. Luckily we can show the menu bar again by using this script: #!/bin/sh # ~/bin/subl_menu_visible.sh - Show/hide Sublime Text 3 Menu if [ "$1" = "true" ] then echo "Turninng ON menu_visible" elif [ "$1" = "false" ] then echo "Turninng OFF menu_visible"

Speedtest in Linux Terminal

by 3:25 AM
Using web based speed test is too mainstream? How about testing your internet connection speed in terminal? Sounds geeky right. Here's how: Install python-pip: sudo apt-get install python-pip Install speedtest-cli: sudo pip install speedtest-cli To run the speedtest, just type in 'speedtest' in your terminal and wait for the result.

Installing Metasploit in Linux Mint

by 10:32 PM
Happy New Year! So this is the first post for this year and this guide can be applied to other Debian based GNU/Linux distros out there. For the sake of this tutorial, I'll just use my Linux Mint 16. Installing Dependencies Firstly, you might want to install several packages needed by Metasploit. Open up Terminal and update your system: sudo apt-get update sudo apt-get upgrade Then, install the following packages: sudo apt-get install build-essential libreadline-dev  libssl-dev libpq5 libpq-dev libreadline5 libsqlite3-dev libpcap-dev openjdk-7-jre subversion