Skip to content

Instantly share code, notes, and snippets.

View isonupandit11's full-sized avatar
🎯
Focusing

Sonu Sharma isonupandit11

🎯
Focusing
View GitHub Profile
@thealphadollar
thealphadollar / AutoConnectLinkedIn.js
Last active March 10, 2025 08:31
JS script to send connection requests to your LinkedIn search results with customisation options, accept all received connection requests, and withdraw pending sent connection requests.
// If the script does not work, you may need to allow same site scripting https://stackoverflow.com/a/50902950
Linkedin = {
config: {
scrollDelay: 3000,
actionDelay: 5000,
nextPageDelay: 5000,
// set to -1 for no limit
maxRequests: -1,
totalRequestsSent: 0,
@OllieJones
OllieJones / DataTableResultSet.cs
Last active December 16, 2024 11:08
C# code for handling Ajax calls for the DataTables.net client table-rendering plugin.
/// <summary>
/// Resultset to be JSON stringified and set back to client.
/// </summary>
[Serializable]
[SuppressMessage("ReSharper", "InconsistentNaming")]
public class DataTableResultSet
{
/// <summary>Array of records. Each element of the array is itself an array of columns</summary>
public List<List<string>> data = new List<List<string>>();