Android app, "Places Directory" listing places

We mostly get into a situation were, the nearest ATM, Bank, Bar, Gas station and much more are not known in a new place. Few members from Google Mobile decided to address this using 20% of their time. This resulted in “Places Directory” a new Android App.

This application uses the GPS data (for your current location) and Google Maps, to find the places near by. The places fall under 11 categories. They are,

  • Attractions
  • Banks
  • Bars
  • Coffee
  • Gas Stations
  • Hotels
  • Medical
  • Movie Theaters
  • Parking Restaurants
  • Shopping
  • Taxis

Android app, "Places directory"

The resultant places are shown with distance, direction, ratings, pictures, reviews and contact information. The direction arrows point to the direction of the place, which is one cool feature.

From androidguys

Share
Tagged with:
 



groupmod — Modify a group

Summary

The groupmod command modifies the system account files to reflect the
changes that are specified on the command line.

Example

# groupmod -g 600 mygrp — Change the mygrp Group ID to 600.

# groupmod -n mygrp1 mygrp — Change the mygrp name to mygrp1.

Group informations are stored in /etc/group files.

Share
Tagged with:
 



While debugging a program, some variables may need to be printed in different formats (data types or base power), gdb supports a command x/FMT this command prints the value of the variable in different formats,

we use the same hello world program we used for disassemble, the screens are shown below,

Hello world source

Hello world source

(more…)

Share
Tagged with: