18 October 2009, 10:27 pm
Last week I checked my RTA fines at Dubai Police website. I got shocked to see a new ticket which stated I had to impound my car for 30 days or pay 3000 Dirhams as fine. As it was too much money I decided to leave the car in the impound for 30 days.
Went to RTA booked my car for 30 days and parked it here
Picture of the impounded cars parking lot …
.
.
The whole process took 4 hours and my brother Thowfiq helped me on this.
Moral of the story … “Don’t Drive Use Metro”
28 September 2009, 6:45 pm
For me it took sometime to figure out how to show activity indicator in the navigation bar. Later I found it was very simple. When you push a view to the navigation you get to play with navigationItem property on the view that is being pushed. In your viewWillAppear method you can add this code.
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:YES];
//Create an instance of activity indicator view
UIActivityIndicatorView * activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];
//set the initial property
[activityIndicator stopAnimating];
[activityIndicator hidesWhenStopped];
//Create an instance of Bar button item with custome view which is of activity indicator
UIBarButtonItem * barButton = [[UIBarButtonItem alloc] initWithCustomView:activityIndicator];
//Set the bar button the navigation bar
[self navigationItem].rightBarButtonItem = barButton;
//Memory clean up
[activityIndicator release];
[barButton release];
}
I have done a sample application demonstrating this code. It is based on iPhone navigation project template. In the application I have two action to start and stop the animation.
-(IBAction)startActivity:(id)sender{
//Send startAnimating message to the view
[(UIActivityIndicatorView *)[self navigationItem].rightBarButtonItem.customView startAnimating];
}
-(IBAction)stopActivity:(id)sender{
//Send stopAnimating message to the view
[(UIActivityIndicatorView *)[self navigationItem].rightBarButtonItem.customView stopAnimating];
}
Screen shot of the application
Download Load Activity Indicator Xcode project files.
9 September 2009, 6:20 pm
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.
8 September 2009, 10:39 pm
3 September 2009, 11:24 am
Looks good to see our Linux user group being featured on meetup website homepage. Way to go guys and thanks to all the member who took so much effort to make this group an active one.

They must have liked Alexander picture very much LOL !!!
1 September 2009, 11:49 am