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

Block or report white-hat-vaibhs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. JS LinkedList JS LinkedList
    1
    class Node {
    2
        constructor(data, next = null) {
    3
            this.data = data;
    4
            this.next = next;
    5
        }
  2. gmail-email-extractor.gs gmail-email-extractor.gs
    1
    /**
    2
     * Extracts email addresses from sent emails ("from:me") and writes them to a Google Sheet.
    3
     * 
    4
     * This script processes Gmail threads in batches, extracts unique email addresses
    5
     * from the "To" field, and appends them to a Google Sheet. It also supports resuming
  3. Node.Js-Whatsapp-Bulk-Messaging Node.Js-Whatsapp-Bulk-Messaging Public

    This repository contains a WhatsApp Automation Bot built using Selenium WebDriver and Node.js. The bot is designed to send personalized messages to contacts listed in a CSV file. It automates the p…

    JavaScript