Skip to content

Instantly share code, notes, and snippets.

@Varp17
Varp17 / instahyre.js
Created October 15, 2025 15:29 — forked from imsks/instahyre.js
Apply for InstaHyre Jobs Automatically
// Step 1: Click the initial "View" button to open the modal
const viewButton = document.querySelector('#interested-btn');
if (viewButton) {
viewButton.click();
console.log('%c🚀 Opened modal by clicking View button', 'color: green; font-weight: bold;');
} else {
console.log('%c⚠️ View button not found — maybe modal is already open.', 'color: orange; font-weight: bold;');
}
let applyCount = 0;
@Varp17
Varp17 / wellfound.js
Created October 15, 2025 15:29 — forked from imsks/wellfound.js
Automated Script for Applying at Wellfound
(async () => {
const delay = (ms) => new Promise((res) => setTimeout(res, ms));
const waitForElement = async (selector, timeout = 5000) => {
const start = Date.now();
while (Date.now() - start < timeout) {
const el = document.querySelector(selector);
if (el) return el;
await delay(100);
}