summaryrefslogtreecommitdiffstats
path: root/bettereveryloop.php
blob: da8c3439cfc131c4cd1d4965332518de0c454984 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env php
<?php
	//											how to write ugly code
	if											($argc != 4														 	)
	exit										($argv[0]." username password subreddit");
	require_once 						("main.php"															);
	$o = new oldredditClient(																				);
	$o-> setusername				($argv[1]																);
	$o-> setpassword				($argv[2]																);
	while										(1																			){
	$o-> setflair						($argv[3]																);
	sleep										(3																			)}
	//											reddit is max  30  requests per minute tho
?>