Skip to content

Instantly share code, notes, and snippets.

<!-- copy this to YOUR_THEME.tmTheme-->
<dict>
<key>name</key>
<string>diff: deleted</string>
<key>scope</key>
<string>markup.deleted</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#EAE3CA</string>
@alea12
alea12 / pigeon.php
Last active December 15, 2015 11:39 — forked from okumin/pigeon.php
<?php
$target = "";
$timestamp = date('Y-m-d hms');
$next_cursor = -1;
$f = fopen($target . " - " . $timestamp . ".txt", "w");
while($next_cursor != 0) {
$api = "https://api.twitter.com/1/followers/ids.xml?cursor=" .
$next_cursor . "&screen_name=" . $target;