Watch the installation guide video
sudo apt-get update
Install playonlinux - a graphical tool that simplifies the installation of Windows applications using Wine.
Watch the installation guide video
sudo apt-get update
| #!/bin/bash | |
| #================================================================ | |
| # Let's Encrypt renewal script for Apache on Ubuntu/Debian | |
| # @author Erika Heidi<[email protected]> | |
| # Usage: ./le-renew.sh [base-domain-name] | |
| # More info: http://do.co/1mbVihI | |
| #================================================================ | |
| domain=$1 | |
| le_path='/opt/letsencrypt' | |
| le_conf='/etc/letsencrypt' |
| // XPath CheatSheet | |
| // To test XPath in your Chrome Debugger: $x('/html/body') | |
| // http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/ | |
| // 0. XPath Examples. | |
| // More: http://xpath.alephzarro.com/content/cheatsheet.html | |
| '//hr[@class="edge" and position()=1]' // every first hr of 'edge' class |