Installing Ubuntu with VirtualBox Before getting started with VirtualBox, you are going to have to grab a fresh copy of Ubuntu from their main site. Get a version that has LTS(Long term support). After the download is complete, you should have a file named … [Read more...] about How to install Ubuntu Server
JSecademy
How to install VirtualBox in Ubuntu / Linux
Start by going over to the main site for VirtualBox Downloads and selecting the following option VirtualBox 5.0 for Linux hosts. This link will take you to a selection for what type of Linux version you are using. In my case, I'm using an Ubuntu-based system. This … [Read more...] about How to install VirtualBox in Ubuntu / Linux
How to install VirtualBox in OS X El Capitan
OSX Start by going over to the main site for VirtualBox Downloads and selecting the following option VirtualBox 5.0 for OS X hosts this starts a download with a file name VirtualBox-5.*.dmg double-click the file and follow the setup wizard. This will require your … [Read more...] about How to install VirtualBox in OS X El Capitan
How to install VirtualBox in Windows
Windows Start by going over to the main site for VirtualBox Downloads and selecting the following option VirtualBox 5.0 for Windows hosts. This starts a download with a file name VirtualBox-5.*.exe. Double-click the file and follow the setup wizard. This will … [Read more...] about How to install VirtualBox in Windows
Introduction to Virtual Environments
Virtual Environment The main benefits of having and virtual environment to develop your application outside of having it installed on your main machine are that it gives you the power to experiment and try different experiments without necessarily having an … [Read more...] about Introduction to Virtual Environments
How to set up Local Ubuntu / Linux Machine for JavaScript Development
Modern Web browsers Most modern operating systems support the ability for you to install and setup a browser. If you are running windows then IE is pre-installed, if you running Linux you might get Chrome or Midori for OSX users you will have Safari … [Read more...] about How to set up Local Ubuntu / Linux Machine for JavaScript Development
How to set up Local OS X El Capitan Machine for JavaScript Development
Modern Web browsers Most modern operating systems support the ability for you to install and setup a browser. If you are running windows then IE is pre installed, if you running Linux you might get Chrome or Midori for OSX users you will have Safari pre … [Read more...] about How to set up Local OS X El Capitan Machine for JavaScript Development
How to set up Local Windows Machine for JavaScript Development
Most modern operating systems support the ability for you to install and setup a browser. If you are running windows then IE is pre-installed, if you running Linux you might get Chrome or Midori for OSX users you will have Safari pre-installed. The rest of this … [Read more...] about How to set up Local Windows Machine for JavaScript Development
Introduction to Local Environments
One of the great things about working with JavaScript is that you don't need to have a complex development environment. Most modern computers have a web browser and a pre-installed text editor which is all you need to start to program using JavaScript. In this … [Read more...] about Introduction to Local Environments
How to setup Linux Environment Variables (Create, Read, Update, Delete)
Variable Location Linux The default location for custom environmental variables in Linux is the .bash_profile file. ~/.bash_profile To list all the variables that are being used by your system use the printenv command. ➜ ~ … [Read more...] about How to setup Linux Environment Variables (Create, Read, Update, Delete)