Skip to content

Instantly share code, notes, and snippets.

View ashish9342's full-sized avatar
😪

Ashish Singh Rawat ashish9342

😪
View GitHub Profile
@yomeshgupta
yomeshgupta / linkedin-connections-processing.js
Last active February 23, 2021 07:05
Accept or Reject all connection requests on LinkedIn
// Go to https://www.linkedin.com/mynetwork/invitation-manager/ and run the following code
// For more amazing content, visit -- https://bit.ly/devtools-yt
var ACCEPT_BTN_SELECTOR = ".invitation-card__action-btn:nth-of-type(2)";
var REJECT_BTN_SELECTOR = ".invitation-card__action-btn:nth-of-type(1)";
var DELAY = 2000; // in miliseconds | 2 seconds delay between each request accept
var ACCEPT = true; // set to false if you want to reject all connections
function sleep() {
<html>
<head>
<title>API Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
var accessToken = "<your agent's client access token>";
var baseUrl = "https://api.api.ai/v1/";
@staltz
staltz / introrx.md
Last active May 6, 2024 01:44
The introduction to Reactive Programming you've been missing