Welcome!

Iterate thorugh collection for unique values only (using LINQ and C#)

Suppose, we are having an array of string or integer containing few duplicate values,  for instance:  int[] duplicateNumbers=new int[]{1,2,2,3,44,4,4,44,4,4,4,33,4,5,7,8,1}; Now we need to iterate through unique numbers only, for that we …

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Dynamic Portal Sorts

n filemaker we can’t execute sort functionality directly on a list of records on a portal as the portal sort records is defined in the portal definition. To handle sorting…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Creating a SSH connection using 'plink' (PuTTY) via C# application

What is ‘plink‘? Its a command-line SSH connection method provided by PuTTY. Lets say, you have an application running on windows platform and this application needs to connect to a…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
ClientIDMode on Asp.Net 4.0

Accessing the control’s id at runtime, when the page being used is the master page, has been a persistent issue, especially when we are trying to access the control’s id(Client Id) using Javascript.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Memory Optimization

Android applications are executed in dalvik virtual machine which is a modified Java virtual machine(JVM). As each java applications are assigned fixed heap size to execute in JVM, all android…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Performing cross thread operations using SyncronizationContext

Many of us may be familiar with the restriction against modifying a Control from any thread other than the one in which it was created, if we do so we…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Successive AJAX Call on Key Stroke

In my project, I have a search box. Here I need to made a ajax call on key up so that it will return search results for each text. This…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Working With LeadTools in Web Application

Working With LeadTools in Web Application Basically LeadTool is third party tool used for Image processing. LeadTools is used to display image on window application. If we want to use…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Demystifying Timer Class

Often in desktop applications we need to keep a particular process running at regular interval. And the only options which we are left with for it, are the timers. So basically…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!