Software / Technology Tips

Calling a Silverlight function from Javascript and vice versa.

In this tip we will discuss how to call a Silverlight function from our Javascript code and also the reverse technique. All the javascript functions discussed here should belong on the same aspx page where the Silverlight control is present. Calling a Silverlight function from Javascript I have a class, say, ‘Common’ in my Silverlight…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Google Geocoding API V3 implementation in Java

This tip is regarding Google Geocode which in itself is a part of Google Map API. Google has released V3 of Google Map API recently. Let me first describe What is Geocoding ?? Geocoding is the process of converting addresses (like “1600 Amphitheatre Parkway, Mountain View, CA”) into geographic coordinates (like latitude 37.423021 and longitude…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

S2S Data Migration

Things to Set up for S2S migration: a) First of all we need to enable Salesforce to Salesforce connection in both the source and target organisations. b) Then we need to enable the Connection tab. c) In the connections tab we need to create a new connection by selecting an account and contact from the…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Enabling memory leak detection in VC++

Its a good practise if we don’t depend on IDE/third-party tools/software to detect memory leaks in our code. Its better if we can predict before hand the consequences of writing each line of code. But there may be situations where we need to work on projects written by someone else. In such cases these third-party…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Screen Scraping in ASP.NET

Definition : Screen scraping is a technique in which a computer program extracts data from the HTML output of another program. Further details : Screen scraping is a lot easier in ASP.NET. The only thing you have to do is to how to retrieve HTML from webpages dynamically.But Using the .NET library it is easy…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Minify js code using jQuery

How to attach same function with multiple HTML elements by a single line js code using jQuery Recently I was working on a online shopping cart and auctioning site which required a lot of Javascript code. Each page in the site had a number of “Buy” or “Bid” links associated with different HTML Ids. For instance, if…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Get custom URL when PhoneGap application is launched from custom URL

Introduction: If you are opening your Android app using custom URL scheme and passing some parameter in the custom URL, then after opening the app you may need to get the parameter. So here is the solution for it. Description: Suppose you are opening your application from other application e.g. email and you need some…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Google Map Web Service With JSP

Then drag the getGoogleMap into index.jsp file. The page will contain the following code Google Map Demo App Hello World! GoogleMapService.getGoogleMap Method is the  method responsible for getting the location in map. Method getGoogleMap has three parameter which are address,zoom and iframe. address – address string to generate map for. Zoom – level of zoom…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Uploading Image To Dropbox Using Paperclip-dropbox

In this tip I am going to explain how to upload image to a dropbox account. For uploading image to dropbox we have a Ruby gem “paperclip-dropbox”. But before uploading image we have to create a dropbox application at You have to fill up a form to create an application , below is a sample…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Dynamic Tree in Extjs4.0.2

Tree: Retriving the data from database and showind as a node of tree. //creating a treePanel. var tree = Ext.create('Ext.tree.Panel',{ width:400, id:'Tree_id', height:700, id:'Tree_id', renderTo: Ext.getBody() //listeners:{'click':function(node,event){alert('hi');}} }); //root node config.. tree.setRootNode({ text:'Poll', visible: false }); //Return the object of root node of tree. var root = tree.getRootNode(); //Append the child on root node. var…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!