🔗 You’ve Got Mail!

Ah, email. How do I love thee? Let me count the ways.

None. Zero ways.

Pick an academic of your choice with a twitter. Search their username and the word “email.” Enjoy the snarky 2 to 7+ tweets that appear.

I’ve curated a few of my favorites here.

🔗 A Tale as Old as Time Itself

Or, at least, email itself.

Don Knuth — of complexity analysis & LaTeX fame — notoriously forswore email circa 1990.

Instead, his secretary collates messages for him to sort through, say, every six months or so. Really.

Interestingly, in the same breath, we can all also read Knuth’s Important Opinion about calling it “email” versus “e-mail.”

If only we could all have such wherewithal…

🔗 Staggered Email Delivery

Well, we can! (Kinda.)

No mere mortal is going to get away with checking email bi-annually, but it’s not too hard to to set up your Gmail inbox to only populate a few times a day.

Services like Adios promise to let you to set this up in just a few clicks, but when I tried about a month ago it was running into permission issues with Google.

Instead, I Google Scripts-ed together a homemade solution, inspired from here.

The idea is to

  1. set up a Gmail filter to automatically apply a tag to incoming emails and bypass the inbox,
  2. set up a regularly-scheduled job to grab all tagged emails that have piled up and move them into the inbox.

The original source has pretty good step-by-step instructions if you’re interested. Their crucial copy-paste code snippet appears to just be italicized text (containing instead of " characters — egad!), so here’s a properly-formatted snippet for your copy-paste pleasure.

function processHidden() {
 var label = GmailApp.getUserLabelByName("gmail-freeze-hidden");

 if (label) {
   var threads = label.getThreads();

   for (var i = 0; i < threads.length; i++) {
     var thread = threads[i];
     thread.moveToInbox();
     thread.removeLabel(label);
   }
 }

};

🔗 ListServ Pipe Dreams

How awesome would it be if our departments consolidated announcements into a weekly or daily digest instead of forwarding junk onto the listservs one-at-a-time?

Well, it turns out, you can set this up yourself! It’s easy to set up a separate, even-more-staggered pipeline for listserv email.

How? You can generally tell listserv email apart from other email by checking if you’re listed as a to: or cc: recipient. Listserv email is addressed to the listserv instead of your specific email. Then, just have the Gmail filter label listerv email with a special tag and run the job to push that tag into the inbox less often.

🔗 Mark Archived as Read

Another regularly-scheduled I can’t live without: automatically marking archived emails as read. That way I can swipe emails out of my Gmail inbox without having to take the time to open them to prevent them from piling up as unread. (Archiving lets you avoid permanently deleting them, too, in case you end up having to crawl back and search for them.)

Here’s another Google Script snippet for your copy-paste pleasure. Just attach it to a regularly-scheduled hook and all your archived emails will be marked read!

function markArchivedAsRead() {
  var threads = GmailApp.search('label:unread -label:inbox -label:gmail-freeze-hidden');
  GmailApp.markThreadsRead(threads);
};

🔗 Escape from Zoom Island

My top two favorite tweets on the subject both involve clever contraptions to end virtual meetings.

Zoom is the new email. `nuff said.

🔗 A Wireless Headset with Hardware Mute?

Univerally on blast: Zoom attendees who are not talking, but who are not on mute. Don’t be that attendee!

Zoom has a software mute feature, but this means you have to stay within reach of your Zoom device in order to be able to quickly jump into conversation. After a week or two of all zoom all the time, I started shopping around for a wireless headset with hardware mute capabilities.

This was surprisingly difficult to nail down. After spending longer than I’d care to admit aimlessly searching around, I settled on the Logitech H800 BLUETOOTH WIRELESS HEADSET.

I’ve had mine for more than a month now and I can confirm — the hardware mute works like a charm and is Zoom compatibile! I am much happier for being able to hike into the kitchen to fetch fresh Millenial Juice or even just stand up and pace around a little bit while being able to easily unmute and interject.

I found my H800 as decent deal used on ebay without a USB bluetooth receiver key included.

🔗 Let’s Chat

I would love to hear your thoughts on the zoom and email deluge!! What do you do to survive?

I started a twitter thread (right below) so we can chat :phone: :phone: :phone:

Pop on there and drop me a line :fishing_pole_and_fish: or make a comment :raising_hand_woman: