Friday

Android Tips on Navigation & Get in Touch

Tip: Alternative way to navigate Apps pages:
Tap on Apps
Tap and hold on the navigation panel
The dotted navigation panel will turn into the slider for easy navigation

Tip: Fast way to send message or make call to get in touch with your friends in the contact list:
Tap on Contacts
Swipe to left over the name to send message
Swipe to right to make call

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