Welcome!

Adding a stylesheet and javascript in wordpress.

In wordpress stylesheet and javascript can be added in the traditional conventional way. For eg this But problem arises when we go for child themes. If we build a child…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Interesting C# functions and their usage

I have faced some situations earlier in which something was getting done by looping though data structures but i wanted to overcome that. Then in process of avoiding those looping,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to make Vertical toolbar in ipad

Sometimes we require a vertical toolbar in ipad because we don’t have any controller for this. This code give you a vertical toolbar. This is the .h file for toolBar…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Using Regular Expressions with MySQL queries to Search

Regular expressions are a powerful tooI as most of you will agree but how does one use it with SQL queries ? Recently I had a requirement where I had…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Creating a Dynamic Pie Chart on I-Phone

A pie chart is a circular chart divided into sectors. In a pie chart, the arc length of each sector is proportional to the quantity it represents. It is used…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Capture identity values while inserting multiple rows in Sql Server 2005

SQL Server 2005 introduced the OUTPUT clause that I appreciate and want to demonstrate. We can use this clause to capture values from inserted and deleted virtual tables. Previously this…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Using =null instead of isnull

What is the result for this query although there null in address column SELECT EMPLOYEENAME,EMPLOYEEADDRESS FROM  EMPLOYEE WHERE ADDRESS=NULL Ofcourse will get a result set with no datarows Write a…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to generate data in XML format using LINQ

To create XML using LINQ as follows Step 1: XElement class takes care of converting the LINQ query resultant into data in XML format. So, declare the name space “using…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
UpsizingWizard to migrate an AccessDB to SQL

Upsizing Wizard is used to migrate the tables present in an access database to SQL server DataBase.It is found on the Access menu at Tools –> Database Utilities–> Upsizing Wizard.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!