Tuesday, March 29, 2011

Android SDK and AVD Manager slow download problem

I was Installing the Android SDK (http://developer.android.com/sdk/installing.html) on my Windows XP box.Problem : Slow download of android SDK platforms ~5kb/s Android SDK and AVD Manager Stalling During Download : Google Groups Android sdk download/update failing : Stack OverflowHow to speed up Android SDK platform download ?1. Allow download over http : check the option in Settings section of...

Monday, March 7, 2011

PHP Short Tag : Avoid Them

PHP Short Tag:  it  look like this: <?   ?> <?= $var ?> obvious ones: <?php  ?> <?php echo $var ?>. I downloaded an open source php script, thinking to work it out for my own purpose – but what sucks is - the project uses short tag that my host doesn’t *seems* to provide support for. For the...

Sunday, March 6, 2011

Wordpress Themes / Templates - Useful Codes

Here are few fairly basic but handy wordpress codes that a wordpress theme or template developer/designers could use as reference. i personally use these a lot while working with wordpress.   Wordpress Site Name: <?php bloginfo('name'); ?>   Wordpress Site Description: <?php bloginfo('description'); ?>   Wordopress: Home Page Link: <a href="<?php get_option('home'); ?>">Home</a></p> or <a href="<?php bloginfo('url'); ?>">Home</a>...