Pages:
Author

Topic: /r/Bitcoin stats (Read 4562 times)

legendary
Activity: 1708
Merit: 1020
December 19, 2013, 06:23:35 AM
#37
With the new forum image proxy the chart above is not updating any more...

Here you can see the updated version:

http://blockchained.com/rbitcoinstats.png
donator
Activity: 2058
Merit: 1007
Poor impulse control.
October 28, 2013, 05:32:01 AM
#36
Here is a site that gives stats on r/bitcoin http://stattit.com/r/bitcoin/
Hmm... I can't see any interesting diagram there - am I missing something?

It just provides summary stats AFAICT.
legendary
Activity: 1708
Merit: 1020
October 28, 2013, 03:48:57 AM
#35
Here is a site that gives stats on r/bitcoin http://stattit.com/r/bitcoin/
Hmm... I can't see any interesting diagram there - am I missing something?
legendary
Activity: 1708
Merit: 1020
October 27, 2013, 03:35:02 PM
#34
Yes, but you can download stats directly from Reddit now:
http://www.reddit.com/r/Bitcoin/about/traffic.json
nice

Quote
So I don't think that I will re-enable that script.
ok

Will try to find the time to adapt my script...
administrator
Activity: 5222
Merit: 13032
October 27, 2013, 02:46:37 PM
#33
Yes, but you can download stats directly from Reddit now:
http://www.reddit.com/r/Bitcoin/about/traffic.json

So I don't think that I will re-enable that script.
legendary
Activity: 1708
Merit: 1020
October 27, 2013, 02:44:43 PM
#32
Thanks. This will update daily:
https://bitcointalk.org/rbitcoin/
I guess it's disabled because of the haxoing...
legendary
Activity: 1708
Merit: 1020
April 14, 2013, 05:16:07 PM
#31

somewhat messed up but should be updating...

Will integrate it into my site when I find the time. And also set up a graph of the forum stats - that might take a while, though.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 14, 2013, 08:17:12 AM
#30
[...]

ohoh this will need some more work to aggregate the data automatically...  but the weather is great outside Cool
Nice work!

I didn't think of aggregating the month/week/day data, great idea! Shame the daily data isn't available for the whole period, but if you start collecting now you'll have it from this point on. With lots more data points the correlation should be quite a bit more clear. From your chart it looks pretty clearly to be a log-log relationship.

legendary
Activity: 1708
Merit: 1020
April 14, 2013, 06:59:26 AM
#29


ohoh this will need some more work to aggregate the data automatically...  but the weather is great outside Cool
legendary
Activity: 1708
Merit: 1020
April 14, 2013, 05:59:23 AM
#28
 Kiss

Thanks. This will update daily:
https://bitcointalk.org/rbitcoin/
Could you also write a "latest.json" file or something? It's kinda hard to properly figure out the time the date changes (especially with freaking summer/winter time).
hero member
Activity: 504
Merit: 500
April 13, 2013, 06:31:38 AM
#27
Wow, didn't realise the subreddit was so active. Great work guys Smiley
administrator
Activity: 5222
Merit: 13032
April 12, 2013, 10:01:19 PM
#26
Thanks. This will update daily:
https://bitcointalk.org/rbitcoin/
hero member
Activity: 532
Merit: 500
FIAT LIBERTAS RVAT CAELVM
April 12, 2013, 02:50:06 PM
#25
Great stuff, Phelix.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 12, 2013, 03:42:52 AM
#24

Great, phelix! Can't wait to see what you do with it once the data is readily available. Thought about doing something similar for bitcointalk.org?
legendary
Activity: 1708
Merit: 1020
legendary
Activity: 1708
Merit: 1020
April 07, 2013, 03:54:04 PM
#22
I'm on it but will need more time... so busy.

if somebody else would do it I'd be happy.

current suggestion is not complete. not sure about the language.
donator
Activity: 2058
Merit: 1007
Poor impulse control.
April 07, 2013, 01:47:07 AM
#21
On my end, it doesn't resolve properly (getaddrinfo ENOTFOUND) but maybe you'll have some luck:

Code:
// whiskers75's /r/Bitcoin Script! :)
// Coded by whiskers75 for theymos and users of the Bitcoin Forum.

var http = require('http');

var options = {
    port: 80,
    hostname: 'http://www.reddit.com',
    method: 'GET',
    path: '/r/bitcoin/about/traffic.json'
};
console.log('Requesting ' + options.hostname + options.path + ':' + options.port + ' (' + options.method + ')');
var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log(chunk);
    });
});


I think you need a way to include theymos' login details as well.
hero member
Activity: 658
Merit: 502
Doesn't use these forums that often.
April 07, 2013, 01:42:55 AM
#20
On my end, it doesn't resolve properly (getaddrinfo ENOTFOUND) but maybe you'll have some luck:

Code:
// whiskers75's /r/Bitcoin Script! :)
// Coded by whiskers75 for theymos and users of the Bitcoin Forum.

var http = require('http');

var options = {
    port: 80,
    hostname: 'http://www.reddit.com',
    method: 'GET',
    path: '/r/bitcoin/about/traffic.json'
};
console.log('Requesting ' + options.hostname + options.path + ':' + options.port + ' (' + options.method + ')');
var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log(chunk);
    });
});
hero member
Activity: 658
Merit: 502
Doesn't use these forums that often.
April 07, 2013, 01:27:55 AM
#19
I'll do it automatically if someone writes me a PHP/Python/Perl/Bash script which logs a user onto reddit, fetches http://www.reddit.com/r/Bitcoin/about/traffic.json, and then prints it to stdout.
Node.js? Tongue

I'll write one!
legendary
Activity: 1708
Merit: 1020
April 03, 2013, 07:27:34 PM
#18
I'll do it automatically if someone writes me a PHP/Python/Perl/Bash script which logs a user onto reddit, fetches http://www.reddit.com/r/Bitcoin/about/traffic.json, and then prints it to stdout.
ok. I will hopefully find the time soon and let you know. Python would be my choice.

edit:
and I see it should even be possible to do it nicely: http://www.reddit.com/dev/api

APIs are the web 3.0
Pages:
Jump to: