Implementing a Stack Using a Linked List Data Structure

In computer science there are many data structures. In this post we will examine one such structure called a ‘Stack’. We’ll implement it using another data structure called a ‘Linked List’, and for the sake of comparison, we will implement the same stack data structure using plain old arrays, and… Read more »

iBeacon and Background Service

      No Comments on iBeacon and Background Service

Using iBeacon is pretty straight forward, what I wanted to do is use the service in the background, and send a request to the server every time a user enters/exits a region. I’ll explain how I did it in this small tutorial. iBeacon iBeacon is a location technology developed by Apple…. Read more »