Skip to content

Instantly share code, notes, and snippets.

View Lyuji282's full-sized avatar
🎯
Focusing

Arthur Lawrence Lyuji282

🎯
Focusing
View GitHub Profile
/*
* This code (VRMPoseImporter.cs) is licensed under CC0.
* http://creativecommons.org/publicdomain/zero/1.0/deed.ja
*/
using UnityEngine;
using System;
using System.IO;
using System.Reflection;
@linuxsimba
linuxsimba / docker-compose.yml
Last active May 3, 2024 15:53
docker-compose for MongoDB and Mongoose UI
version: '2'
networks:
mongodb_net:
driver: bridge
ipam:
driver: default
config:
# Change this subnet range if it conflicts with your personal/work network
- subnet: 192.168.213.0/24
@rtt
rtt / tinder-api-documentation.md
Last active June 21, 2024 04:19
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!)