SSH Fails to Connect

Symptom

sign_and_send_pubkey: signing failed for RSA

Solution, make sure your ~/.ssh/id_rsa has the proper permissions, it should be read/write for the owner and none for anyone else.

Mac Chrome Fresh

Create a bash file, something like "chrome-fresh.sh" with the following, it will randomize a file for a new user profile in your temp folder

#!/bin/bash
tfile=$(mktemp /tmp/chrome.XXXXXXXXX)
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=/tmp/$tfile

Or Launch a Single browser, delete the temp folder when you want a fresh one.

cd /tmp
rm -rf james_bonds_browser
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir="/tmp/james_bonds_browser"

If you launch a chrome fresh grab yourself some plug-ins if you need them.

Akamai Headers

Install Akamai Headers Extension

Script Blocker Ultimate

Install Script Blocker Extension

Add these to Request Blocker in Script Blocker Ultimate

Adobe DTM Scripts

*://assets.adobedtm.com/*
*://carnivalbrands.tt.omtrdc.net/*

Tracking Scripts

*://col.eum-appdynamics.com/*
*://ad.doubleclick.net/*
*://r.turn.com/*
*://insight.adsrvr.org/*
*://5955407.fls.doubleclick.net/*
*://p11.techlab-cdn.com/*
*://173e2529.akstat.io/*
*://cdn.mouseflow.com/*
*://n2.mouseflow.com/*

If you just want to use the built-in script blocker for chrome without a plug-in

assets.adobedtm.com
carnivalbrands.tt.omtrdc.net
col.eum-appdynamics.com
ad.doubleclick.net
r.turn.com
insight.adsrvr.org
5955407.fls.doubleclick.net
p11.techlab-cdn.com
173e2529.akstat.io

MD5SUM – Checksum on Linux

Use the following command to get a checksum

md5sum html/path/file.php

Create a file of checksums for future verification, here's just one file create a batch job to create lots of files instead.

md5sum html/path/file.php > md5sum_input.txt

Now check the md5 keys again, using md5sum_input.txt

md5sum -c md5sum_input.txt

Opt Out Advertising

Refer: https://www.pushspring.com/optout.html

T-Mobile has hidden the. DO NOT SELL Link and you have to opt-in to DO NOT SELL.

Use this link: https://www.t-mobile.com/dns?brand=Magenta&site=Sell_App&origin_url=www.t-mobile.com%2Fprivacy-center#

PushSpring develops and utilizes technology that allows for collection of personally identifiable information associated to end user devices via pseudonymous, resettable device advertising IDs on devices that support advertising IDs, to create aggregated interest and behavior-based targeting segments, to drive targeted advertising campaigns, and to perform analytics services for our customers.

Install SQLite Browser

It looks like my SQLite Browser Got Updated to Snap, and it was using the development branch and NOT the stable branch. Here are some of the snap tricks you can use to see what's installed, what's available and to fix things.

See what you are using
$ which sqlitebrowser

See what snap versions you have local
$ snap list sqlitebrowser --all

See what versions are available
$snap info sqlitebrowser

Revert a local version
$ sudo snap revert sqlitebrowser --revision 2851

Uninstall and Install Stable Version
$ sudo snap remove sqlitebrowser
$ sudo snap install sqlitebrowser --channel=latest/stable

Has a nice Query Builder

$ sudo apt-get update
$ sudo apt-get install sqliteman

SQLiteStudio
Refer: https://sqlitestudio.pl

SQLiteBrowser
Refer: https://linuxhint.com/install-sqlite-browser-ubuntu/

Install
$ sudo add-apt-repository ppa:linuxgndu/sqlitebrowser-testing
$ sudo apt-get update && sudo apt-get install sqlitebrowser

Remove
$ sudo apt-get remove sqlitebrowser