“The Biggest threat to innovation is internal politics and organizational culture, which does not accept failures and/or does not accept ideas from outside and/or cannot change.” I’m writing this article based on the experience of working with different development teams.
How to change SVN bindings – (Tortoise SVN)
Recently our SVN server location was moved to a new location. As a part of this migration developers were supposed to change their svn bindings. For source control, we use Tortoise SVN in our company. Developers use Visual SVN plugin
How to add Images to PDF using iTextSharp
Most recently I used iTextSharp a lot for a lot of my projects. I personally like the library because of the fact it is free and open source. In this post I will try to explain how to manipulate and
How to view TCP / UDP statistics using command prompt
Recently I ran into issue with WCF services. Instead of http port, I was using tcp port to host my wcf services. One of the challange for me to find out how many calls were being made to the services.
How to Merge PDF files using iTextSharp
I ran into a situation where one of the functionality in my application was supposed to display all files associated to a selected project in modal window. The end users would be able to choose one or more associated files
How to add Fixed Header in iTextSharp Table
In order to add a fixed header to iTextSharp table on each page, below syntax can be used PdfPTable pTable = new PdfPTable(NO_OF_COLUMNS); pTable .HeaderRows = 1; Above line will freeze the first row of table in each page. Keep Smiling and
How to add a new page in iTextSharp PDF when PDFReader object is used
So, last night I ran into a situation where I was trying to add new page to iTexSharp PDF. One of the project requirement was to develop a unique single page template which displays the table in vertical tabular format.
Event Log Write Entry issue Character Limitation in Windows Server
Recently for a small project, our development team used c# EventLog object to write all exceptions to the system event log entries. We ran into an issue where the system was catching exceptions and was writing into Event Log on
Using Toastr Libraries to display messages instead of alert boxes.
Toastr is one of the best JavaScript libraries to display non-blocking messages. I used Toastr in SPAs (single page applications) and in MVC applications. You can directly download the JavaScript files from here ( JavaScript/ CSS). Minified files can be downloaded here (JavaScript
So, There are lots of Blogs out there in the internet world; why create a new Blog.
After reading the blog on How to Build a Blog to boost your Career by John Sonmez. I thought why wouldn’t I give it a try to see if I can build a blog to share my experience and ideas