A Programming Job Interview Challenge #3
This is challenge number 3 in our programming job interview questions column. Good Luck!
0 commentsSave Tags: how-to
A Tasty Team Building Exercise
A team building exercise you could never imagine. Fun, effective and.. tasty
0 commentsSave Tags: how-to, microsoft, opinion
Retrieve Browser Information In Silverlight
Many times we need to know which browser our content is running on. Silverlight gives us the ability to find that information through... more »
0 commentsSave Tags: gui, microsoft
History's Worst Software Bugs
Sixty years later, computer bugs are still with us, and show no sign of going extinct. As the line between software and hardware blurs, coding errors... more »
0 commentsSave Tags: opinion
A Great XPath Query Tool
Visual XPath is a free graphical XPath query tool which have many great features, some of those features are: Load an XML file and see it in a form of... more »
0 commentsSave Tags: how-to
Is [Serializable] == ISerializable? No!
The .NET Framework provides an easy-to-use serialization mechanism by using the [Serializable] attribute. If so why do we need the ISerializable... more »
0 commentsSave Tags: .net
Never ever synchronize threads without specifying a timeout value
Whenever there is more then one thread and more then one shared resource there must be some synchronization in place to make sure that the overall... more »
0 commentsSave Tags: reviews, usability
10 Visual Studio Shortcuts You Must Know
A great list of 10 Visual Studio Shortcuts any software developer must know and use.
0 commentsSave Tags: .net, how-to
Visual LINQ Query Builder - VS 2008 Add-In
Visual Linq Query Builder helps you create Linq to SQL queries for your programs
0 commentsSave Tags: web 2.0
Unhandled Exceptions - Handle them
Fortunately, the .Net framework makes it possible to take care of the exceptions that slipped out of our hands: the un-handled exceptions.
0 commentsSave Tags: .net, .net
Free Tool - Extract Hard Coded Strings to Resource Files
A Microsoft tool - Resource Refactoring Tool. This tool provides developers an easy way to extract hard coded strings from the code to resource files.
1 commentsSave Tags: tools, tools
How to Expose Your Collections Safely
We use collections all the time. Many times we have to expose them to users of our classes. How to expose collection safely so no one can change them... more »
0 commentsSave Tags: .net
Version Control and “the 80%”
A post about how 20% of programmers like innovation and new and 80% do their job without innovating. Some thoughts on Distributed Version Control... more »
2 commentsSave Tags: open source, opinion, tools, trends
Create your Logos, Buttons and Icons for Free
There are many graphic editor programs in the market. Whether those products are commercial or free, their users are required to gain...
1 commentsSave Tags: gui, web design
How to reset Identity Increment value in MS SQL
An Identity column in SQL Server is used to auto number the rows. When you delete rows from the table, the identity will not reset but you have few... more »
0 commentsSave Tags: how-to
3 Ways to Run NUnit From Visual Studio
Like it or not, whoever wants to have a stable code, need to write unit tests. There are 2 main unit testing frameworks for .Net Environment: MBUnit... more »
0 commentsSave Tags: .net, how-to
A Better Way to Extract Data from DateTime
A better and safer way to get date and time information using the DateTime object
0 commentsSave Tags: .net
How to Use HttpWebRequest over SSL
If you try to use HttpWebRequest for calling secured sites, and you are getting the following exception: “The underlying connection was closed: Could... more »
0 commentsSave Tags: .net, how-to
Why Convert.ToInt32 Might be Dangerous
Casting float to int is interesting. Not only it causes the value to get truncated, but it also changes binary representation. When you want to cast... more »
0 commentsSave Tags: .net, how-to