Skip to content

Instantly share code, notes, and snippets.

View g-akshay's full-sized avatar
🎯
Bullseye

Akshay Gundewar g-akshay

🎯
Bullseye
View GitHub Profile
@thealphadollar
thealphadollar / AutoConnectLinkedIn.js
Last active November 9, 2025 10:19
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,
@dlucidone
dlucidone / tripplets.js
Created February 18, 2019 05:08
tripplets sum
// Time complexity: O(n^2)
function findTriplets(arr, n) {
arr.sort();
var l = arr.length;
for (var i = 0; i < l; i++) {
var j = i + 1,
k = l - 1;
while (j < k) {
if (arr[i] + arr[j] + arr[k] < n) {
j++;
@dlucidone
dlucidone / Nativescript String to Base64 String and Vice-Versa.ts
Last active January 31, 2021 00:53
Nativescript Base64 Manipulation Methods
/*
* Convert A String to Base64 String or Vice-Versa
*/
declare const android: any;
declare const java: any;
declare const NSData: any;
declare const NSUTF8StringEncoding: any;
declare const NSString: any;
@kevin-smets
kevin-smets / iterm2-solarized.md
Last active December 8, 2025 01:47
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k