Tuesday

How to make Firefox starts with multiple homepages?

=> Menu bar | Tools | Options...
=> Make sure you are at General tab |  at Startup panel | Select "Show my homepage"
=> At Startup panel | Home Page textbox | type "url1 | url2". Use vertical bar to open multiple homepages.
 

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