Thursday

LibreOffice Writer: Do not Hyphen or Dash to break a word

Steps are:
-- Highlight a paragraph
-- Right-click and select Paragraph
-- Tab on "Text Flow"
-- Under Hyphenation section, untick the check box Automatically
Yeah

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