Monday, May 31, 2010

Sinhala Google Transliterate Now Available

Sent to you by MIB via Google Reader:




On several posts I wrote about Google Transliteration. First they introduced it to Hindi then later other Indian languages such as Tamil, Telugu, Malayalam and Kannada also supported. Few months later they started to support more scripts such as Arab, Hebrew etc.
Today I found something interesting. Yeah now Google Transliterate supports Sinhalese too. Basically Google Transliterate is knowledge based phonetic translator.

Sinhala Transliterate in Action
Personally I don't recommend anyone to use Google Transliterate as it'll spoil your typing speed as well as you'll become so dependent on Google, which is not good at all.
Anyway it's good to have Sinhalese support. Soon this transliteration service will be available for Sinhalese in other Google's products such as Gmail, Orkut, Google Search, Blogger etc. Especially the desktop IME client Google Transliterate IME will also be available soon.
Also Check
Adios amigos.
Share/Bookmark


Huawei: 3D over 4G trials a success

Sent to you by MIB via Google Reader:



Huawei: 3D over 4G trials a success

via TechRadar: latest computing news on 4/29/10


Huawei announced this week that it has successfully demoed a 3D transmission over LTE (Long Term Evolution) services – one of the 4G standards for the future – marking a significant step for the technology.
The demo took place in Portugal and was in collaboration with TMN, the mobile operator of Portugal Telecom.
The trial was to showcase how a 4G network will enhance the mobile user experience and showcased some 3D content that was piped from a media server connected to the core network and also some nifty online gaming capabilities.
Next-gen technology
Speaking about the demo, Xie Xinping, Managing Director of Huawei Portugal said: "The promise of LTE will touch countless industries and bring advanced technology to everyday consumers.
"We are bringing innovative, next-generation technology to the 3D TV and mobile gaming industries.
"These LTE capabilities will enable operators in the future to develop new business models and to meet the growing demands for mobile broadband services."
The potential of 4G is pretty stunning. At this year's Mobile World Congress Huawei demonstrated downstream data capacity of 600 Mbps for LTE advanced technologies, which would download a 4GB movie in a minute.
It also chose CTIA Wireless 2010 to show off downlink speeds of up to 1.2Gbps.
Our own 20MBps setup is now looking very puny indeed.


Sunday, May 30, 2010

Good SMPP testing tool

http://rapidshare.com/files/393502691/SMPP_test_tool.rar.html

Saturday, May 29, 2010

MSI Shows External Graphics Card w/ATI

MSI Shows External Graphics Card w/ATI

9:20 AM - May 27, 2010 by Kevin Parrish - source: Tom's Hardware US

Here's a good way to beef up your laptop's graphics.

ZoomMSI plans to showcase its upcoming Graphics Upgrade Solution (GUS) at Computex next week, an externally-housed ATI Radeon HD 5670 1 GB card that connects to a notebook's ExpressCard slot. MSI's solution is one of many external options in the works--both Gigabyte and Shuttle recently displayed their offerings at CeBit back in March. As seen at the show, Gigabyte has chosen the docking station approach whereas Shuttle's I-Power GTX mini will use a special GTX connector.

As for MSI's solution, the company has tweaked the limitations of the ExpressCard connection by using a thicker, shielded copper cable and "improved" associated electronics. This supposedly allows for "over 70-percent" of the theoretical bandwidth as opposed to the 50-percent or less seen with other external solutions. MSI said that the next generation of GUS devices will take the simpler route by using USB 3.0, however the current model will still provide a nice performance boost over integrated graphics.

While this option may sound encouraging for gamers, there are a few positives and negatives associated with the technology. The external device will need a separate power source, and could prove cumbersome when traveling. However that's only a minor setback given that it can provide up to three additional video outputs. This means that consumers can set up a 4-display array using the output from the laptop (or use the laptop's LCD) and the three ports provided on ATI's card.

MSI said that the upcoming GUS will be offered in two forms: without the ATI card for just $99 to $109, or with the Radeon HD 5670 card for $169 to $229. As it stands, the device can't support cards more advanced than the Radeon HD 5670, as the GUS has a maximum power draw of 84 watts and does not have a 6-pin power adapter.

Regards,
darshana

Every Action has a Reaction !

Saturday, May 22, 2010

HP Making Wrist Computer with Flexible Display !

P Making Wrist Computer with Flexible Display


A watch to make Dick Tracy blush.

Zoom

Both LG and Samsung have launched Dick Tracy-esque wristwatch cell phones. Now HP is fighting them for the title of most bad-ass watch ever with a new piece designed for the military. Unlike LG and Samsung, HP is actually referring to this thing as the Dick Tracy watch.

The watch will use HP's flexible display that has been talked about in recent months. Carl Taussig, director of information surfaces at HP Labs in Palo Alto, California, claims the thin plastic won't break and says it only has "the potential" to be flexible. A March demonstration of HP's flexible display shows HP's CTO rolling up the display and stuffing it in a poster tube, which would certainly suggest it has more than the potential to be flexible. However, Taussig's remarks could have something to do with the fact that CTO Phil McKinney said during the demonstration that rolling up the displays is not something you'll be able to do time and time again without damaging the material. McKinney said the display would eventually fail if rolled more than a few times, citing six as the maximum number of times you could bend the display.

CNN reports that HP's watch will show maps and other strategic information to soldiers in remote combat fields. The display will run on solar energy using panels printed onto the watches using a technology developed by PowerFilm.

HP hopes to have a prototype ready in about a year.

http://www.youtube.com/watch?v=LHmqKgIRYo0&feature=player_embedded

Regards,
darshana

Every Action has a Reaction !

Wednesday, May 19, 2010

Install fonts in ubuntu

01. cd /usr/local/share/fonts
02. mkdir myfonts
03. copy font file to "myfonts"
04. mkfontdir myfonts/
05. fc-cache

Monday, May 17, 2010

Compress and Split Files in Ubuntu 9.10

01. cd films/split-files (change the filepath to where you want to keep
the split files)

02. tar -cvj /home/username/films/large-files.avi | split -b 640m -d – "large-files.tar.bz."

You will now see several files appearing at the split-files folder, each
with file size of 640MB and with filenames large-files.tar.bz.00,
large-files.tar.bz.01, large-files.tar.bz.02, etc.

To recover and extract the split files, type

#cat large-files.tar.bz.* > large-files.tar.bz
#tar -xvj large-file.tar.bz

and you can get the original file back.

Wednesday, May 12, 2010

Portable Software

Portable Software Applications that run from USB

New Linux tips

Get largest 20 directories
[shell]# du -xk | sort -n | tail -20

Set date/time
Set both date and time
[shell]# date -s "MM/DD/YYYY HH:MM:SS"

Set date only
[shell]# date -s "MM/DD/YYYY"

Set time only
[shell]# date -s "HHMM"

Note:
You must update the hardware clock too; otherwise new settings
are lost after a restart.
[shell]# hwclock -w


Set proxy authentication to Linux OS
[shell]$ export
http_proxy=http://<username>:<pswd>@<proxy_host>:<proxy_port>


Set dir/file permissions
For dirs:
[shell]$ find <path> -type d -print0 | xargs -0 chmod 0755

For files:
[shell]$ find <path> -type f -print0 | xargs -0 chmod 0644


Loops on shell
e.g.:
[shell]$ for f in *.dist; \
do cp $f `basename $f .dist`; \
done
copies any file matching <filename>.dist in current location
to <filename>


Advanced shell commands - find and xargs:
e.g.:
Searches files with name pattern `./*_voice_greet.vox` and copy to
`~/rec-greets/`
find . -type f -name '*_voice_greet.vox' | \
xargs -i -t cp {} ~/rec-greets

Searches files with name pattern `./*.vox` and convert to wave using
vcecopy
find . -type f -name '*.vox' | \
xargs -i -t /opt/nms/bin/vcecopy -c16 {}
~/rec-greets/wav/{}.wav

Searches files modified beyond 2 days
find . -mtime +1 -exec ls -l {} \;

Ref:
http://www.museum.state.il.us/ismdepts/library/linuxguides/abs-guide/moreadv.html


User management
add a user with account expiry and password expiry
useradd -e 2010-12-31 amil -g qa -G dev
echo amil.1 | passwd amil --stdin
passwd -x 30 -w 10 amil
chage -d 0 amil


Print shared library dependencies (ldd)
[shell]$ ldd /usr/bin/ssh


Outlook to Evolution:
http://freshmeat.net/projects/libdbx
http://sourceforge.net/projects/ol2mbox


Ubuntu
Start/stop scripts:
/etc/rc3.d/README
/etc/init.d/README
http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit
Move minimize, maximize, close buttons to right/left
gconftool-2 \
--set '/apps/metacity/general/button_layout' \
--type string ':minimize,maximize,close'


Some links:
http://www.linuxhomenetworking.com
http://www.linuxquestions.org
http://everythinglinux.org/rsync

Debian/Ubuntu:
http://www.debian.org/doc/debian-policy

Wednesday, May 5, 2010

The Thrilling Potential of 'SixthSense' Technology

Computer Ethics

Online Activity _______(Male Female)

Chat Rooms __________ (22% 20%)
Instant messaging ______(59% 57%)
Pornography __________(58% 18%)
Gambling _____________(6% 4%)
Gaming _____________(51% 40%)
Auction Houses _______(24% 22%)
Shopping ___________ (24% 31%)
Stock Watching _______(8% 5%)
Download Music ______(52% 47%)
Personal Email _______(78% 76%)