OMV (openmediavault) is an open source NAS operating system based on Debian. If you're not familiar with it, head here and check it out.
This tutorial assumes basic knowledge of Linux and root access to your OMV server. Lets get started.
Installing OpenVPN (as root)
apt-get install openvpn
After installing OpenVPN, you'll want to obtain the VPN certificate files. These should be provided to you by your VPN provider. My personal recommendation is PIA. If you choose to utilize PIA, you can download the necessary files here.
At this point you'll want to transfer the certificate files over to your …
ESSNet is a program that was developed by Dr. Lim et al. at the University of Singapore for studying relationships between entities in biological pathways.
Install Homebrew if you don't have it installed already. The instructions on their website should suffice.
The first package we will install is R. In order to gain access to the R installer under homebrew, you need to add the following repository.
brew tap homebrew/science
Once the repository is added run the following command. The prompts during the installation will guide you through the necessary steps.
brew install r
Once you have R installed …
If you do any of your dynamic web development in Django, maintaining separate settings files for your production and development environments is essential. Here I will detail my setup for this process.
1. Create two files called settings_local.py and settings_production.py for your development environment and production environment respectively.
2. In both files, put in the respective Django settings you need. For example in development you might be using SQLite3 as your database but in production you would use PostgreSQL and therefore the database settings would be different.
3. Next, in your settings.py put in the following code …
Read more →Read more →We are what we repeatedly do. Excellence then, is not an act but a habit. -Aristotle