Toggle navigation
Latest Activity
Last Challenge
Previous Challenges
Games
Discussion
Rules
Log in
Help
September 2024
: "Traitor" challenge is finished
bash one-liner to check how many pyweek entries there are so far
superjoe
on 2011/08/12 22:37
$ echo $(curl -s http://pyweek.org/13/entries/ | grep "<tr>" -c) / 2 | bc
12
sorry guys, I get a little excited about PyWeek!
(log in to comment)
Comments
adrwen
on 2011/08/12 23:12:
curl -s http://pyweek.org/13/entries/ |grep "entry-d" -c| wc -l
I tried putting tr tags in the description of my entry. It did mess with the numbers. Sadly it also made a mess of the entries page, so I had to remove them again.
:)
adrwen on 2011/08/12 23:12:
curl -s http://pyweek.org/13/entries/ |grep "entry-d" -c| wc -lI tried putting tr tags in the description of my entry. It did mess with the numbers. Sadly it also made a mess of the entries page, so I had to remove them again.
:)