Archives

Mifty

All posts from Mifty

Google releases a sample Android app that works across phones, tablets, smartwatches, cars, and more

The good folks at Google release a sample app for Android that they are calling A new reference app for multi-device applications. The sample app is called Universal Music Player and it works across all Android platforms. This includes Android smartphones, tablets, Android Auto, Android Wear, and Google Cast devices. This is a huge deal […] Keep Reading

Merge Sort Implementation in Java

Merge Sort Similar to Quicksort, Merge sort is a divide and conquer algorithm that generally performs better than quadratic sorting algorithms such as bubble sort, insertion sort and selection sort. But unlike these other sorts, which take list and modify it in place, merge sort requires additional space to merge 2 lists together. How Merge […] Keep Reading

QuickSort Implementation in Java

Quicksort Quicksort is an efficient sorting algorithm, which is using divide and conquer algorithm. Quicksort is much more efficient than quadratic sorting algorithms like Bubble Sort and Insertion Sort. Using the divide and conquer approach, the algorithm first divides a large list into two smaller sub-lists using a pivot. The sub-list consists of : the […] Keep Reading

Google/News & Rants

R.I.P. Google Glass

Google recently announced that they will stop individual sales of Google Glass in its current form. For those who don’t know, Google Glass was first released in 2012 as a breakthrough in augmented reality. Although they cost a hefty price of $1500, they provided you with technology that only existed in the world of science […] Keep Reading

My Creations/My Websites

Montreal Community Conctact

For over 20 years, the Montreal Community Contact has been serving serving Montreal’s Black and Caribbean Community. This community newspaper is published every 2 weeks. When they decided that they needed to upgrade their website to something that was a little more dynamic and easier to update, I decided to go with a custom WordPress theme Keep Reading

CakePHP/PHP/Tutorials & Samples

A complete tutorial on Admin Routing for CakePHP

Although CakePHP’s cookbook does a pretty good job at explaining admin routing, I’ve still received requests for a tutorial on admin routing. So, for my very first tutorial for 2015, I will be showing you a complete tutorial for admin routing in CakePHP. The tutorial will be a combination of the user authentication application that […] Keep Reading