Skip to content

Instantly share code, notes, and snippets.

@necrogami
Created February 25, 2016 15:04
Show Gist options
  • Select an option

  • Save necrogami/2dfc922cc034e3141c7b to your computer and use it in GitHub Desktop.

Select an option

Save necrogami/2dfc922cc034e3141c7b to your computer and use it in GitHub Desktop.
<?php
while (true) {
$json = file_get_contents('https://api.twitch.tv/kraken/channels/kiwifails');
$object = json_decode($json);
echo $object->partner.PHP_EOL;
if ($object->partner) {
exec("echo \"kiwi fails is now a partner go subscribe\" |cscript //nologo \"C:\Program Files\Jampal\ptts.vbs\"");
}
sleep(45);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment