- GitHub Staff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯 | |
🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯 | |
🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯 | |
🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯🌯 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ | |
⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️ | |
⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺🍺🍺🍺⬛️⬛️⬛️🍺⬛️⬛️⬛️⬛️🍺⬛️⬛️ | |
⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺🍺🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️🍺🍺⬛️⬛️ | |
⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️⬛️⬛️⬛️🍺🍺🍺🍺⬛️⬛️⬛️ | |
⬛️⬛️🍺🍺🍺🍺🍺🍺🍺⬛️⬛️⬛️🍺🍺🍺🍺🍺⬛️⬛️⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️ | |
⬛️⬛️🍺🍺🍺🍺🍺🍺🍺⬛️⬛️⬛️🍺🍺🍺🍺🍺⬛️⬛️⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️ | |
⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️ | |
⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺🍺🍺🍺⬛️⬛️⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️ | |
⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️🍺🍺🍺🍺🍺⬛️⬛️⬛️⬛️⬛️🍺🍺⬛️⬛️⬛️⬛️ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is now available via the official instagram api. */ | |
<?php | |
$url = $_GET['u']; | |
$r = file_get_contents($url); | |
$searchStr = 'meta property="og:image" content="'; | |
$pos = strpos($r, $searchStr); | |
$s = substr($r, $pos + strlen($searchStr)); | |
$img = substr($s, 0, strpos($s,'"')); | |
header('Location: '.$img); | |
exit; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function append($data, $i){ | |
//determine whether this line should have a comma or a newline character | |
if ($i != count($data) - 1 ) { | |
$append = ','; | |
} | |
else { | |
$append = "\n"; | |
} |