Skip to content

Instantly share code, notes, and snippets.

View Dhee2211's full-sized avatar
🏠
Working from home

Dheerendra Panwar Dhee2211

🏠
Working from home
View GitHub Profile
@aakash-s45
aakash-s45 / GSoC_work_product.md
Last active February 12, 2023 11:30
GSoC Work Product Summary

Google Summer of Code 2022 with The Linux Foundation | AGL

This is the summary of the work I did for the Automotive Grade Linux (AGL) under Linux Foundation organization as a part of Google Summer of Code 2022.

Project Description

@abonzer
abonzer / Export instagram followers and following to csv
Created April 11, 2020 16:25
Ddownload/Save a full list of your Instagram Followers / Following. - JS Console, Bookmarklet
javascript: var InstaUser = window.location.href.split('instagram.com')[1].split('/')[1];
var followersCount, followingCount;
getFollowCount(InstaUser);
function getFollowCount(user) {
url = 'https://www.instagram.com/' + user + '/?__a=1';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var getJSON = JSON.parse(this.responseText);
@Acesmndr
Acesmndr / instagramunfollowers.js
Last active February 3, 2024 20:47
Get Instagram Unfollowers: Get a list of people whom you follow but who do not follow you back on Instagram as well as the list of people who follow you but whom you don't follow back!
// Gist by acesmndr@gmail.com Rev 2.1.2 May 15, 2019
// go to your insta profile page (not the home page). It looks something like this: https://instagram.com/YOUR_PROFILE
// Open javascript console "Ctrl + Shift + i" in Windows/Linux and "Cmd + option + i" in Mac.
// Paste the entire code below to the console and hit enter
// You will get the list of people whom you follow but who don't follow you back and viceversa as well as the entire list of followers and following
var following = [],
followers = [],
followersCount = 0,
followingCount = 0,