Saturday, February 23, 2019

Convert the tab separated data into grid-style data

We use different kinds of text layout styles, like Comma-delimited, tab-delimited, etc. Some of the customers give feedback about they find it more intuitive to see the data in simple grid layout for some tabular format data.
This program is simplified version of what we can do to convert tab-delimited data into grid layout table-style data with simple pure JavaScript.
SourceCode



Image compression using C#

Sometimes, we need to compress the image files while maintaining the image quality. This can be achieved by the following C# implementation....