Scripts? Main script? — Yep, there are three scripts involved. (Or four, since we currently have Bonus Stats.) Originally, there was just one script which fetched all of the stats data from FreeDC. But because FreeDC stopped collecting stats for non-BOINC projects in July 2020, I eventually added two more scripts:
The second script fetches Folding@home stats from several web pages at folding.extremeoverclocking.com. EOC's "last 7 days" data are somewhat hard to get, so I am using "24hr Avg" figures instead and multiply them by 7, which is equivalent apart from very small rounding errors.
The third script fetches RC5-72 stats from a few web pages at distributed.net. Unfortunately, weekly stats are not available there at all. Therefore I am using local cache files for all-time stats from the previous Sunday. Let's say you start this script on Sunday, June 26. The script will download up-to-date all-time stats of the TeAm and of all current TeAm members and store them all in a file called RC5-72/26JUN2022.txt. User data in there consist of name and credit. Then it will look for a file called RC5-72/19JUN2022.txt. If it is there, it will match names in both files, subtract previous Sunday's credit from current credit, and then log the result to the text terminal in a format which looks like FreeDC's weekly stats. (The user name matching is a bit more complicated than it seems at first glance, because names are not unique. I could extract unique user IDs out of the HTML, but I implemented an easier heuristic method instead.) The script will also delete any RC5-72/{day}{month}{year}.txt files which don't belong to the current day or to the day a week ago.
Notes:
- After you download these scripts, don't forget to set their executable flag.
- The normal mode of operation is that you call only the main script. It will call the other two scripts and insert their output into the overall output.
- The main script expects the other two scripts to be named "fah_weekly_stats_dump.sh" and "rc5-72_weekly_stats_dump.sh", and that these two scripts are located in the same directory as the main script.
- Each of the scripts requires the text web browser "links". Most distributions should have this packaged, but it is unlikely to be installed by default.
I am relying on "links" to a) perform the web download, b) convert HTML to plaintext. - I spoke above about cache files like RC5-72/26JUN2022.txt. Actually, the RC5-72 stats script expects these data files to reside at the path "${HOME}/Distributed_Computing/Weekly_Stats/RC5-72". You need to create these exact directories first in order to be able to run that script. If you prefer a different path, edit the top of rc5-72_weekly_stats_dump.sh accordingly.
weekly_stats_dump.sh (the main script)
Code: Select all
#!/bin/bash
projects=(
'alb&teamid=12'
'ami&teamid=174'
'ast&teamid=183'
'beef&teamid=27'
'tac&teamid=33'
'csg&teamid=115'
'bcpdn&teamid=4'
'col&teamid=126'
'cos&teamid=73'
'den&teamid=192'
'dhe&teamid=52'
'dpad&teamid=Team+Anandtech'
'eah&teamid=12'
'fah&teamid=198'
'gaia&teamid=97'
'ger&teamid=58'
'ps3&teamid=175'
'goo&teamid=2628'
'ibe2&teamid=62'
'ithc&teamid=189'
'ith&teamid=179'
'kry&teamid=17'
'lts&teamid=54'
'lhc&teamid=4'
'loda&teamid=28'
# 'maj&teamid=22'
'mil&teamid=77'
'min&teamid=141'
'mine&teamid=206'
'mlc&teamid=187'
'moo&teamid=173'
'nub&teamid=139'
'nfs&teamid=125'
'num&teamid=54'
'odl&teamid=32'
'pgrid&teamid=132'
'pgfn&teamid=30'
'quc&teamid=180'
'rak&teamid=1758'
'ralph&teamid=60'
'rnma&teamid=8'
'rc572&teamid=AnandTech+10635'
'rah&teamid=79'
'sah&teamid=30191'
'sid&teamid=52'
'srb&teamid=37'
'pad&teamid=3183'
'gne&teamid=114'
'uni&teamid=176'
'vdw&teamid=195'
'vgtu&teamid=67'
'bwcg&teamid=16700'
'wep&teamid=8'
'yaf&teamid=27'
'yoy&teamid=116'
)
bar () {
printf '\n=========================================================\n\n'
}
mangle() {
sed -e '# set the project name in bold
2{s/\(^ \)\(.*\)\( overall position\)/[B]\2[\/B]\3/}
t
# un'link'ify e-mail addresses
s/@[-0-z]\+[.]/&/
T
s/[.]/[I].[\/I]/g'
}
bar
echo "Weekly DC Stats - $(date +%d%^b%Y)"
bar
cat <<'EOF'
[SIZE=2]**********************************************
In the event we have any non-crunching AnandTech readers who happen to wander into this thread: Distributed Computing is where you allow your computing device (smartphones/tablets included) to work on things like medical research, mathematical stuff, sifting through telescope data to further the field of Astronomy, and many other 'citizen science' projects. It allows networked computers to band together to act as a supercomputer. And you should join us. Thanks go, as always, to the folks responsible for Free-DC, who make this possible by keeping score for us.
**********************************************[/SIZE]
EOF
for proj in ${projects[*]}
do
case "${proj}" in
'fah&teamid=198')
stats=$($(realpath $(dirname $0))/fah_weekly_stats_dump.sh);;
'rc572&teamid=AnandTech+10635')
stats=$($(realpath $(dirname $0))/rc5-72_weekly_stats_dump.sh);;
*)
stats=$(links -dump "https://stats.free-dc.org/spacehead.php?page=team&proj=${proj}");;
esac
grep -q 'TeAm total for the week - 0' <<< ${stats} && continue
mangle <<< ${stats}
echo
done
cat <<'EOF'
[SPOILER=stats links]
[URL='https://stats.free-dc.org/teambycpid/TeAm+AnandTech']TeAm AnandTech at Free-DC[/URL]
[URL='https://www.boincstats.com/stats/-1/team/detail/8/projectList']TeAm AnandTech at BOINCstats[/URL]
[URL='https://folding.extremeoverclocking.com/team_summary.php?t=198']TeAm Folding@home stats at EOC[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=alb&teamid=12']Albert[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ami&teamid=174']Amicable Numbers[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ast&teamid=183']Asteroids[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=beef&teamid=27']Beef[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=tac&teamid=33']BOINC@TACC[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=csg&teamid=115']Citizen Science Grid[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=bcpdn&teamid=4']Climate Prediction[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=col&teamid=126']Collatz Conjecture[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=cos&teamid=73']Cosmology[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=den&teamid=192']DENIS[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=dhe&teamid=52']DHEP[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=dpad&teamid=Team+Anandtech']DPAD[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=eah&teamid=12']Einstein[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=fah&teamid=198']Folding@Home[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=gaia&teamid=97']Gaia[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ger&teamid=58']Gerasim[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=goo&teamid=2628']Goofyxgrid[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ps3&teamid=175']GPU Grid[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ibe2&teamid=62']IberCivis2[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ithc&teamid=189']iThena.Computational[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ith&teamid=179']iThena.Measurements[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=kry&teamid=17']Kryptos@Home[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=lts&teamid=54']Latin Squares (aka ODLK1)[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=lhc&teamid=4']LHC[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=loda&teamid=28']LODA[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=maj&teamid=22']Majestic12[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=mil&teamid=77']Milkyway[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=min&teamid=141']MindModeling[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=mine&teamid=206']Minecraft[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=mlc&teamid=187']MLC[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=moo&teamid=173']Moo! Wrapper[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=nub&teamid=139']NanoHub[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=nfs&teamid=125']NFS[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=num&teamid=54']Number Fields[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=odl&teamid=32']ODLK[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=pgrid&teamid=132']PrimeGrid[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=pgfn&teamid=30']Private GFN Server[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=quc&teamid=180']QuChemPedIA[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=rak&teamid=1758']Rakesearch[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=ralph&teamid=60']Ralph[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=rnma&teamid=8']Ramanujan Machine[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=rc572&teamid=AnandTech+10635']RC5/72[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=rah&teamid=79']Rosetta[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=sah&teamid=30191']SETI[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=sid&teamid=52']SiDock[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=srb&teamid=37']SRBase[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=pad&teamid=3183']T.Brada[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=gne&teamid=114']TN-Grid[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=uni&teamid=176']Universe[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=vdw&teamid=195']Van Der Waerden Numbers[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=vgtu&teamid=67']VGTU[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=bwcg&teamid=16700']WCG[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=wep&teamid=8']WEP-M2[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=yaf&teamid=27']YAFU[/URL]
[URL='https://stats.free-dc.org/spacehead.php?page=team&proj=yoy&teamid=116']Yoyo[/URL]
[/SPOILER]
EOF
bar
fah_weekly_stats_dump.sh
Code: Select all
#!/bin/bash
commarize () {
a=$(printf "%12s" ${1})
b=$(
(( ${1} > 999999999 )) && printf "${a::-9},"
(( ${1} > 999999 )) && printf "${a: -9:3},"
(( ${1} > 999 )) && printf "${a: -6:3},"
printf "${a: -3}"
)
printf "${b// /}"
}
echo
page=$(links -width 200 -dump 'https://folding.extremeoverclocking.com/team_summary.php?t=198' | cut -c27-)
line=($(sed -nE '/Overall +24hr +7days +24hr Avg/{n;p;}' <<<"${page}"))
echo " Folding@Home overall position - ${line[0]}"
echo " TeAm total for the week - ${line[-6]}"
page=$(links -width 200 -dump 'https://folding.extremeoverclocking.com/team_list.php?srt=3' | cut -c27-)
line=($(grep ' Team AnandTech ' <<<"${page}"))
echo " TeAm rank for weekly production - ${line[0]}"
echo
echo ' __Credit/week _ UserName'
r=1
for p in {1..100}
do
page=$(links -width 200 -dump "https://folding.extremeoverclocking.com/user_list.php?srt=1&t=198&p=${p}" | cut -c27-)
while read line
do
l=(${line})
[ "${l[0]}" != "${r}" ] && continue
avg="${l[-6]}"
[ "${avg}" = '0' ] && break
rank="${r}_______"
score="$(commarize $((${avg//,/}*7)))____________"
printf " ${rank::8}${score::13}${l[2]}\n"
((r++))
done <<<"${page}"
[ "${avg}" = '0' ] && break
done
rc5-72_weekly_stats_dump.sh
Code: Select all
#!/bin/bash
cd "${HOME}/Distributed_Computing/Weekly_Stats/RC5-72" || exit 1
LC_ALL=C
today_file="$(date +%d%^b%Y).txt"
last_sunday_file="$(date -d 'last Sunday' +%d%^b%Y).txt"
# delete superfluous data files
for file in [0-3][0-9][JFMASOND][AEPUCO][NBRYLGPTVC]20[2-9][0-9].txt
do
[ "${file}" != "${today_file}" -a "${file}" != "${last_sunday_file}" ] && rm "${file}"
done
commarize () {
((${1}<0)) && { s='-'; ((a = 0-${1})); } || { s=''; a=${1}; }
b=$(printf "%12s" ${a})
c=$(
((${a} > 999999999)) && printf "${b::-9},"
((${a} > 999999)) && printf "${b: -9:3},"
((${a} > 999)) && printf "${b: -6:3},"
printf "${b: -3}"
)
printf -- "${s}${c// /}"
}
if [ ! -f "${today_file}" ]
then
# download and cache today's data
n1[0]='AnandTech 10635'
page=$(links -width 200 -dump 'https://stats.distributed.net/team/tlist.php?project_id=8&low=1&limit=40')
line=($(grep "${n1[0]}" <<< "${page//|/}"))
overall_position=${line[0]}
b1[0]=${line[-2]}
printf "%s\t%s\t%s\n" "${n1[0]}" "${b1[0]}" "${overall_position}" > "${today_file}"
i=1
for p in 1 101 201 301
do
page=$(links -width 200 -dump "https://stats.distributed.net/team/tmember.php?project_id=8&team=10635&low=${p}")
while read line
do
rank=$(cut -d'|' -f2 <<<"${line}" | sed 's/^[ ]*//;s/[ ]*$//')
[ "${rank// /}" != "${i}" ] && continue
n1[i]=$(cut -d'|' -f3 <<<"${line}" | sed 's/^[ ]*//;s/[ ]*$//')
b1[i]=$(cut -d'|' -f9 <<<"${line}" | sed 's/^[ ]*//;s/[ ]*$//')
printf -- "%s\t%s\n" "${n1[i]}" "${b1[i]}" >> "${today_file}"
((i++))
done <<< "${page}"
done
else
# read today's already cached data
overall_position=$(head -1 "${today_file}" | cut -f3)
i=0
while read line
do
n1[i]=$(cut -f1 <<< "${line}")
b1[i]=$(cut -f2 <<< "${line}")
((i++))
done < "${today_file}"
fi
echo
echo " RC5-72 overall position - ${overall_position}"
echo -n ' TeAm total for the week - '
if [ ! -f "${last_sunday_file}" ]
then
echo "0"
exit
else
# read last Sunday's cached data
i=0
while read line
do
n0[i]=$(cut -f1 <<< "${line}")
b0[i]=$(cut -f2 <<< "${line}")
((i++))
done < "${last_sunday_file}"
fi
commarize $((${b1[0]//,/} - ${b0[0]//,/}))
echo
echo
echo ' __Credit/week _ UserName'
chart=$(
for ((i=1; i<${#n1[*]}; i++))
do
for ((j=1; j<${#n0[*]}; j++))
do
if [ "${n1[i]}" = "${n0[j]}" ]
then
b=$((${b1[i]//,/} - ${b0[j]//,/}))
if ((b))
then
blocks="$(commarize $b)____________"
echo "${blocks::13}${n1[i]}"
fi
n0[j]='' # don't re-use this record, in case of duplicate names
break
fi
done
done
)
chart=$(sort -nr <<< "${chart}")
i=1
while read line
do
rank="${i}_______"
echo " ${rank::8}${line}"
((i++))
done <<< "${chart}"
And finally, an RC5-72 cache file from when I last posted the Weekly stats. When you copy and paste this from this post, make sure you got the whitespace in there as tab characters (not e.g. space characters).
${HOME}/Distributed_Computing/Weekly_Stats/RC5-72/19JUN2022.txt
Code: Select all
AnandTech 10635 527,374,211 17
LANMAN - Stop the war in Ukraine!! 327,709,320
crashtech 44,304,910
stefanlenz@hotmail.com 41,540,764
xii5ku 26,360,022
phoenicis 16,093,072
emoga 13,754,863
Fardringle 12,182,644
10esseeTony 4,638,640
Ken_g6 - TeAm Anandtech 3,877,321
James Zhao 3,730,713
sbrusgaard@worldonline.dk 2,409,883
Waffle 2,029,302
jason_mcc@myrealbox.com 1,620,120
<--Havoc--{{{ Team AnandTech 1,506,050
f00_devil@yahoo.com 1,463,085
JohnR - Team AnandTech 1,173,746
BPhantom - Team AnandTech 1,135,078
Choralone - Team Anandtech 1,076,370
tmanning 1,063,529
Cthulhu 961,091
FoBoT 793,688
stsc_subs@yahoo.com 753,517
Mad Pierre 725,974
Wrish 706,187
brian@journey360.com 639,207
iamwiz82@hotmail.com 638,883
richardbarnet 567,195
tom.rowden@nomos.com 562,089
ViRGE - Team AnandTech 551,787
vss1980 - Team Anandtech 484,227
MarcelliusIkaP 472,311
boehm@nc.rr.com 430,676
Mike Team Anandtech 397,026
Dougal - Team Anandtech 396,369
ob1 - TeamAnandtech 393,477
Ken 383,180
EricW - Team AnandTech 380,935
davekm@columbus.rr.com 365,163
JHutch - Team AnandTech 343,548
Participant #243,878 282,060
timvehrs@bigfoot.com 280,738
burnedout -Team AnandTech 260,666
Participant #211,018 249,930
Participant #380,854 249,781
oddtore@gmail.com 246,614
Mark 240,101
Tonto - Team Anandtech 239,415
TK-421 - Team AnandTech 234,001
moleca - Team AnandTech 210,258
cdlweasel@hotmail.com 197,250
holmqer@photodiver.com 180,888
zzuupp 171,392
jayBee666 171,052
cyberwire@gmail.com 169,381
Hoser 168,727
RazzleUltra 165,548
MiNdFkR 163,902
GSmith - Team Anandtech 152,730
Participant #472,649 147,063
jetskr9@jetskr9.net 141,108
TheCool1 - Team AnandTech 140,722
Participant #457,962 138,071
The Wolf 133,056
refranke@ktis.net 130,392
FrostyPhrog 126,921
kfonda@compuwiz.com 100,337
Mika Anderson 96,406
juergen.friebel@physik.blm.tu-muenchen.de 89,878
tamember 89,632
egoist [BugTraq.Ru] 89,461
LeBlatt - Team Anandtech 84,641
Hawkeye (Team Anandtech) 81,158
BGod 80,347
James Clarke 73,380
Chokko 71,872
tim@fightingevil.com 71,687
Participant #189,684 71,122
cvermeer@sark.com 68,572
c0rleone@yahoo.com 65,294
philippd@gmx.net 65,011
bighen - Team AnandTech 64,099
merlocka@hotmail.com 60,620
mmurdock@kimballequipment.com 55,141
Phukinaround 54,313
Marc Bloch 53,965
Participant #467,034 53,672
Buzzman 52,835
tierno@lotas-smartman.net 52,046
Dazman 50,206
Participant #437,341 48,448
MrBadidea 46,309
everlyr@earthlink.net 44,665
Camm - ** Team Anandtech ** 44,605
nathan1724@yahoo.com 43,908
Nozler 43,863
Wall Man - Team AnandTech 43,321
anandtrader200@mail.com 42,160
maximprince@hotmail.com 40,493
ripper7@rogers.com 40,164
antithug@zoomtown.com 38,964
durifuto@iol.it 38,774
Dogbert 38,719
silent@soltec.net 38,367
Tom Servo - TeAm AnandTech 35,916
bryan@bryanmoore.com 35,695
nkwan@direct.ca 35,602
Cyril 33,724
pnixon@gmail.com 33,409
god@who.net 32,294
skullone@skull-tech.com 31,704
ffattizzi@yahoo.com 30,695
fciccone@westnet.com.au 29,679
prawnstar@ihug.co.nz 29,488
stechsrw@email.uc.edu 28,268
irish.dot@gmail.com 28,255
s_kosobucki@yahoo.com 28,007
Jon R WI 26,307
Mad Pierre 25,031
todd@gatorline.com 24,893
thehiveisswarming@yahoo.com 24,572
d-net@warberg-revision.dk 24,254
rc5cracker@adelphia.net 23,458
Lagzilla 22,098
synscan@gmail.com 21,945
mnelsonx@earthlink.net 21,872
neo0983@yahoo.com 21,432
Jason Allen 21,168
icemandave@hotmail.com 19,560
leerickp@hotmail.com 18,821
Anders Pedersen 18,771
Atheras - Team AnandTech 18,438
Jason181 18,133
Participant #412,250 18,110
saintdev@gmail.com 17,480
EminK 16,990
jda1701@yahoo.com 16,844
piku@the-nextlevel.com 16,777
ss59 16,245
jcass736@hotmail.com 15,205
Kevin Berkheiser 15,192
watson81@bellsouth.net 14,801
[TOR] SpaceWalker - The Old Republic 14,604
mic.scott@sympatico.ca 14,215
twioz@yahoo.com 14,008
Participant #199,649 13,120
rkm@mindless.com 12,937
heathcliff@gmx.com 12,170
davequaad@hotmail.com 12,134
landwarrior2005@yahoo.com 12,066
cnc@ultraaccess.com 12,034
Netviper 11,922
pw@eiox.com 10,552
Team Anandtech Member - Strates 10,378
Jeff Baron 9,767
Captain_Rob - AnandTech 9,638
erikf@cse.ucsc.edu 9,260
tobla909@student.liu.se 9,191
Participant #130,784 9,040
Participant #472,874 9,013
Tom Philippart 8,916
marnolke@hotmail.com 8,856
kallen@uwalumni.com 8,835
Hendrik Asper 8,710
tsheaffer@imcinteractive.com 8,477
Polo - TA 8,294
wolfen_21@hotmail.com 8,238
dmech@neo.rr.com 7,983
ashviper@geocities.com 7,810
DragonFire - Team AnandTech 7,734
Thanushan Kanagaratnam 7,191
BlackFlagg 6,589
gunnar.wretlind@home.se 6,545
zsouthboy 6,539
dtravis7@sbcglobal.net 5,955
Clueless - Team AnandTech 5,914
blilly@eng.utoledo.edu 5,701
mandrill123@hotmail.com 5,606
The Train - [Team AnandTech] 5,095
denali - Team Anandtech 5,029
ghettobilly@gmail.com 4,927
FL4K 4,865
dstingel@mac.com 4,830
mweinig@yahoo.com 4,730
rich-dnet@fumble.free-online.co.uk 4,700
reillyjf@comcast.net 4,665
psgsr44@hotmail.com 4,609
Brakus 4,590
TA_Marthisdil@hotmail.com 4,493
Species 8472 - Team ANANDTECH! 4,432
nikclev@hotmail.com 4,405
Kubla Khan 4,357
brad_swanson@bigfoot.com 4,199
Athlex 4,153
[TA] Roddd 3,985
pudgygiantb2@yahoo.com 3,868
Seti Cavalry 3,826
distributed@moli.ws 3,552
kochihka@msu.edu 3,547
kank@qx.net 3,343
molaughlen@hotmail.com 3,320
Rhobite 3,163
JHamilton@Earthling.Net 3,119
Participant #398,977 3,094
Meph+Heph 3,066
sonik - Team Anandtech 2,990
cirrus 2,731
Jason Bilbrey 2,680
epieper@yahoo.com 2,622
abitserver@cox.net 2,474
dr.sutton@btinternet.com 2,472
Adenosine Triphosphate 2,416
rwf@gpcom.net 2,402
thomal456@aol.com 2,394
Zabolotsky Andrey (Russia) 2,360
scott@clearycorner.com 2,271
joe_stevensen@yahoo.com 2,237
Wamingo - Team Anandtech 2,165
drakelord@hotmail.com 2,111
kkennard@iquest.net 2,094
SVIPER000@aol.com 2,074
Francis Letourneau 2,003
OrangeKid 1,990
john_nicholas_f@hotmail.com 1,886
mike@mikemass.org 1,879
IsOs of AnandTech 1,751
tchinhe@hotmail.com 1,740
jason@oldos.org 1,732
deans@oemfab.com 1,687
Bartman 1,678
scoser@iastate.edu 1,648
mitchell.stuart@gmail.com 1,603
sciencewhiz 1,581
sno@seductive.com 1,575
daerid@io.com 1,525
chuck@churtle.com 1,512
joshliechty@hotmail.com 1,512
Pimotan 1,500
cryptor2718@excite.com 1,404
Arlen - Team AnandTech 1,377
Tigleon 1,360
zk501@yahoo.com 1,338
Tiger 1,322
mitevelkov@yahoo.com 1,316
jmorck@magnitudeweb.com 1,281
Boris 1,242
drdoug@techie.com 1,236
frolic 1,198
lordsidhu@hotmail.com 1,167
dwphenix@houston.rr.com 1,087
Participant #325,315 1,040
zed@pacbell.net 1,038
jaredneilsen@hotmail.com 1,034
jboggs619@yahoo.com 1,029
shota@virtuafighter.com 1,019
katana 951
JonB[TA] 854
napalm381 834
TA Cube 823
Dragon Puppy 797
SlangNRox-TeamAnandtech 775
Sabreguy - Team AnandTech 747
sdoane@bellsouth.net 735
Participant #329,550 703
armstsho@mail.netdoor.com 656
[NYC] Flash 634
jrc_can@bellsouth.net 628
Fire Elemental 613
kantana 613
crazy-train@home.se 531
mfl0p 520
Slawomir Malusecki 513
africamp@yahoo.com 509
bwappo@ee.net 487
johnertron@netzero.net 486
potatobreath 483
gabs@swipnet.se 472
JC 472
Hasse 468
jwt@babbage.ie 429
Fingers 402
Brtspears2 392
crYnOid - Team Anandtech 390
joelryan2k@hotmail.com 380
FlameDeer, TA 361
mmuller2@cfl.rr.com 354
killbat@swbell.net 351
aurigas81@hotmail.com 351
ziana@extrotech.net 329
zhossp@yahoo.com 327
george_powell@hotpop.com 317
dbujnovsky@fnfinc.com 292
Participant #275,367 292
mark.fillingham@gmail.com 270
raven42rac@cox.net 254
Eric Durant - Team AnandTech 240
Darkone - TeAm Anandtech 238
onnd 227
lessthanjake_666@hotmail.com 205
dkappos - Team Anandtech 200
xcellentops@earthlink.net 199
surfingtheweb@hotmail.com 193
WiggleToad 176
mawster.chadwick@home.com 173
davez34 167
dedavidson@stlnet.com 160
antpellegrino@theriver.com 151
pguei@uci.edu 147
srue@iname.com 142
zerin85310@yahoo.com 142
Participant #288,382 140
czhang@stratag.com 134
10us 132
Oblivion - Team AnandTech 130
frhvekr@yahoo.com 127
omk@edu.kauhajoki.fi 123
jim@microhlp.com 119
tchatzi@arx.gr 110
Terry 105
[TA]Miraculix 105
mander@loginet.com 104
derek@zeanah.com 99
shdtree.1@email.com 99
William Thomas 97
Yoshi 94
superpenguin76@hotmail.com 91
dave@unrealpc.com 90
dobbinsm@nc.rr.com 86
HeavyIron 85
erwinw@gmail.com 85
nemesis099@yahoo.com 77
dmaeby@hotmail.com 76
ThomasL - Team AnandTech 76
got2beazn@hotmail.com 75
kendrakirai@home.com 75
dr_catlips@yahoo.com 74
nexus9@snet.net 71
idlorj@aol.com 62
peterzal@hotmail.com 54
fifthfactor@hotmail.com 53
mshafrir@wam.umd.edu 52
ccrunner84@aol.com 51
jtids@btinternet.com 48
modisette@inu.net 43
V@LE 41
L Ziegler 40
kkkjunk@hotmail.com 37
mikari@nyc.rr.com 33
WX - Team AnandTech! 31
corycalvert@hotmail.com 30
espenorio@netscape.net 28
simon.holm@get2net.dk 28
crazy106@aol.com 27
johnny97@bellatlantic.net 27
The Driver - Team AnandTech 26
98021236@uni.massey.ac.nz 24
Mach 24
rhuel@thomasians.com 24
Acrolein 23
CRANK TA 22
fornoth@myway.com 17
sealerd@hotmail.com 17
jesser@portup.com 16
will.amesbury@c4.com 14
JJ 13
bschutz@hotmail.com 11
superchkn@hotmail.com 11
hippy_student@yahoo.com 8
abmoss@cc.usu.edu 8
oracleknowledge@teamvertigo.org 8
Will Poteet 7
kevin.park@virgin.net 7
postmaster@subz3r0.be 7
SyZ 1