Skip to content

Instantly share code, notes, and snippets.

@tanimislam
tanimislam / .gitignore
Last active February 27, 2020 20:33
This converts an MP4 movie, with SRT file, and name and year into an MKV file with English subtitles
# don't upload the database
# app.db
*.core
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# MS word and latex extensions
*.bak
@codingjester
codingjester / xauth_request.py
Last active May 14, 2020 23:40
Python xAuth Example
#!/usr/bin/env python
import urllib
import urlparse
import oauth2 as oauth
import json
consumer_key="consumer_key"
consumer_secret="consumer_secret"
access_token_url = 'https://www.tumblr.com/oauth/access_token'