Minify CSS with C#

April 18, 2016 amit 0

The code below compresses and minifies CSS files. Minification is not the same as obfuscation. Minification removes all whitespace , comments and needless characters so […]

Minify Javascript with C#

September 18, 2015 amit 0

The code below compresses and minifies javascript files. Minification is not the same as obfuscation. Minification removes all whitespace , comments and needless characters so […]

Watermark an image in C#

September 3, 2015 amit 1

Function to add a text watermark in C#. It is a generic function which can be used in either a desktop application or an ASP.NET […]

Detect Similar Documents Using C#

April 26, 2015 amit 0

Discovering identical content or similar content is done using an algorithm called Finding Document Distance. Using this algorithm, applications for finding copyright infringements, detecting duplicate […]