G$earch

Top 5 Mobile Apps To Keep Your Kids Safe

Posted by Harshad

Top 5 Mobile Apps To Keep Your Kids Safe


Top 5 Mobile Apps To Keep Your Kids Safe

Posted: 18 Feb 2013 11:55 PM PST

Every year, thousands of children go missing. A report reveals that a child goes missing in the UK every 3 minutes and the travesty is getting worse. In many parts of the world, losing a child is not something we should be lackadaisical about. In mere seconds, a child could be removed from the watchful eye of parents, in mere hours, removed from the state or the country.

One of the better ways to keep watch over our young ones is with their smartphones. Data plans are getting cheaper and most smartphones nowadays have either GPS capabilities or data connections.

You might be a parent who is not keen on letting your child be exposed to a smartphone at too young an age, but bear with us and read on, these safety (free) apps may possibly change your mind.

1. Sygic Family

Sygic Family keeps your family safe by allowing you to check the real-time location and the battery levels of your family members’ smartphones. You can also track your children’s whereabouts, or have them check-in periodically to let you know where they are and if they have arrived at their destination safely.

Sygic

The app also has an in-built messaging system which lets you send messages for free over an Internet connection. You can also set Safe or Unsafe zones – a notification will be sent to you when they enter or leave these zones. There is also an SOS button available in this app, which lets you send out your exact location at the tap of the button. You never know when you might need it.

Platform: iOS | Android

2. Life360

Life360 has pretty much the same things Sygic has: GPS locations of your family members via their smartphones, a panic button, and alerts when some one enters a preset zone (e.g. gets home). It also lets you check where they have been (location history), where to get help in an emergency (hospitals, police stations), and allows you to have group chats.

Life360

If you don’t have a smartphone, you can still use this with a mobile phone at RM4.99 per month, for up to 5 mobile phones (only in the U.S.). A text message will be sent to them and once they consent to it, their location would be tracked and sent back to you. The app tries its best to not be a monitoring app but more of a communication tool to help bring families closer together and safer too.

Platform: iOS | Android | Blackberry

3. mamaBear

Here is another great app for keeping your children safe; the difference is, it also helps keep your child safe online. MamaBear has a feature to keep watch over your child’s Facebook feed. You will be alerted to any signs of bullying or use of crude language as well as when they check-in or get tagged on their friends’ photos. The team is working on doing the same for Twitter and Instagram profiles.

mamaBear

Offline, you will receive alerts for when they leave a place, when they need to be picked up, when they are driving or riding past a certain speed limit, or when they explicitly need you in an SOS cry for help. This app will give you either peace of mind or great conversation starters on talking about speeding, truancy, open communication channels, and how to stay safe at all times.

Platform: iOS | Android

4. Google Latitude

Google Latitude is less of an app and more of a tracking tool. It allows you to see where your family members are on a map, and easily keep in touch with them. To use it, sign in to Google Latitude and start adding your family members via their Gmail contacts. When they accept, you can see their locations on Google Map on your phone.

Google Latitude

Their locations will be at the background even when the app is closed or when your smartphone is locked. Android users have a widget they can setup. You can also get the app to check you in automatically at a preset place. As this is not restricted to family members you can use it to check just about anyone’s whereabouts, provided they are on Google Latitude.

Platform: iOS | Android

5. MobileKids

This is the odd one out, but some parents may require this level of monitoring for their children. Receive alerts when your kids have been using their mobile phones in the middle of the night, when they add a new unrecognized contact, or when they download a new app. Parents will also get statistics about their children’s mobile usage, which they can use to set usage limits (premium account).

MobileKids

There is still the much sought-after location feature, with a slight twist. The SOS button and Check-In feature is in but more interestingly, the child can request for their parents to track their movement live via GPS tracking, something like remotely ‘walking’ them to their destination.

Platform: iOS | Android

Bonus

Here’s a nifty app that we hope parents never actually need to use, but in the case of a child that has been briefly separated from the parents in crowded or very large places, this may help them locate the child faster.

FBI’s Child ID App

FBI’s Child ID App is designed by the FBI for parents to keep their children’s photos and important data, such as their height, weight, eye and hair color which can be emailed to the authorities at the tap of a button. The app also includes safety checklists and advice for parents to help keep thier children safe.

Platform: iOS | Android

FBI's Child ID App

MongoDB For Beginners: Basic Shell Commands (Part 2/3)

Posted: 19 Feb 2013 12:12 AM PST

In the previous MongoDB’s guide for beginner’s, I’ve covered the importance and terminology of MongoDB as well as how to setup Mongo on Windows and Mac. Resuming where we left off, today we’re going to look into some basic and usefull shell commands for MongoDB.

MongoDB Mac OS X Terminal list databases

You can perform almost any action through the Mongo shell. Since this is a beginner’s guide I won’t delve very far down into this rabbit hole. But you better believe there is plenty of documentation on the topic to research further.

Let’s use this small segment to create a collection of TV Shows which we can then reference later using PHP. If you run the command above, you’ll notice there are only two databases installed by default.

> show dbs

We can use the test database and inside create a new collection named “shows” which will hold our TV Show documents. So first I will define a couple of variables inside the shell window.

I’m using three different TV Shows along with their original debut airdate and the television network they ran under.

We need to use the MongoDB .save() command for saving new data and creating new collections.

> a = { title:"Arrested Development", airdate:"November 2, 2003", network:"FOX" }  > b = { title:"Stella", airdate:"June 28, 2005", network:"Comedy Central" }   > c = { title:"Modern Family", airdate:"September 23, 2009", network:"ABC" }  

If you enter each of these lines into the Mongo shell terminal you’ll get a response back with the JSON data formatted. We have just setup 3 variables which can now be passed into the save command for storing each TV Show as a document object in our collection of shows.

If you notice we haven’t actually created any new collection named shows. This is done on-the-fly by MongoDB only after you add some data into a collection. We access and create collections using standard JavaScript dot syntax.

Copy and run the codes below:

> db.shows.save(a)  > db.shows.save(b)  > db.shows.save(c)  

This will add each JSON object variable we created into the shows collection. After running the first command on TV Show A we will have a new collection displaying inside our test db. You can verify this by running show collections in the terminal.

But even more interesting, we can check if all the data is saved properly by running the find() query command as below:

> db.shows.find()  

In the next article, we’ll take a look into how to setup MongoDB for PHP. Stay tuned!

Attach Cloud Files Into Gmail (On The Fly) With Cloudy

Posted: 19 Feb 2013 12:03 AM PST

Are you tired of downloading a file from your cloud storage to your hard drive, just so you could attach it in Gmail to send to someone? Wouldn’t it be easier if you could just click ‘Attach File’ and select any file from any cloud storage you own on the Web?

We’ll show you how you can attach files in Gmail straight from cloud storage with a handy Chrome extension called Cloudy.

Cloudy

Cloudy is a Chrome extension which overrides the Gmail default system for attaching files. Instead of getting the usual file selection when you click ‘Attach files’, users will be presented with a Filepicker.io window with a list of cloud storage sources.

Integrating Gmail With Cloudy

To start using Cloudy, add it to your Chrome browser. It will ask for your permission to access your data on Gmail.

Log in your Gmail account and compose a new message.

This extension works with both old and new compose. To attach an attachment from cloud storage or other sources, click on the ‘cloud’ icon.

You will see an interface to choose the sources you want to select your attachment from. For this guide, we will be using Dropbox as an example.

Choose Dropbox and click on Connect to Dropbox.

The app will ask for your permission to connect Filepicker.io with your Dropbox account. You will only need to give permission once.

You will be taken back to your Gmail page and you’ll notice that now you can view all your Dropbox files. Choose which file you want to attach and click ‘Upload’.

The program first downloads the file…

… before uploading the file as your attachment.

Once the upload is complete, you can continue composing your email as normal.

To obtain files from the other cloud storage, just repeat the steps above and select the new cloud storage instead of Dropbox.

Room for Improvement

There are a few downsides of Cloudy: it has yet to recognize SkyDrive as a cloud storage, you can’t really attach more than one attachment at one go and it doesn’t work if the default language of your Gmail isn’t in English.

Apart from that, if you need to email files from your cloud storage a lot, Cloudy is a handy tool to have on your browser.

1 comments:

  1. Faadu said...

    Wow its Amazing. Its really worth to know about the kids safety. These are great app ideas

Post a Comment