The office during the day has become the last place people want to be when then really want to get work done.
Offices have become interruption factories: it's just one interruption after
| diskutil list | |
| // finds out the location of your USB | |
| diskutil eraseDisk JHFS+ BackupMaster disk2 | |
| // Here the command diskutil eraseDisk does the erasing, format is expressed as JHFS+ which is the Mac OS Extended (Journaled) and disk is named BackupMaster and the actual target disk is defined by its identifier disk2. |
| pip install pyinstaller | |
| python3.7 -O -m PyInstaller -F --windowed hangman-osx-0-1.py | |
| ffi: https://pyinstaller.readthedocs.io/en/stable/usage.html |
| When you manually create a subdomain using Cpanel, it creates a new document root at the same level as your public_html folder. | |
| Since WordPress Multisite needs to have all subdomains use the same document root, you have to change the Document Root for your subdomain to "public_html" without the quotation marks. | |
| So if your multisite network is installed at mydomain.tld, and you manually add subdomain mysub.mydomain.tld via Cpanel, you have to then change the Document Root setting for mysub.mydomain.tld from "/mysub.mydomain.tld" to "public_html". |
| mkdir drupal | |
| cd drupal | |
| curl -sSL https://www.drupal.org/download-latest/tar.gz | tar -xz --strip-components=1 | |
| php core/scripts/drupal quick-start demo_umami |
| http://www.filewatcher.com/m/N47E008.hgt.zip.1471733-0.html |
| #First you update your system | |
| sudo apt-get update && sudo apt-get dist-upgrade | |
| #Upgrade from last release | |
| sudo do-release-upgrade | |
| #install elementary tweaks | |
| sudo apt-add-repository ppa:mpstark/elementary-tweaks-daily | |
| sudo apt-get update | |
| sudo apt-get install elementary-tweaks |
| #Download Elementary OS from here: | |
| #http://sourceforge.net/projects/elementaryos/files/stable/ | |
| #First you update your system | |
| sudo apt-get update && sudo apt-get dist-upgrade | |
| #Install Google Chrome | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |