Uninstall Carrier/OEM Bloatware Without Root Access

September 2nd, 2020

Here are some articles on how to uninstall carrier/OEM bloatware *without* root access.

How to Uninstall Carrier/OEM Bloatware Without Root Access
Remove ALL Bloatware from any Android Smartphone without Root

HP laptop won't charge

August 12th, 2020

Kim's laptop had a strange issue recently where it wouldn't charge.  Rebooting did not change the behavior and we tried multiple known good power supplies and cords.  I found an article that had some suggestions here:

Laptop plugged in not charging

Before trying some of the more drastic measures, I ended up unplugging it, shutting it down then holding the power button for a full minute.  After starting back up, it began charging again.

Dog Training

July 28th, 2020

Gazebo Screening Project

May 23rd, 2020

One of my upcoming projects will be to screen in the gazebo so we can have food out there without being devoured by bugs. 

Here is a link to a video explaining the process I plan to use.  The screen system is explained starting at 14:24.

Here is a link to heavy duty screening that is large enough to be used in the gazebo.

Mozilla Thunderbird New Mail Highlight

April 27th, 2020

I use Thunderbird as my mail client in many cases.  One of the things it does that I don't like is highlight folders with new mail with the color red.  To change this behavior, create a userChrome.css file in %AppData%\Thunderbird\Profiles\<your profile>\chrome with the following information:

 

/*
* Do not remove the @namespace line -- it's required for correct functioning
*/

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* set default namespace to XUL */

#folderTree > treechildren:-moz-tree-cell-text(isServer-true, biffState-NewMail)
{
font-weight: bold !important;
color: #3357DD !important;
}

#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true)
{
font-weight: bold !important;
color: #3357DD !important;
}