Humorix
Google now supports Mozilla's prefetching feature:
"On some searches, Google automatically instructs your browser to start downloading the top search result before you click on it. If you click on top result, the destination page will load faster than before."
When you add a rel="prefetch" attribute to a <link> tag Firefox will begin downloading the target page to cache to speed up browsing. It seems like a neat feature. I first questioned it as another attempt to "extend" standards but according to the HTML 4.01 spec it's perfectly legal:
"Authors may wish to define additional link types not described in this specification. If they do so, they should use a profile to cite the conventions used to define the link types. Please see the profile attribute of the HEAD element for more details."
Read more about prefetching.
IronPython 0.7 has just been released. [download]
This project is something to definitely keep an eye on. For kicks I wrote quick little Fibonacci script to play with:
# Fibonacci Sequence Seed
n = [0, 1]
# Calculate the rest of the series
start, stop = 0, 10
while start <= stop:
n.append(n[-1] + n[-2])
start += 1
print n[-1],
print "\nItems in list: ", len(n)
# Calculate sum of the series
sum = 0
for x in n:
sum += x
print "Sum of list: ", sum