Contributors metainfo: reputation and more

5 views (last 30 days)
As asked by Vieniava in "How to make a list of user's reputation?", some of us came up with interesting ideas on how to fill an updated list with the reputation scores of the contributors to Answers.
I took the initiative to compile a public list of users with meta info:
  • position (desc ordering by reputation)
  • id
  • nickname (truncated to fit the page)
  • reputation
  • # of comments
  • # of questions asked
  • % accept rate
  • # of posts answered
  • # of accepted answers
The code used to compile the list is available at the bottom.
EDIT
TMW team implemented a page with the metascores: http://www.mathworks.com/matlabcentral/answers/contributors
Please refer to it and congrats to the team!
Use this function to retrieve info from the link above:
function [metainfo, elapsedTime] = metainfo(type,order)
% METAINFO - Retrieve metainfo on contributors to www.matworks.com/.../answers
%
% METAINFO Retrieve data sorted by reputation in descending order
%
% METAINFO(TYPE,ORDER) Specify TYPE and sorting ORDER as
% type : 'reputation'
% 'questions'
% 'answered'
% 'accepted'
%
% order: 'asc'
% 'desc'
%
% Examples:
%
% % Standard call (rep, disc)
% info = metainfo;
%
% % Sort by question answered in descending order
% info = metainfo('an','d');
%
% See also: URLREAD, REGEXP
% Author: Oleg Komarov (oleg.komarov@hotmail.it)
% Tested on R14SP3 (7.1) and on R2009b. In-between compatibility is assumed.
% 28 feb 2011 - Created
tic
% Check # inputs
error(nargchk(0,2,nargin))
% Retrieve inputs
if nargin == 0
type = 'reputation';
order = 'desc';
end
if ~exist(type,'var')
sortTypes = {'reputation','questions','answered','accepted'};
type = sortTypes{strncmp(type,sortTypes,numel(type))};
order = 'desc';
end
if ~exist(order,'var')
orderTypes = {'asc','desc'};
type = orderTypes{strncmp(order,orderTypes,numel(order))};
end
% Build url string
url = ['http://www.mathworks.com/matlabcentral/answers/contributors?'...
'dir=' order '&sort=' type '&page='];
% First read
[page, ok] = urlread([url '1']);
% Catch number of pages to read
if ok
totcon = regexp(page,'>1 - 50 of (\d+)','tokens');
totcon = dataread('string',totcon{1}{1},'%d');
nPages = ceil(totcon/50);
else
error('Cannot read ".../contributors?page=1"')
end
% Loop over contributors pages
metainfo = cell(totcon,7);
metainfo(1:end,1) = num2cell(1:size(metainfo,1));
for p = 1:nPages
if ok
endpos = 50*p;
% Id, Rep
expr = '><a href="\/matlabcentral\/answers\/contributors\/(\d+)';
data = regexp(page, expr,'tokens');
if 50*p > totcon; endpos = 50*(p-1)+numel(data); end
metainfo(1+(p-1)*50:endpos,2) = [data{:}];
% Nickname
expr = ['"Reputation: (\d+)">([\w\ ' reshape([repmat(92,1,137);33:59,61:64,91:97,123:126,161:255],1,[]) ']+)</a></h2>'];
data = regexp(page, expr,'tokens');
metainfo(1+(p-1)*50:endpos,[4,3]) = cat(1,data{:});
% Qcount, Ans, Acc
data = regexp(page, '<span >(\d+)</span>[A-z<>"-\s\/]+','tokens');
metainfo(1+(p-1)*50:endpos,5:7) = reshape(cat(1,data{:}),3,[]).';
else
error('Metainfo import stopped. \nCannot read ".../contributors?page=%d"',p)
end
[page, ok] = urlread([url sprintf('%d',p+1)]);
end
% Convert to doubles
metainfo(:,[2,4:7]) = cellfun(@str2double,metainfo(:,[2,4:7]),'un',false);
elapsedTime = toc;
  8 Comments
Sean de Wolski
Sean de Wolski on 9 Feb 2011
Vieniava, I was wondering the same thing.
Aurelien Queffurust
Aurelien Queffurust on 22 Jul 2011
Does the above code still worK?
I still get the following error message:
>> [metainfo, elapsedTime] = metainfo('reputation','asc')
??? Error using ==> reshape
Product of known dimensions, 3, not divisible into total number of elements, 200.
Error in ==> metainfo at 82
metainfo(1+(p-1)*50:endpos,5:7) = reshape(cat(1,data{:}),3,[]).';

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 2 Mar 2011
Congratulations to Matt Fig for making it to 500 before I made it to 1000! He increased from 388 to 501 in about a day and a half, during which time I only increased from 901 to 966.
Numerical projections last night based upon answer acceptance rates were that it would take another 1310 questions answered each before he caught up, so clearly his solutions have been found vote-worthy.
  5 Comments
Cedric Wannaz
Cedric Wannaz on 26 Nov 2017
Edited: Cedric Wannaz on 26 Nov 2017
Congratz! Next test at max uint32 ;-)

Sign in to comment.

More Answers (103)

Rena Berman
Rena Berman on 14 Aug 2020
CONGRATULATIONS to Walter Roberson for for reaching 100k points!!!!!! We hope you like your new badge named for you for a contributor that reaches 100k, the Roberson Cup! Thank you for helping shape Answers to what it is today and helping so many people worldwide!!!!!!
  23 Comments
Rena Berman
Rena Berman on 6 Sep 2022
Congratulations @Walter Roberson!!! Your contributions are off the charts!!
David
David on 6 Sep 2022
Staggering milestone. Well done!

Sign in to comment.


Stephen23
Stephen23 on 25 Feb 2019
Congratulations to John D'Errico for reaching 10,000!
And with only 1520 accepted answers too... impressive.
  7 Comments
John D'Errico
John D'Errico on 28 Feb 2019
Edited: John D'Errico on 28 Feb 2019
Thank you. Reputation is not my goal on Answers. Solving problems is the goal in my eyes, and I do my best to not let reputation cloud my thinking in any way. Anyway, rep just happens when you are not looking.
Rena Berman
Rena Berman on 5 Mar 2019
(Answers Dev) Congratulations! Thank you so much for your efforts in Answers!

Sign in to comment.


Rena Berman
Rena Berman on 10 Apr 2017
(Answers dev) Congrats to Star Strider who passed 20,000 points!
  4 Comments
Jan
Jan on 30 Nov 2017
Edited: Jan on 30 Nov 2017
@Star Strider: After I've read this in your profile message:
MATLAB Answers: Third participant to achieve 20,000 Reputation
(09 Apr 2017)
I thought of inserting this in mine:
MATLAB Answers: First participant to achieve 20,000 Reputation
after Star Strider (02 Oct 2017)
Unfortunately I'm not funny, therefore I left it. ;-)

Sign in to comment.


Sven
Sven on 5 Feb 2012
Edited: Sven on 1 Mar 2014
Recent news:
... and BAM! Walter hits 25,000! Congratulations are in order again. It's impressive to see, but depressing to compare :)
Timeline:
that was 10,000 on 2012-02-05
and then 15,000 on 2012-07-21
and then 20,000 on 2013-03-02
and then 25,000 on 2013-11-09
The countdown to 100,000 continues...
Original:
Has it been noted yet that Walter has reached five figures in reputation? Wow!
Congratulations on 10000 Walter!
Cheers, Sven.
  63 Comments
Rena Berman
Rena Berman on 9 Dec 2019
(Answers Dev) Congratulations on passing 90,000!!! Amazing!
Walter Roberson
Walter Roberson on 14 Aug 2020
100k today. 8 months for the last 10k; and 50k took 46 months.

Sign in to comment.


Rena Berman
Rena Berman on 2 Oct 2017
(Answers dev) Congrats to Jan Simon who passed 20,000 points!
  16 Comments
Adam Danz
Adam Danz on 11 Dec 2019
That's both hilarious and intriguing! Now I'm trying to remember his previous picture. Makes me want to try some AB testing on my own profile image.
Image Analyst
Image Analyst on 11 Dec 2019
Do you mean this one:
0000 Screenshot.png
or the prior one, where I think he had curly hair?

Sign in to comment.


Rena Berman
Rena Berman on 28 Nov 2018
(Answers dev) Congratulations to Madhan Ravi our newest (and probably fastest) rising star to get editor status at 3000 reputation points! Thank you so much for your efforts in answers!
  11 Comments

Sign in to comment.


Star Strider
Star Strider on 4 Jul 2017
Congratulations to Guillaume who achieved 10000 Reputation Points today!
  1 Comment
Cedric Wannaz
Cedric Wannaz on 26 Oct 2017
Well, belated congratulations as I spot this comment now!

Sign in to comment.


Rena Berman
Rena Berman on 25 Oct 2017
Edited: Rena Berman on 30 Mar 2020
(Answers Dev) Congratulations to Stephen Cobeldick who passed 10,000 points and earned the Master Badge!
  10 Comments