Thursday

LibreOffice: How to position picture correctly?

To position the picture correctly in LibreOffice:

1. Insert a picture on a blank line

2. Right-click on the image > Anchor > As Character

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