Skip to content

Instantly share code, notes, and snippets.

View VitorDaynno's full-sized avatar
📒
Everyday is a day to a new knowledge

Vítor Daynno VitorDaynno

📒
Everyday is a day to a new knowledge
View GitHub Profile
@ygotthilf
ygotthilf / jwtRS256.sh
Last active August 15, 2024 12:54
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
@rtt
rtt / tinder-api-documentation.md
Last active August 13, 2024 13:08
Tinder API Documentation

Tinder API documentation

Note: this was written in April/May 2014 and the API may has definitely changed since. I have nothing to do with Tinder, nor its API, and I do not offer any support for anything you may build on top of this. Proceed with caution

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)