Visual Studio 2012 Shouty menus
If you’ can’t stand the all upper case menus(TEAM!! YEAH, GO, TEAM!!) in Visual Studio 2012, here’s a way to get rid of this unsightly blight on Microsoft’s latest offering; Pop open rededit and create the following registry key and value HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General\SuppressUppercaseConversion REG_DWORD value: 1
QuickSort in Python
Just thought I’d post this little snippet to illustrate the facility with which array and list functions can be performed in Python, as opposed to classical languages like C++ Here’s a QuickSort implementation in C++, I’m not saying it’s the best, but hell it’s a QuickSort. Now look at the same in Python: I […]