Flip Media unveils the Unofficial Dubai Metro website
Dubai–With residents eagerly awaiting the launch of the Dubai Metro, Dubai’s biggest infrastructure project, Flip Media today unveiled Mydubaimetro.com, a non profit portal designed and developed to provide residents of Dubai with a practical and usable guide to all things related to the Metro.
The one stop shop website offers key information and helpful tools such as a journey planner and fare calculator, information about each station stop as well as downloadable pocket maps.
“We saw a gap in the market where people, including ourselves, were curious and hungry for more information about the Metro,” said Yousef Tuqan Tuqan, CEO, Flip Media.
Dinesh Lalvani, Managing Partner of Flip added, “We’re bringing the best of web and technology to help people discover not only the basic information about the services available, but also help connect with fellow commuters. The idea is to make the metro not just about the destination but also about the journey and experience.”
The community portal gives users to post comments, blog and share photos and useful tips about the metro. The website is scalable, allowing for the addition of new technology and tools.
http://www.mydubaimetro.com/en
Source: Flip Media, flipcorp.com
Enabling surround sound on Ubuntu 9.04
Posted by Nishanth in Open source on May 9th, 2009
By default ubuntu 9.04 uses PulseAudio which use only 2 channels by default. I am using creative 4.1 speaker system . After installing Ubuntu I realized that only 2 speakers are working . After some googling I enabled the surround sound.
You can find the default configuration in /etc/pulse/daemon.conf.
sudo gedit /etc/pulse/daemon.conf
You can find a commented line ;default-sample-channels=2 in daemon.conf. Uncomment this line(remove ; ) and change this according to your surround system . For me its 4.1 so my entry is like below
default-sample-channels = 5
If it is 5.1 then entry should be like default-sample-channels= 6
You have to restart pulseaudio( kill the pulseaudio and run it again from run dialog) or restart your machine.
Configured BSNL broad band in Ubuntu 9.04
Posted by Nishanth in Open source on May 1st, 2009
Last couple of days I was trying to connect BSNL broadband in Ubuntu. I followed the instructions from ubuntu forums but all in vain. Finally I manually added the router ip address and gateway in /etc/network/interfaces and it started working
I had edited /etc/network/interfaces
sudo vi /etc/network/interfaces
and added below lines
iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1
Hope this may help someone. Move to Ubuntu, it is super cool
Unable to create directory WP 2.7. 1
Today one of my colleague Praveen had an issue with image upload in wordpress. His site was hosted with my account. The error he getting was “Unable to create directory - Is its parent directory writable by the server?” . I had changed the permission to 777 and still the upload was not working. After lot of googling we found a solution . We changed the settings for “Uploading Files” in Settings->Miscellaneous Settings. We set “Full URL path to files “ using the the full URL path.
Check the screen shot below:

jQuery height function not working in thickbox iFramed content? try this
Posted by Nishanth in web development on March 29th, 2009
Last week we were trying to run a scroll script (DYN-WEB’s scrolling code ) inside thickbox iFramed content. Unfortunately code was not working and the reason was the element height not working. We tried alternative jQuery element height and the result was same. The height we were getting was ‘0′.
Finally we fixed this issue by using setTimeout and calling the scroll script after a small delay.
$(function() { alert($(".box").height()); // not working, what we got was '0' setTimeout('alert($(".box").height());',500); // worked })
Hope this may help someone
Amazing cartoon by Jithin
Jithin a flash animator from Flip Media drawn a nice carton of Arun and me. Hmm he made me thinner again. I am trying to get fatter but these guys are not allowing me to become fatter not even in cartoon.

Firefox add-on Panic
Do you have fear of boss catching you while you are on YouTube?
Get rid of it, now there is add-on called panic which will allows you to close all your opened tabs and opens a new page which you can choose from settings
. Also there is a key combination to restore the closed tabs.
https://addons.mozilla.org/en-US/firefox/addon/6367
Funny right? Never try to fool your boss
We can specify a color in Google image search
Now there is extra parameter to filter the search result by color. The option is not available now , you have to change the URL to get the results.
http://images.google.com/images?imgcolor=red&q=shirt
Iterating CSS class for elements using jQuery
Posted by Nishanth in web development on March 5th, 2009
This is a small jQuery extension used for iterating class for elements. Here you can specify class name and also you can specify how to iterate the class. You can pass multiple class names for iteration.
How to call ?
$("div.row").iterate({iterateBy:2,className:'alternate'});
$("div.row").iterate({iterateBy:3,className:'red,green,yellow'});