Skip to content

Instantly share code, notes, and snippets.

View hmble's full-sized avatar
🙈
Learning

Samyak Bakliwal hmble

🙈
Learning
View GitHub Profile
@hmble
hmble / postman_installation.md
Created March 19, 2024 05:58 — forked from Akhil-Suresh/postman_installation.md
Installing Postman on Ubuntu/Debian

Installing Postman

Step 1

If any version of postman is installed we need to remove it

sudo rm -rf /opt/Postman

Step 2

@hmble
hmble / unsaver.py
Created December 16, 2021 09:10 — forked from Suleman-Elahi/unsaver.py
Sript to unsave all saved Instagram posts. Uses Instagram private API by ping and its extensions to do the heavy lifting.
from instagram_private_api import Client, ClientCompatPatch
from instagram_private_api_extensions import pagination
import json, time
user_name = 'UserName'
password = 'PassWord'
api = Client(user_name, password)
items=[]