Sunday

How to disable Acrobat Reader 9 Automatic Update [solved]

  • Menu bar | Edit | Preferences... Ctrl+K
  • Categories: Updater
  • Check for updates: Select Radio Button: Do not download or install updates automatically

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