I'm really glad this is catching on!
Good job JMickle, I knew you could do it

Dialock, that's why I love programming! I have added you to the high score table

imaginationac, apparently the site has had some trouble keeping up with all the traffic on Sundays (when new problems are added). They are working on upgrading their servers, but at least they are back online again now.
Personally I have been working on a small python "library" with practical functions and classes that are not part of Python. I'm just adding random stuff as I go along, but so far I have functionality for:
multiply(listOfNumbers)
Permutations(listOfElements/string) {next(), hasNext()}
//generating permutations one at a time, rather than all at once
BooleanPermutations(listSize) {next(), hasNext()}
//for listSize=2, it returns: [False, False], [False, True], [True, False], [True, True]
uniqueItems(listOfItems/string)
arePermutationsOfEachother(list1/string1, list2/string2)
reversed(integer)
isPalindrome(integer)
digitSum(integer)
binomialCoefficient(n, k)
PrimeSieve(limit) {isPrime(integer), getPrimeList()}
primeFactorization(integer)
greatestCommonDevisor(integer1, integer2)
leastCommonDenominator(integer1, integer2)
(The actual names in the library are a bit shorter though)