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;
}

 

McMaster-Carr

March 26th, 2020

I've had a tab open for McMaster-Carr in my browser for years now for the one-off times I need to order hardware that they sell.  Time to save it off to my blog and close that tab out.

 

Speciality Products Vehicle Alignment

March 26th, 2020

This company (Specialty Products Company) produces custom alignment parts for vehicles that don't allow for a full range of adjustments.

TPMS Learn procedure on the SS

March 26th, 2020

Here is a link to a YouTube video detailing how to learn the TPMS system.

TPMS learn procedure video

Creating a basic web service

March 26th, 2020

Here is an article on creating a basic web service.

Create a Basic Web Service Using PHP, MySQL, XML, and JSON