Simple Bash Tool to compare Challenge solvers

discuss the engine, rankings, game ideas, and more
Post Reply
User avatar
dangermouse
Posts: 89
Joined: Sun Jun 05, 2011 8:14 pm
Location: deep space computing AG
Contact:

Simple Bash Tool to compare Challenge solvers

Post by dangermouse »

i wrote a simple set of bash scripts to compare Challenge solvers. it might be useful to you if:
- you want to find out which challenges were solved by your competitors, but not by yourself
- you want to know who solved a particular challenge out of your watchlist
- you want to know if hints in the forum are given by someone who solved the challenge or not
- you want to compare top ten users

The tool is available at:
git clone git://git.code.sourceforge.net/p/gpu/gpu-freedom gpu-freedom
ln -s gpu_freedom/src/playground/discochal discochal
cd discochal

The tool works in Cygwin under Windows and should work on any Linux flavour with bash (tested on Fedora 16).

To use it do
cd discochal
chmod 755 *.sh
./updatechals.sh # this can take up to 5 hours
./discochal.sh yourusername
./diffchal.sh yourusername dangermouse
./watched.sh
./whosolved.sh Anybody

and don't forget to read the README file ;-)

hope you have fun :-)
Last edited by dangermouse on Wed Dec 19, 2012 9:04 am, edited 10 times in total.
User avatar
laz0r
Posts: 290
Joined: Thu Feb 04, 2010 4:18 pm
Location: Within the depths of Unix

Post by laz0r »

Wow, that looks brilliant - I'll have a look! Thanks for this :)
There is no spoon.
User avatar
laz0r
Posts: 290
Joined: Thu Feb 04, 2010 4:18 pm
Location: Within the depths of Unix

Post by laz0r »

Hi,
I found a small bug:
In /removeif0.sh, the second line, beginning with FILESIZE, should be changed to read:

Code: Select all

FILESIZE=$(du -k "$1" | awk '{print $1}')
I have no idea how stat works (in the original), but apparently it doesn't take a -c flag (as of the version I've got, anyway, which is at least younger than 2009). Using du works fine.
Great tool, though!
There is no spoon.
User avatar
dangermouse
Posts: 89
Joined: Sun Jun 05, 2011 8:14 pm
Location: deep space computing AG
Contact:

Post by dangermouse »

hey laz0r thx for the fix, your approach with FILESIZE is more general, as du still works for me! btw another minor bug in diffchall.sh is that the challenge count is always one bigger than it should. This because i simply add the line count with wc -l in discochal.sh, and the line count is one too high because of the line "Challenge solved by user". But i'd like to keep this line for clearness, as it shows the direction of the diff.

About the invalid challenges, in fact adum already added an "invalid challenge" message, e.g see
http://www.hacker.org/challenge/solvers.php?id=350
To date i hardcoded challenge 303 in discochal.sh and updatechals.sh, maybe i should create a configuration file with a MAX_CHALLS variable and then "source" it...

ah, another feature is that discochal.sh can be run concurrently, as it is written "thread-safe".

to be honest i am a bit of a bash newbie! ciao :-)

UPDATE: i released a new package under http://www.gpu-grid.net/other/discochal2.tar.gz incorporating the fix of laz0r, the challenge count fix and the MAX_CHALLS constant. There is a new script updateusers.sh to update users in the watchlist and a script updatesinglechal.sh to update a single challenge. This time, i did not include the "database" of solvers though... so you might still need to download the first package, or to run updatechals.sh first...
User avatar
dangermouse
Posts: 89
Joined: Sun Jun 05, 2011 8:14 pm
Location: deep space computing AG
Contact:

Post by dangermouse »

I did a third release under http://www.gpu-grid.net/other/discochal3.tar.gz
removing the annoying h2 html tag and fixing some duplicate user issues. If you already have data, you need to run an ./updateusers.sh to get rid of the h2 tags and to get ./diffchall.sh to work properly.

I put the thing also somewhere in a git repository:
git clone git://git.code.sourceforge.net/p/gpu/gpu-freedom gpu-freedom
ln -s gpu_freedom/src/playground/discochal discochal
cd discochal

run git pull from time to time to see if there are updates...

ciao :-)
Last edited by dangermouse on Thu Sep 20, 2012 9:49 am, edited 2 times in total.
User avatar
laz0r
Posts: 290
Joined: Thu Feb 04, 2010 4:18 pm
Location: Within the depths of Unix

Post by laz0r »

Brilliant - I'll have a look later today :)
There is no spoon.
User avatar
dangermouse
Posts: 89
Joined: Sun Jun 05, 2011 8:14 pm
Location: deep space computing AG
Contact:

Post by dangermouse »

ah laz0r, the data in the original package discochal.tar.gz is a bit corrupted (i created it from a virtual machine running on VirtualBox with poor internet connection), so you might need take your time and run a ./updatechals.sh to get reliable information on solvers... For the occasional user, the provided data should be still okay, though.
User avatar
laz0r
Posts: 290
Joined: Thu Feb 04, 2010 4:18 pm
Location: Within the depths of Unix

Post by laz0r »

I think it would be good if the script checked on running updatechals whether the solvers folder existed - you could just run "mkdir solvers" at the start of the code, as a little bodge job!
There is no spoon.
User avatar
dangermouse
Posts: 89
Joined: Sun Jun 05, 2011 8:14 pm
Location: deep space computing AG
Contact:

Post by dangermouse »

ciao laz0r, thanks again for pointing me at this. i had the directory, but cleanup.sh in combination with git removed the directory. i rereleased discochal3.tar.gz with the mkdir thing, as you proposed! discochal3.tar.gz now includes a complete uncorrupted solvers database updated as of 27.4.2012
Post Reply