Skip to content

Instantly share code, notes, and snippets.

View camh96's full-sized avatar
Watching the game

Cam Hovell camh96

Watching the game
View GitHub Profile
require 'date'
require 'active_support/time'
current_id = 100000000026499683
starting_date = Date.new(2019,03,05)
times = [
[9, 0, 60],
[11, 30, 30],
@camh96
camh96 / dbconnect.php
Last active August 29, 2015 14:05 — forked from Danni3/dbconnect.php
<?php
$username = "root";
$password = "";
$hostname = "localhost";
$dbname = "assessment";
$con = mysqli_connect($hostname, $username, $password, $dbname);
// check connection
if (mysqli_connect_errno())
<?php
$username = "root";
$password = "";
$hostname = "localhost";
$dbname = "assessment";
$con = mysqli_connect($hostname, $username, $password, $dbname);
// check connection
if (mysqli_connect_errno())

Tinder API documentation

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!)

Note: this was written in April/May 2014 and the API may have changed since

API Details