-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
45 lines (39 loc) · 1002 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Redditwatcher 0.1
=================
By Berke Durak <[email protected]>
Description
===========
Repeatedly follows stories appearing on the Reddit "NEW" page.
Periodically samples their scores and saves them to marshalled files,
which can later be dumped in gnuplot/R-compatible format for statistical
analysis. Typically used to (a) see how your submission's score goes
over time or (b) to attempt to prove that a secret cabal of redditors
systematically downmods everyone else's stories.
License
=======
GPL. See the LICENSE file
Code status
===========
Works but is relatively dirty, unelegant, hackish code (translation:
I can do better).
Requirements
============
* Ocaml >= 3.10
* Ocamlfind
* Equeue
* Pcre
* Netsys
* Netstring
* Nethttpd
Compilation
===========
make
Usage
=====
> make
> mkdir stories
> ./scavenge.native -dir stories -scan http://reddit.com/r/programming
> ./scavenge.native -show stories/story-foobar >toto.dat
> gnuplot
>> plot "toto.dat" using 1:3 with lines
>> etc.