How can I view my reputation with a Command Prompt script?
(In reply to StackOverflow reputation using PowerShell, because I'm bored as hell.)
How can I view my reputation with a Command Prompt script?
(In reply to StackOverflow reputation using PowerShell, because I'm bored as hell.)
In a command prompt window type:
start iexplore http://stackoverflow.com/users/flair/{your UID here}.html
There is more elaborate data for users available via (JSON):
http://stackoverflow.com/users/rep/50475/2009-01-01/2009-01-31
You could get some interesting data by parsing that string. Jon Skeet uses that for his rep tracker.