Skip to content

Instantly share code, notes, and snippets.

View theabhinavdas's full-sized avatar
👨‍💻
building the future

Abhinav Das theabhinavdas

👨‍💻
building the future
View GitHub Profile
#!/usr/bin/perl -w
use strict;
use IO::Socket::INET;
use IO::Socket::SSL;
use Getopt::Long;
use Config;
$SIG{'PIPE'} = 'IGNORE'; #Ignore broken pipe errors
print <<EOTEXT;
@theabhinavdas
theabhinavdas / unfollow-all.md
Created March 30, 2018 21:08 — forked from xeloader/unfollow-all.md
Unfollow everyone on LinkedIn

Unfollow everyone on Social Media

Unfollow everyone on LinkedIn

LinkedIn is even more clickbait than Facebook nowadays. Adios. 💣

Visit https://www.linkedin.com/feed/following/

Scroll down to load all of your contacts

Open developer console, run the following

@theabhinavdas
theabhinavdas / Javascript RandomDate
Created December 7, 2021 00:12 — forked from nick-desteffen/Javascript RandomDate
Function to generate a random date between 2 dates
start = new Date(2001, 0, 1)
end = new Date()
function randomDate(start, end) {
return new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime()))
}
//http://apod.nasa.gov/apod/ap950616.html