Friday

How to Disable Real Player AutoUpdate?

Use this unobtrusive method, if you prefer manual update.

Click on Real Player Start Menu | Preferences...
Preference window will pop up
Click on LHS Panel | Automatic Services | AutoUpdate
Uncheck the Automatically download and install important updates checkbox
Click OK to close the window

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...