Friday

Linux Mint: How to remove an application from the Start Menu ?

- Click on the Start Menu
- Point to highlight any application you want it to be removed from the menu. For example, 3D Chess.
- Right-click on it and select "Uninstall".
- Remove 3dchess? Click the button "Remove" and the application will be uninstalled.

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