List/Grid

TipnTricks Subscribe to TipnTricks

Disable Save Remember Password Option in Firefox

Disable Save Remember Password Option in Firefox

It can be very annoying to have “Remember Password” option in a browser if you login to several sites everyday. You don’t want anyone else to login to your account… Read more »

Play Youtube Video In Android App with Embeded Script

Play Youtube Video In Android App with Embeded Script

These are the samples of how to Embedded Script For Youtube Video.

Filter to search Active Directory using first name and last name in C#

I took a lot of time to figure out, how to search the AD using first name and last name. DirectorySearcher search = new DirectorySearcher( new DirectoryEntry(LDAP_CONNECTION_STRING, LDAP_DOMAIN + @”\”… Read more »

“Cloning git repo” has encontered a problem – Titanium Fix

“Cloning git repo” has encontered a problem – Titanium Fix

While working on my iPhone apps via Titanium Studio i encountered into this issue “Cloning git repo”. I wanted to import sample project “KitchenSink”, and thus i got this error… Read more »

Play remote and local media files in Titanium

Play remote and local media files in Titanium

Titanium is a bit complex, but very well documented and great tool for mobile applications development. I am discussing here, how you can play both local and remote sound files… Read more »

How to sleep better ?

How to sleep better ?

Keep a regular sleep schedule : Go to bed at the same time every night. Choose a time when you normally feel tired, so that you don’t toss and turn…. Read more »

Export to excel from any List in C#

Here is the code snippet to export to excel from any list object. Call SetExcelExportParameters method and pass ExcelData object, which would include the columns and the field of list… Read more »

Secured cookie based authentication in C#

Recently I have written a C# class for cookie based authentication in one of our projects. public class ValidateModule { public static string sharedSecret = ConfigValues.SharedSecret; private static byte[] _salt… Read more »

Connecting PHP to Microsoft SQL Server on Debian/Ubuntu

1. Install FreeTDS and the PHP MS SQL extension sudo apt-get install freetds-common freetds-bin unixodbc php5-sybase Note: That is correct – the MS SQL extension is in the “php5-sybase” package…. Read more »