Skip to content

Instantly share code, notes, and snippets.

View lauragift21's full-sized avatar
πŸ‘©β€πŸ’»
OSSing...

Gift Egwuenu lauragift21

πŸ‘©β€πŸ’»
OSSing...
View GitHub Profile
@sa-adebayo
sa-adebayo / .eslintrc.json
Created August 14, 2017 14:29
andela - .eslintrc file
{
"extends": [
"airbnb",
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"plugins": [
"react"
],
@khaosdoctor
khaosdoctor / accept-friend.js
Last active February 3, 2022 09:14
Simple script (cloned from @ErickWendel) that accepts all friends in linkedin
// Run this in the devtools console, inside the linkedin friend request list
// Make sure to have all the requests displayed in the screen
// If something goes funky, increase the sleep time.
itens = []
document.querySelectorAll('.invitation-card__action-btn.artdeco-button--secondary').forEach(item => itens.push(item))
sleep = ms => new Promise(resolve => setTimeout(resolve, ms))
for (item of itens) {
item.click()