Skip to main content

Posts

My first blog from my android tablet

I picked up my Acer Iconia. A500 tablet from BestBuy yesterday. 24hrs later, the screen looks like its been used for 6 months. It's scary how these things keep you captivated. There are thousands of reviews out there, so I am not going to bore you with another "in-depth" review. Here is short and sweet account of my rendezvous with my new found love interest.

Tribute: The day that is 9/11.

One has to admire the relentless spirit of a nation to value the immense loss on this day ten years ago. And their courage to stand by it. Hats off to those in United 93 who chose to sacrifice thier life over thier fellow countrymen. And to the countrymen who don't forget the loved ones, and show gratitude to those who served. May the families, whose loss is immeasurable, find peace this day. May the souls rest in peace. May there be "No such day to any nation on the face of the planet, EVER again" . Today, so We pray.

Thank you.. For the Rakhis

Archana.. Amulya..

Journalism? or something else?

Here is why colbert is my source for all the "real" news. The Colbert Report Mon - Thurs 11:30pm / 10:30c Norwegian Muslish Gunman's Islam-Esque Atrocity www.colbertnation.com Colbert Report Full Episodes Political Humor & Satire Blog Video Archive

MySql Copying Table Structures.

Some times you need to copy only table structures across databases. This article describes two ways of doing it. If the whole database schema need to be exported, mysqldump is very effective. A --nodata flag will dump all tables' schema. Like this. mysqldump --nodata -p -u username databaseName But if you want to copy a specific table, individually, you could use "create table like" feature. You could create it even from a different database. However it must be on the same mysqld instance. Like this. create table newtable like oldtable; --Or from a table in other database create table mytable like otherdatabase.tablename;

Developing Userscripts for Chrome (caveats)

To develop Chrome extensions, crx is the best way. But the user scripts that are developed in general for Greasemonkey can also be delivered for Chrome, if a few easy rules are followed. 1. @required and @resource don't work. By default, atleast for now, These two Userscript metatags donot work on Chrome. If you need to load a js file, instead of using @required - try to use document.createElement. Similarly with @resource. 2. Some GreaseMonkey helper methods don't work or are restricted. Methods with GM_ prefix from userscript api may not work. Particularly, unsafeWindow, GM_registerMenuCommand, GM_setValue, or GM_getValue are not supported. GM_xmlhttpRequest will work but not only on the same domain. 3. @include s are not shown while installing. This may not be a deal breaker for developers, but sure is for users. The patterns used in @include is not shown while installing. Instead a generic message is shown as below. This message may scare the users away. ...