Skip to content

Instantly share code, notes, and snippets.

@ayhc
ayhc / miyota9075.md
Last active April 8, 2024 12:33
List of watches with the Miyota 9075 GMT movement
@ayhc
ayhc / Bellend Blocker v2.gs
Last active April 30, 2021 14:15
A simple, kludgey bellend blocker Google Apps Script for Gmail (trash or completely delete emails by label).
//A simple, kludgey bellend blocker, for Google Apps Script. Use in conjunction with Gmail email filters.
//Loosely based on work by boly38: https://stackoverflow.com/questions/36377391/script-to-permenantly-delete-my-emails-with-google-script
//No rights reserved.
function bellendBlocker() {
Logger.log ('Starting Bellend Blocker...')
//Basic settings: which email address, what label, what to do with matching emails
var mymail = [PUT YOUR EMAIL ADDRESS HERE];
var mylabel = [PUT YOUR EMAIL LABEL HERE];
var purgeNotDelete = [TRUE OR FALSE];