Welcome!

How to Trim a String Using JavaScript

Context: In programming, trim (or strip) is a common string manipulation function which removes leading and trailing whitespace from a string. Precisely what constituteswhitespace varies between programming languages and implementations,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
SQL Server Index – IV (Composite and Covering Index)

Covering Index Covering index is also a type of composite index which covers a query. In other words, it includes all the columns that are needed to execute a query.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Configuring MSSQL Server to talk to PHP in Ubuntu

B. Creating MSSQL extension 1) We get the PHP source code $ apt-get source php5 2) Extract the compressed folder $ tar -zxvf php5_5.3.6.orig.tar.gz 3) Change directory to the extracted…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
DateTime Mystery In SQL Server

In this tip I want to share one of the more interesting aspects of DateTime datatype which I came across while working in the recent past. We have worked on…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
UBUNTU MOD_h264_streaming setup

Setting up MOD_h264_streaming server on Ubuntu. Please find the steps for setting up a MOD_h264_streaming server on Ubuntu. ================================================= - Create downloads directory in logged in user home == /home/…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Capitalizing first letter of each word in a string in C# according to culture.

Very Often we come across the need to capitalize the first letters of some word or some text. For example : when we want to display users name or city…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Speech Recognition using Sphinx4 in Java

What is Speech Recognition? Speech Recognition means recognizing the speech and converting it into readable form (text). With the help of speech recognition we can take the user voice as…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
JavasScript Remoting using VisualForce and Apex (SalesForce)

Remoting allows us to perform almost any apex logic via Javascript. Let’s consider Javascript remoting as similar as AJAX call done in normal websites built using PHP, ASP.NET or so.…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Creating a Grid using Array data store in ExtJS 3.3

For creating a Grid in ExtJS 1st we need to create a data store. Three types of data stores are there 1 – Array 2 – JSON 3 – XML…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!