a few things I learned in 3 hour python hacking
I don't usually use python. My daily language is C#, so it was a nice, refreshing time to code in python. A couple of weeks ago, I wrote a small plug in with...
I don't usually use python. My daily language is C#, so it was a nice, refreshing time to code in python. A couple of weeks ago, I wrote a small plug in with...
It is not a good practice to catch System.Exception, as the catch block will be executed with unexpected exceptions and it will hide the real error. But some...
When you try to debug your website locally, often Visual Studio shows more than one w3p.exe processes, if you run multiple application pools. Attaching to al...
In unit-tests, you mock out external dependencies. With Mock framework, you can verify that a correct value is passed into the dependency. Today, I had a cas...
Actually, this includes ReSharper shortcuts as well. Visual Studio & ReSharper CTRL + SHFT + N: Go to a file (ReSharper IDEA shortcut) CTRL + -: Go to a...