Welcome!

Copying Structures in Coldfusion

Coldfusion has the feature of creating structures which is a JSON like key-value pair variable, essentially used to store multiple variables as a single collection. There are different ways to…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
AutoComplete text box using PHP PEAR Class

Code Analysis require ‘HTML/QuickForm.php’; If PEAR is enabled in localhost then it will include the QuickForm.php file which has classes to generate Quickform. $teams = array(‘Amit’,’Satyan’,’Saswat’,’Chinmoya’, ‘Sonali’,’Kiran’,’Ansuman’,’Hemendra’); Storing the names…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Install Windows apps in ubuntu

Install Go to System -> Administration -> Synaptic package Manager. In Synaptic package Manager window search for “playonlunux” and install it. or open terminal and write sudo apt-get install playonlinux…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Install assembly on Windows Server 2008 R2 GAC

During Microsoft Dynamics CRM plugin run, we see an error message “Could not load file or assembly ‘Microsoft.Xrm.Client'”. We were using this assembly in our plugin file. After searching, we…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Getting Contact List With Contact Information From Android Devices using PhoneGap

You can easily find the contact list with the information like phone number, contact name, email address and birthday from Android devices by simply using PhoneGap. Following steps expalin how…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Clear Cache in Rails

On implementing basic sign in functionality we need to handle our session properly. Even after proper session management, in following case we can view users confidential profile information. ->login into…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Use of 'prawn' gem to generate PDF in Rails

Add this gem to the gemfile of your application and run the ‘bundle’ command. gem 'prawn' Create a PDF Mime::Type inside config/initializers/mime_types.rb. Mime::Type.register "application/pdf", :pdf I have created a respond…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to merge your Javascript files in ASP.NET

When a user is loading a web page, for every object on the page (e.g: images, stylesheets, scripts) there is a corresponding HTTP request made to the server. These HTTP…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to store C++ object pointers in Core foundation's ordered collections like CFMutableArrayRef, CFMutableDictionaryRef.

We create a new mutable array object using the function CFArrayCreateMutable which has following signature: CFMutableArrayRef CFArrayCreateMutable( CFAllocatorRef allocator, CFIndex capacity, const CFArrayCallBacks* callBacks);  Where the first parameter gives the…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!