Skip to content

Instantly share code, notes, and snippets.

View white-hat-vaibhs's full-sized avatar
:octocat:
coding

Vaibhav soni white-hat-vaibhs

:octocat:
coding
View GitHub Profile
/**
* Extracts email addresses from sent emails ("from:me") and writes them to a Google Sheet.
*
* This script processes Gmail threads in batches, extracts unique email addresses
* from the "To" field, and appends them to a Google Sheet. It also supports resuming
* from the last processed thread, enabling efficient handling of large email volumes.
*
* Author: Vaibhav Jain
* GitHub: https://github.com/white-hat-vaibhs
*/
@white-hat-vaibhs
white-hat-vaibhs / LinkedList.js
Last active October 10, 2021 01:05
JS LinkedList
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
class LinkedList {
constructor() {
this.head = null;