Skip to content

Instantly share code, notes, and snippets.

View ashutosh887's full-sized avatar
:octocat:
Give them a reason to remember your name!

Ashutosh Jha ashutosh887

:octocat:
Give them a reason to remember your name!
View GitHub Profile
import random
import json
from urllib.parse import quote, urlparse
from typing import List, Dict, Any
import requests
from bs4 import BeautifulSoup
API_KEY = ''
@gokulkrishh
gokulkrishh / useful-npx-commands.md
Last active October 17, 2025 13:42
List of useful npx (Node Package Runner) commands (https://git.io/useful-npx-commands)

NPX (NPM Package Runner) Commands

List of useful npx (NPM Package Runner) commands.

What is NPX?

Using NPX we can execute/run node binaries without the need to install it locally or globally.

Commands

@jixserver
jixserver / disposable-email-address.txt
Created November 6, 2016 19:01
List Of Free Disposable Email Address Providers
https://10minutemail.com/
http://www.20minutemail.com/
http://email-fake.com/
http://www.fakemailgenerator.com/
http://www.throwawaymail.com/
https://www.mailinator.com/
http://www.yopmail.com/en/
https://temp-mail.org/en/
https://www.guerrillamail.com/
http://en.getairmail.com/
@ygotthilf
ygotthilf / jwtRS256.sh
Last active December 3, 2025 11:46
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub