Thursday

LibreOffice Writer: Make the odt file size smaller: Export it as PDF

- Open an odt LibreOffice Writer odt file
- Menu > File > Export as PDF
- Click on General tab
- Under Images, tick “Reduce image resolution” checkbox and set it to 150 DPI
- Under General, tick only one checkbox which is the “Export bookmarks”. The rest of the checkboxes should not be ticked
- Click on the Export button
- Done

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