Sunday

Firefox: Manual Update

Steps are:
- Go to menu, click on Tools > Options > Advanced icon > Update tab
- Firefox updates: Never check for updates radio button
- Click OK button to close the Options frame
- To test, go to menu, click on Help > About Firefox. Then, click the button "Check for Updates"

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