Skip to content

Instantly share code, notes, and snippets.

View linxlunx's full-sized avatar

Linggar Primahastoko linxlunx

View GitHub Profile
@linxlunx
linxlunx / gist:acffc272f627d9e8728a7d3aaef7eb0d
Created June 19, 2023 04:54 — forked from pvieito/gist:ee6d2c8934a8f84b9aeb467585277b8a
Consumer keys of official Twitter clients

Twitter API Keys

Twitter for iPhone

Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU

Twitter for Android

Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for Google TV

Consumer key: iAtYJ4HpUVfIUoNnif1DA

@linxlunx
linxlunx / venv_upgrade.sh
Last active December 16, 2021 05:26 — forked from pujianto/venv_upgrade.sh
Script to rebuild virtualenv after upgrading the python version
#!/bin/bash
# This script is for rebuilding the virtualenv when using virtualenvwrapper
# Sometimes the virtualenv is broken after upgrading the python version
# Inspired from https://gist.github.com/pujianto/7df2413d64480f7797e1f0c434841283
#
# Usage:
# $ ./venv_upgrade.sh
# Input your virtualenvs base directory then select the virtualenv you want to rebuild
if [ "`command -v pip`" == "" ]; then