Thursday

Thunderbird: How to search for email messages by certain category in your inbox?

Menu > Edit > Find > Search Messages (Ctrl + Shift + F)
Using this way, you may search for email messages by subject, from, date, or other category.

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