Skip to main content

UFONE Launches 3 Android Phones

Ufone Image (U8800):

Ufone Image sports a 3.8-inch capacitive touchscreen, a 5 megapixel camera with LED flash, Bluetooth, GPS / A-GPS and WiFi connectivity.

Ufone Image Android Phone is powered by a 800MHz Cortex-A8 processor with 512MB RAM.
It has 4 GB of internal memory and supports microSD / SDHC expansion.

Specifications:
•Android™ 2.2 (Froyo) OS

•5 MP Auto Focus Camera with LED flash

•3.8” full touch screen supporting auto rotation

•G-sensor

•720p HD video capture and playback

•WIFI with portable hotspot support

•GPS/AGPS

•Google Software Suite

•Web browsing with Flash support

•512 MB RAM + 4GB Memory

•Price: Price: Rs. 24,999

•Free 30 MB GPRS, Every month for 18 months

Ufone Verve (U8500):


Ufone Verge runs on the Android operating system, and comes with a music and video player supporting H.264, H.263, MP4, eAAC+, WMA and MP3 file types.
This model sports a 262K color touchscreen measuring 3.2-inches; you also get features such as an Optical trackpad, Accelerometer sensor, Bluetooth, 3G and a memory slot for up to 32GB MicroSD cards.
Specifications:
•Android™ 2.1 OS

•3.2” full touch screen

•3.2 MP Camera

•Google applications

•G-Sensor

•Optical Trackpad

•FM Radio

•GPS/AGPS

•Price: Rs. 15,499

•Free 30 MB GPRS, Every month for 15 months
 


Ufone Ideos (U8150):


We are familiar with Huawei Ideos, which is now brought by Ufone as well. Ufone says it is offering Black Ideos, which is otherwise not available in Pakistan. In addition, Ufone is giving away one free casing with all Ufone Ideos (until stock lasts).


•Android™ 2.2 (Froyo) OS

•2.8” full touch screen

•Micro SD Card support upto 16 GB

•G-Sensor

•GPS/AGPS

•Google Software Suite

•Price: Rs. 11,999

•30 MB Free GPRS for 6 months
 

Comments

Popular posts from this blog

Configuring Failover and Load Balancing with HAproxy using Keepalived

Network Scenario: LB1: 192.168.10.10 LB2: 192.168.10.11 Virtual IP: 192.168.10.12 APP_Server1: 192.168.10.20 APP_Server2: 192.168.10.21 Load Balancing: STEP 1 - Install HAProxy: HAProxy package is available under default yum repository for CentOS, Redhat systems. Use the following yum package manager command to install HAProxy on your system.   # yum install haproxy   STEP 2 - Configure HAProxy : Update your HAProxy configuration file /etc/haproxy/haproxy.cfg as per your requirement, You may also use below given configuration file as an example of setup and modify it. Keep the config file same of both servers i.e. LB1 and LB2.   ----------------------------------------------------------------------------------------------------------- global         log /dev/log    local0         log /dev/log    local1 notice     ...

ElasticSearch Clustering and Backups

ElasticSearch Installation: The version we want to install is 2.x (latest sub version of 2). First we have to install java on centOS machine with following command: sudo yum install java-1.8.0-openjdk.x86_64 Install Public Signing Key:   rpm --import https://packages.elastic.co/GPG-KEY-elasticsearch Create new repo in your /etc/yum.repos.d/ directory. For example I have created elasticsearch.repo here. /etc/yum.repos.d/elasticsearch.repo -------------------------------------------------------------------------------------------- [elasticsearch-2.x] name=Elasticsearch repository for 2.x packages baseurl=http://packages.elastic.co/elasticsearch/2.x/centos gpgcheck=1 gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch enabled=1 --------------------------------------------------------------------------------------------- Now Elasticsearch 2.x will avilable for installation using yum   yum install elasticsearch After installation enable the service a...

Line Following Robot!

What is a line follower? Line follower is a machine that can follow a path. The path can be visible like a black line on a white surface (or vice-versa) or it can be invisible like a magnetic field. Why build a line follower? Sensing a line and maneuvering the robot to stay on course, while constantly correcting wrong moves using feedback mechanism forms a simple yet effective closed loop system. As a programmer you get an opportunity to ‘teach’ the robot how to follow the line thus giving it a human-like property of responding to stimuli. Practical applications of a line follower : Automated cars running on roads with embedded magnets; guidance system for industrial robots moving on shop floor etc.   I started with building a parallel port based robot which could be controlled manually by a keyboard. On the robot side was an arrangement of relays connected to parallel port pins via opto-couplers. The next version was a true computer controlled line foll...