Skip to content

Instantly share code, notes, and snippets.

View okohub's full-sized avatar
:shipit:
Focusing

Onur Kağan Özcan okohub

:shipit:
Focusing
View GitHub Profile
@okohub
okohub / git-tag-delete-local-and-remote.sh
Created August 16, 2019 20:04 — forked from mobilemind/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
@okohub
okohub / keybase.md
Created November 14, 2017 07:49
keybase.md

Keybase proof

I hereby claim:

  • I am okohub on github.
  • I am onurkagan (https://keybase.io/onurkagan) on keybase.
  • I have a public key whose fingerprint is 6518 58A0 B623 24E7 DE71 B59E 5E2A 4A80 DFAF 3442

To claim this, I am signing this object:

@okohub
okohub / tinder-api-documentation.md
Last active August 29, 2015 14:26 — forked from rtt/tinder-api-documentation.md
Tinder API Documentation

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