Skip to content

Instantly share code, notes, and snippets.

View michaelwhyte's full-sized avatar

Michael Whyte michaelwhyte

View GitHub Profile
@michaelwhyte
michaelwhyte / batch-delete-gmail-emails.js
Created August 1, 2019 04:49 — forked from gene1wood/batch-delete-gmail-emails.js
A Google Apps Script script to bulk delete large amounts of email in Gmail while avoiding the error #793 which Gmail encounters normally
/*
This script, when used with Google Apps Scripts will delete 500 emails and
can be triggered to run every minute without user interaction enabling you
to bulk delete email in Gmail without getting the #793 error from Gmail.
Configure the search query in the code below to match the type of emails
you want to delete
Browser to https://script.google.com/.
Start a script and paste in the code below.
After you past it in, save it and click the little clock looking button.
@michaelwhyte
michaelwhyte / gulpfile.js
Last active September 4, 2019 23:22
Gulpfile for TWD Projects
// Gulpfile for TWD Projects - version 1.0.0
// Created by: Michael Whyte
// This Gulpfile is modified from code found here:
// https://github.com/thecodercoder/frontend-boilerplate
// *** IMPORTANT *** This Gulpfile requires Gulp version 4
// Initialize modules
// Import gulp specific API functions which allows us to write them
@michaelwhyte
michaelwhyte / settings.json
Created September 14, 2020 21:05
Enable Emmet in React JS Component File in VS Code
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}
@michaelwhyte
michaelwhyte / gulp-cjs-to-esm.md
Last active November 8, 2022 22:47 — forked from noraj/gulp-cjs-to-esm.md
Moving gulpfile from CommonJS (CJS) to ECMAScript Modules (ESM)