Welcome!

How To Convert String Into Hashmap

What is hashmap? A Hashmap is like a foreign language dictionary. You have a key which you use to look up corresponding value.The Hashmap uses a hash of the key…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Fixed Header and Fixed First Column of a HTML Table using jQuery

Sometimes when designing a table in html page we find a lot of columns for a table which exceeds the width of the page. In this case the horizontal scrollbar…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to display the GridView Header and Footer when there is no data in the GridView:

Although GridView is a very powerful control provided by ASP.NET, it has a major flaw : Whenever we are populating the GridView from database, then, if there is some data…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to create Ordered List in ASP.NET

For almost all HTML controls there are its corresponding ASP.NET controls. For HTML ‘Div’ there is its ASP.NET counterpart ‘Panel’, for HTML ‘Span’ there is ASP.NET ‘Label’. Likewise for HTML…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Creating an Event on Google Calendar using Ruby on Rails

The option to share events on Google Calendar is an important feature introduced by Google to as an answer to the changing needs of users as they spend more time…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Hide all tool-tips in jqGrid

Here is a simple tip on jqGrid. Some times there are requirements in the project to hide all the tooltips(that is automatically displayed in all the columns) in jqGrid. So,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Parsing XML Content in C# – Possible Errors And Walkthrough

Often we deal with XML content/files in our projects, for read/write/parse/save/delete etc.. operations. The two classes that will come handy in this case are XDocument and XmlDocument. XDocument is what…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Access data from remote database server using FEDERATED Storage Engine in MySQL 5.0 and up

Syntax: CREATE TABLE table_name ( id     INT(20) NOT NULL AUTO_INCREMENT, name   VARCHAR(32) NOT NULL DEFAULT ”, other  INT(20) NOT NULL DEFAULT ‘0’, PRIMARY KEY  (id), INDEX name (name) ) ENGINE=FEDERATED…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Implementing Multi-Threading In Android Plugin For PhoneGap 2.6.0

In PhoneGap, JavaScript in the Android WebView runs on the main thread along with where the Java execute method runs. This sometimes causes blocking issues in the application. PhoneGap has…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!