Connecting laptop to several monitors is not as easy as connecting desktops to several monitors. This is because on desktop, you could usually add two or more display adapters …
Resharper is a great and must-have tool (plugin) for Visual Studio. It improves the code quality and helps to identify potential problematic code. The ‘Refactoring’ feature is great but …
Sometimes you need to fill in a form in PDF with signature. Of course, you can print the form out, fill them with pen and scan them into images. …
The msbuild.exe is the core of the Visual Studio compiler. It has a switch option /verbosity which can be one of the values: q, m, n, d, and diag. …
Why are catching any general exceptions bad? They are just to suppress run time errors which may cause some more serious and worse errors later. try { } catch …
The crontab is a job executor that can be set to run at a given specified interval. The command crontab -l will list the current job lists one item …