Other articles


  1. Road Warrior VPN

    This is a dead simple way to get an OpenVPN server up and going with individual client certificates.

    wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh
    
    #!/bin/bash
    #
    # https://github.com/Nyr/openvpn-install
    #
    # Copyright (c) 2013 Nyr. Released under the MIT License.
    
    
    # Detect Debian users running the …
    read more
  2. C++

    These posts will be various lessons and lessons learned as I start learning how to program in C++. My first experiences programming started in Windows batch files and then in high school I was introduced to Perl. While it could be argued that neither batch or Perl are "real programming …

    read more