homepage Shutdown your Mac using a terminal command Panayiotis Georgiou 27/06/2014 1 The shutdown command comes in handy if you want to shutdown or reboot your Mac at a specific time. Here are some of the…
Android Setting ANDROID_HOME Environmental Variable on Mac OS X Panayiotis Georgiou 24/06/2014 1 In this tutorial, we will show you how to set ANDROID_HOME Environmental Variable on Mac OS X.
Android SimpleDateFormat example on Android Panayiotis Georgiou 20/06/2014 1 The example demonstrate how to convert a Date object to string using a specified format, and convert back.
Android Show and Hide ActionBar on Android code Panayiotis Georgiou 20/06/2014 0 The action bar is a window feature that identifies the user location, and provides user actions and navigation modes. Using the…
Android Connect to Dropbox using Android Panayiotis Georgiou 18/06/2014 0 In this tutorial we will learn how to create an Android application for uploading a file on Dropbox! Dropbox is a popular free…
C Data Structure – Selection sort algorithm Panayiotis Georgiou 02/06/2014 0 The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right…
C Data Structure – Bubble sort algorithm Panayiotis Georgiou 02/06/2014 0 Bubble sort, sometimes incorrectly referred to as sinking sort, is a simple sorting algorithm that works by repeatedly stepping…
C Data Structure – Insertion sort algorithm Panayiotis Georgiou 02/06/2014 0 Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. (The example code…