Friday

LibreOffice Writer: How to change the text case from uppercase to capitalize every word?

+ Menu > Format > Change Case

+ Select one of the following:
    + Sentence case
    + lowercase
    + UPPERCASE
    + Capitalize Every Word
    + tOGGLE cASE

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