Tuesday

Firefox: Check to see if your plugins are up to date

+ Menu > Tools > Add-ons > Click on "Check to see if your plugins are up to date" link (www.mozilla.org/en-US/plugincheck/) at the top position

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...