Thursday

Linux Mint Mate: How to install CodeBlocks as C++ IDE by pointing and clicking?

- Start Menu > Software Manager. You may press the "Ctrl + LinuxWindow" on the keyboard to open the start menu
- Search for codeblocks
- Double-click on the codeblocks from the search results frame
- Click on the button Install
- From the start menu, right-click on CodeBlocks under Programming sub-menu and select "Add to desktop"
- Run CodeBlocks application
- Open any C++ file
- Highlight, right-click on the highlighted area and then select "Format this file (AStyle)"

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