Taiwan’tablet1s Institute of information industry has made a revolutionary by making HP Mini WinXP Netbook to Android Mini Tablet PC.The slick remix of an HP Mini 1000 runs XP when in netbook configuration, but then switches over to Android on an unspecified ARM processor when the screen is pulled off and used as a tablet.
It is much like a touch book It has the Atom in the netbook base and has been swapped for a VIA C7-M, so it’s not exactly a rocket, and second, the screen is connected by VNC, so video performance isn’t going to be all that great. We’re hoping the additional year of development III says it needs will solve some of those problems.

Share
Tagged with:
 



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:
 



useradd – Create a new user.

Summary

useradd creates a new user with specified options like username, home
dir, group details, password, etc …

Example

# useradd usr1 — Add new user usr1 with default settings.

# useradd usr1 -d /home2/usr1 – Create the new user’s home dir in
                                 /home2

# useradd usr1 -e 2009-04-30 — From 30/4/2009 the user acc will be
                                disabled.

# useradd usr1 -f 6 – After passwd expires, system will allow the
                       user to login for 6 days with a warning to
                       change his passwd.

# useradd usr1 -g staff -G student,lect, prof – Set his initial group
                 as staff and sublimentry group as office, lect, prof.

# useradd usr1 -p $1$d8 — Create the usr1 with the given encrypted
                           password. For No passwd, acc disabled.

# useradd usr1 -s /bin/csh – Set C Shell as the default login
                              shell for the usr1.

Share
Tagged with: