Skip to content

Instantly share code, notes, and snippets.

View Iamsheye's full-sized avatar
💭
Interested in Open Source

Majekodunmi Oluwaseye Iamsheye

💭
Interested in Open Source
View GitHub Profile
@LordGhostX
LordGhostX / contacts.js
Last active November 30, 2021 01:55
Scrape Unsaved Contacts from WhatsApp
function saveContacts() {
var contacts = document.querySelectorAll("._ccCW.FqYAR.i0jNr");
for (var i = 0; i < contacts.length; i++) {
var contact_name = contacts[i].title;
if (contact_name[0] == "+" && unsaved_contacts.find(e => e == contact_name) == null) {
unsaved_contacts.push(contact_name);
}
}
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 22, 2025 04:18
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites