-
Dealing with compatibility issues.
Today I was searching for an Ubuntu app called Cuttlefish. But later found out that even though it was such an important utility it was no longer maintained. So, I googled ‘Cuttlefish ubuntu no longer maintained‘ and stumbled upon this AskUbuntu.com question… How do I develop software for Ubuntu that one could still use in […]
-
Insertion Sort
Insertion Sort merely means that we insert one number at a time into its correct position comparing with the numbers to the left of it. At each iteration, the key value is compared to the values at its left and swapped if necessary. Insertion_Sort (Ascending order): 1. for j = 2 […]
-
2015 in review
The WordPress.com stats helper monkeys prepared a 2015 annual report for my blog. Here’s an excerpt: The concert hall at the Sydney Opera House holds 2,700 people. This blog was viewed about 25,000 times in 2015. If it were a concert at Sydney Opera House, it would take about 9 sold-out performances for that many […]
-
Android : Spinner
Implement Android Spinner to select an item from an array of items. Also Android Intents and SharedPreferences. Android Series.