Girish's code snippets
Monday, May 14, 2012
Quick way to generate RSA key with LinqPad
›
To generate private RSA key, we can use LinqPad Expression Executing below expression, will generate RSA key in result window. new System....
Monday, April 9, 2012
Powershell Find large images
›
Save the below code in red to .psm1 file eg. ImageFilter.psm1 and then issue following command in powershell console: Import-Module .\Image...
Thursday, February 17, 2011
Get single record per group in Foxpro
›
SELECT f.* from ( SELECT country, min ( id ) as MinId FROM mytable GROUP BY country) as X INNER JOIN mytable as f ON f.country = x.count...
Monday, January 31, 2011
id of selected RadioButton
›
To get ID of Selected RadioButton using jQuery (change nameOfRadio to actual radio name) var id = $("input:radio[name= nameOfRadio ]:c...
Thursday, October 14, 2010
Luhn Checksum in Foxpro
›
Based on Excel Vba from http://www.excelforum.com/excel-programming/482390-excel-vba-calculating-checksums.html ?IsLuhnChecksumOK("0000...
Friday, October 1, 2010
NHibernate.Driver.SQLite20Driver Exception
›
To fix below error, make sure to add reference System.Data.Sqlite and Copy Local = True in the properties window. FluentNHibernate.Cfg.Flu...
Tuesday, July 27, 2010
Excel last row column
›
lnLastRow = loExcel.activesheet.UsedRange.ROWS.COUNT lnLastCol = loExcel.activesheet.UsedRange.COLUMNS.COUNT
›
Home
View web version