Sunday

Thunderbird: Compact Folders Manually

Click on the Inbox folder at the left pane
Click on Menu > File > Compact Folders
Wait until you see the message "Done compacting" on the status bar
Done for now

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