Skip to content

Instantly share code, notes, and snippets.

View imsks's full-sized avatar
🇮🇳
Building

Sachin Kr. Shukla imsks

🇮🇳
Building
  • India
  • 09:32 (UTC +05:30)
  • X @i_skrs
View GitHub Profile
@imsks
imsks / wellfound.js
Last active August 23, 2025 15:33
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);
}
@imsks
imsks / instahyre.js
Last active May 2, 2025 11:47
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;