Saturday

Firefox v30.0: Show Menu Bar and Tab Groups Toolbar

 Show Menu Bar:
- Right-click on any area on the right hand side of the address bar
- Click on the "Menu Bar" to show the menu bar in the Firefox

Show Tab Groups Icon on the Firefox Toolbar:
- Right-click on any area on the right hand side of the address bar
- Click on the "Customize..."
- Drag and drop "Tab Groups" icon from the "Additional Tools and Features" main frame to the left hand side of the "Open menu (with three horizontal bars)" toolbar
- The keyboard shortcut to open the tab groups is "Ctrl+Shift+E"

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