Skip to content

Instantly share code, notes, and snippets.

@dbrugne
dbrugne / gist:a71048fdd422fac3eef9
Created March 26, 2015 10:35
Gandi DNS zone configuration for Mailgun
# The SPF record should be present as TXT to be able to be read by Mailgun, and optionnaly as SPF.
# To do that you need to edit the zone as "expert" cause Gandi IHM refuses to create a second TXT
# record for "@" (it can occurs if you have a Google Webmaster tool verification DNS record)
email 10800 IN CNAME mailgun.org.
krs._domainkey 10800 IN TXT "k=rsa; p=MIG...QAB"
@ 10800 IN SPF "v=spf1 include:mailgun.org ~all"
@ 10800 IN TXT "v=spf1 include:mailgun.org ~all"
@ 10800 IN TXT "google-site-verification=Gy0...xrY"
@LeCoupa
LeCoupa / nodejs-cheatsheet.js
Last active April 19, 2024 01:50
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@rtt
rtt / tinder-api-documentation.md
Last active May 5, 2024 15:28
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!)