Welcome!

Retrieving lat/long IP address

Retrieve the user’s current geolocation(lat/long) using current IP address of the user. Retrieving User’s lat/long from their IP address using javascript:- 1.Using google clientlocation loader AP if(google.loader.ClientLocation) { lat =…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Js function to convert accented characters to corresponding English alphabets

My last project required me to deal with accented characters. We needed to change these accented characters to normal english characters because the accented characters gets encoded while being passed…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Salesforce: Custom Picklist in VisualForce Page

Suppose we are going to design a VisualForce page and we add a picklist for users on the page. If the field where you want to store the selection is…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to insert more than one record using a single insert statement

In SQL, after creation of table we insert data using INSERT keyword. Suppose we have to insert 10 records, we write 10 INSERT statement for inserting them. However, in SQL Server…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
WCF Error Handling : Passing Service Method Exception To Client

If any exception got in the WCF service method, by default it will converted to the FaultedException. So WCF client is unable to find the what exactly Exception raised at…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to convert a TIFF file to pdf using iText library in Java

Tip to convert TIF file to pdf using iText library. I am going to explain how we can convert a TIF/TIFF file to PDF document using iText API. Before moving…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Using Pivot Operator in SQL- Server

PIVOT can be used to generate cross tabulation reports to summarize data as it creates a more easy understandable data in a user friendly format. PIVOT rotates a table-valued expression…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to fix applet error

Recently we were working on a JAVA Applet for one our clients. Applet was working fine at our end and in client’s testing enviroment but when applet was integrated with…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Label decorator in Eclipse RCP

A label decorator decorates the label text and image for some element in eclipse RCP. For example lets say I have a object called TextDoc. One of the users has…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!