Disable isatap teredo and 6to4 on Windows 7-8-10

To disable isatap and the teredo tunneling adapter on Windows 7 / 8 / 10, run the dos terminal as administrator (cmd.exe), and run:

netsh int ipv6 isatap set state disabled
netsh int ipv6 6to4 set state disabled
netsh interface teredo set state disable

Ramon.js in TypeScript

After a presentation about TypeScript last week at Code by the Sea, I`ve decided to make Ramon.js from now on in TypeScript.

This means that the main file will be ramon.ts which will render ramon.js (and ramon.min.js)

Bash 4.4 installation for Linux

This guide is for almost every Linux distribution.

Prerequisite is that you have the required build tools installed already.

If not, do the following step:

Debian and Ubuntu users way;

sudo apt-get install build-essential

The Fedora/Red Hat way:

sudo yum groupinstall "Development Tools" "Legacy Software Development"

First step is getting the source package

wget http://ftp.gnu.org/gnu/bash/bash-4.4.18.tar.gz

Next step is compiling and installing it;

tar xf bash-4.4.4.18.tar.gz
cd bash-4.4*
./configure
make
sudo make install
sh