Akamai Whitelist IP Address

Refer: https://youtu.be/tkBuT7d_TF4

Sample White Listed IPs

Steps to Reach IP Lists:

  1. Configure, Network List Management
  2. "Search Network Lists" with "holland"

Currently as of 01/22/2018 3 Lists :

  • Holland IP Bypass List - Contains VPN for example, these IPs will bypass the WAF
  • Reputation Whitelist (Holland) - Currently Empty, will white list IPs that have a bad reputation
  • Holland Partner IP List (Bot Manager) - Majority of IPs here, and these will automatically put this into “monitor mode” and NOT block them

WD TV Live Streaming Media Player

Clear Thumbnails and then recycle power, turn off for 30 seconds and power on again:

Setup > System > Media Library > Clear Media Library

Also, default setting only has re-index when device is in standby mode

Get a list of Google Photo Folder Names

Go to https://photos.google.com and run from the browser console

Remove the quotes around the resulting string and import as a spreadsheet separated by tabs.

Refer: https://webapps.stackexchange.com/questions/90614/how-can-i-get-a-list-of-albums-in-google-photos

List of Folder Names

var links = document.getElementsByTagName('A'); 
var s = ''; 
for (var i = 0; i< links.length; i++) {
 if (/\b(album|share)\b/.test(links[i].href)) {
 var albumName = links[i].children[1].children[0].innerText;
 s = s + albumName + '\t' + links[i].href + '\n';
 }
}

List of Shared Albums

var links = document.getElementsByTagName('A'); 
var s = ''; 
for (var i = 0; i< links.length; i++) {
 if (/\b(album|share)\b/.test(links[i].href)) {
 s = s + links[i].innerText + '\t' + links[i].href + '\n';
 }
}

 

Backup iTunes to an External Drive

How to move your iPhone ... PDF

Refer: https://lifehacker.com/back-up-your-iphone-to-an-external-hard-drive-with-a-te-1762962368

Original Location of Files
/Users/mruckman/Library/Application Support/MobileSync/Backup

Location on External Drive
/Volumes/Passport/ios_backup

Using Home Passport External Drive

ln -s /Volumes/Passport/ios_backup /Users/mruckman/Library/Application Support/MobileSync/Backup

Using Work WD Elements External Drive

ln -s /Volumes/Elements/ios_backup /Users/mruckman/Library/Application Support/MobileSync/Backup

Installing Handbrake Ubuntu 14.04

Refer: https://launchpad.net/~stebbins/+archive/ubuntu/handbrake-releases

From a terminal do the following three steps, Had to do step one to purge, logout and finish the other two steps

Remove any old versions:
$ sudo apt-get purge handbrake # remove any old versions

$ sudo add-apt-repository ppa:stebbins/handbrake-releases
$ sudo apt-get update
$ sudo apt-get install handbrake-gtk

The command line interface:
$ sudo apt-get install handbrake-cli

/media/Cavalry2T/DVD's/Joseph

Install QDirStat Directory Usage Utility

Install the following package:

$ sudo add-apt-repository ppa:nathan-renniewaldock/qdirstat
$ sudo apt-get update
$ sudo apt install qdirstat

Refer: https://www.makeuseof.com/tag/how-to-analyze-your-disk-usage-pattern-in-linux/

Remove / Uninstall VirtualBox from Ubuntu

Refer: https://askubuntu.com/questions/703746/how-to-completely-remove-virtualbox

$ sudo apt-get remove --purge virtualbox

Run these commands to delete all virtual machines and settings and Virtual Hard Drives:

$ sudo rm ~/"VirtualBox VMs" -Rf
$ sudo rm ~/.config/VirtualBox/ -Rf

If you want to install it again. Run this command:
$ sudo apt-get install virtualbox