Useful tips for everyday
How do you automate production deployment? How to implement deployment automation Use the same deployment process for every environment, including production. Allow anyone with the…
What are some of the problems with the Agile method of project management? Agile challenges and how to beat them Clashes with finance. “You don’t…
Does a constructor instantiate an object? The constructor initializes the new object. The new operator returns a reference to the object it created. Often, this…
What is the difference between standard .NET events and routed events? With normal events, you’d have to handle a Click event for all controls, because…
How to find the maximum element in an array? C File I/O Programs. This program find maximum or largest element present in an array. It…
Is protobuf better than JSON? Protobuf messages were 9% smaller than JSON messages and they took only 4% less time to be available to the…
What is a spec document? A product specification document, often referred to as a product “spec” is the document that tells the persons in the…
How do I bypass WCF username and password? To configure a service to authenticate its clients using Windows Domain username and passwords use the WSHttpBinding…
Who is responsible for production bug? In the absence of other direction from management, the team lead is responsible. Of course, if the bug got…
Does commented out code affect performance? 4 Answers. Commenting will not affect the script execution time in normal case. But the number of lines you…