Skip to content

Instantly share code, notes, and snippets.

@edsu
edsu / replies.py
Last active December 7, 2022 18:59
Try to get replies to a particular set of tweets, recursively.
#!/usr/bin/env python
"""
Twitter's API doesn't allow you to get replies to a particular tweet. Strange
but true. But you can use Twitter's Search API to search for tweets that are
directed at a particular user, and then search through the results to see if
any are replies to a given tweet. You probably are also interested in the
replies to any replies as well, so the process is recursive. The big caveat
here is that the search API only returns results for the last 7 days. So
@t-
t- / flash.dat
Last active December 11, 2022 16:16
Flash Firmware on Geeksphone Peak - Linux
Connect Device to Linux:
install android adb and android fastboot
edit as root:
sudo vi /etc/udev/rules.d/51-android.rules
add vendor line
SUBSYSTEM==”usb”, ATTR{idVendor}==”05c6”, MODE=”0666”, GROUP=”plugdev”
change file permissions:
chmod a+r /etc/udev/rules.d/51-android.rules
restart udev rules
sudo service udev restart