Showing posts with label app. Show all posts
Showing posts with label app. Show all posts

Monday, December 28, 2015

Learning Node.js and MongoDB

Writing a mobile app and need to write backend services to support your apps? With the arrays of server-side technologies, it is often mind-boggling to think about the various options available.

Introducing Node.js and MongoDB.

Using Node.js, you can use your favourite programming language - JavaScript, to create server apps rapidly and easily. Node.js is designed to be non-blocking, supports event-driven I/O, and is light weight and efficient. Using Node.js, you can create your own Web server in a matter of minutes. And using it to create RESTful services is both fast and efficient.
While most apps require traditional relational databases, with the advent of mobile apps and location-based services, spatial data is getting more and more common. This is where MongoDB shines. Using MongoDB, you can query spatial data from the database from a single statement. For example, your MongoDB contains a 100,000 places of interest and you need to find the nearest ATM from a current location. How do you do this in SQL? Well, MongoDB does that in a single statement and voila! You got the result in split-seconds.

WEB106 Programming Web Apps using Node.js (S$799)


WEB104 Programming NoSQL using MongoDB (S$799)

Come and join us in the upcoming courses on Node.js and MongoDB.

Thursday, July 11, 2013

Windows Phone Tip: Check if App is Running on Emulator

There are times where you want to check if your app is running on the emulator. For example, Bluetooth functionality can only be tested on a real device. Hence, in your code you could check to see if the app is running on an emulator. If it is, then terminate the app.

The following code snippet checks for the current device type. If it is running on an emulator, terminate the app:

//---check if your app is running on the emulator---
if (Microsoft.Devices.Environment.DeviceType ==
    Microsoft.Devices.DeviceType.Emulator)
{
    MessageBox.Show("Running on emulator!");
    //---terminate the app---
    App.Current.Terminate();
}

Monday, May 21, 2012

Download the new Developer Learning Solutions iPhone app

You can now check for the latest course schedule as well as email course outlines and application forms through the new Developer Learning Solutions iPhone app! For techies, the UI for this app was built using the new Storyboard feature in iOS 5. 

Download the app here: 

http://itunes.apple.com/us/app/developer-learning-solutions/id527032895?mt=8&ls=1

If you would like to see more features, please feel free to let me know!