sublimesoftware.blogspot.com
Sublime Software: April 2009
http://sublimesoftware.blogspot.com/2009_04_01_archive.html
It's all just ones and zeros! Musings by an Australian C developer. Monday, April 13, 2009. Code Snippets for C in VS2005. Visual Studio 2005 introduced the concepts of. Handy little chunks of commonly-used code that are easily inserted to your own with some Intellisense magic. Hit a keypress, choose the snippet, fill in any fields and voila. Alas, C users were left in the dark with. No snippet support at all. Thankfully the release of the " Microsoft Visual Studio 2005 IDE Enhancements. Is to fire up a ...
sublimesoftware.blogspot.com
Sublime Software: Code Snippets for C++ in VS2005
http://sublimesoftware.blogspot.com/2009/04/code-snippets-for-c-in-vs2005.html
It's all just ones and zeros! Musings by an Australian C developer. Monday, April 13, 2009. Code Snippets for C in VS2005. Visual Studio 2005 introduced the concepts of. Handy little chunks of commonly-used code that are easily inserted to your own with some Intellisense magic. Hit a keypress, choose the snippet, fill in any fields and voila. Alas, C users were left in the dark with. No snippet support at all. Thankfully the release of the " Microsoft Visual Studio 2005 IDE Enhancements. Is to fire up a ...
robertdresler.cz
Robert Dresler: května 2012
http://www.robertdresler.cz/2012_05_01_archive.html
Vývoj software není jenom o kódování . Sobota 19. května 2012. Aneb ovládněte základy Vašeho řemesla. Je součástí Vaší profese vytváření programového kódu? Píšete kód produktivním způsobem? Znáte a používáte nástroje, které Vám pomáhají produktivitu zvyšovat? Saháte často při psaní kódu na myš? Kolika prsty píšete a jak rychle? Díváte se při psaní na klávesnici? Děláte často chyby a musíte se při psaní vracet o odmazávat? Někdo nepovažuje rychlost psaní. Průměr je mezi 50 a 70 wpm. Pokud se dostanete...
purplestoat.wordpress.com
How to connect to TFS through a web proxy which requires manual authentication. | PurpleStoat
https://purplestoat.wordpress.com/2012/04/11/how-to-connect-to-tfs-through-a-web-proxy-which-requires-manual-authentication
Life, the purpleverse and everything. How to connect to TFS through a web proxy which requires manual authentication. The proxy server we’re using at the moment doesn’t play nicely with everything. Using VS to access CodePlex is one of the things that doesn’t work. I’ve used this to get round it:. How to connect to TFS through authenticated Web Proxy – Estoy Programando – Site Home – MSDN Blogs. 15sep2012) This can also be used with TFSPreview. 11 April, 2012. Posted by Simon on 11 April, 2012.
purplestoat.wordpress.com
How to create the Profiles database for PurpleStoat | PurpleStoat
https://purplestoat.wordpress.com/2011/07/14/how-to-create-the-profiles-database-for-purplestoat
Life, the purpleverse and everything. How to create the Profiles database for PurpleStoat. This will be in the installer but it may prove useful to know what it’s doing. This is the command line, to be run from the Visual Studio Command Prompt (2010) or equivalent:. Aspnet regsql -E -S localhost -d PurpleStoatProfiles -A p. Which generates a database which just contains the tables:. With appropriate stored procedures, and the aspnet Profile roles and schemas:. 14 July, 2011. Leave a Reply Cancel reply.
purplestoat.wordpress.com
A couple of links on value equality for a type | PurpleStoat
https://purplestoat.wordpress.com/2012/03/26/a-couple-of-links-on-value-equality-for-a-type
Life, the purpleverse and everything. A couple of links on value equality for a type. How to: Define Value Equality for a Type (C# Programming Guide). In summary, “the implementation details for value equality are different for classes and structs. However, both classes and structs require the same basic steps for implementing equality:. Interface. (See step 2.). Implement the System.IEquatable(Of T). Implementation of Object.Equals(Object). Performs a reference equality check.). Public override int GetH...
purplestoat.wordpress.com
How to remove TFS source control info from a VS solution | PurpleStoat
https://purplestoat.wordpress.com/2012/09/15/how-to-remove-tfs-source-control-info-from-a-vs-solution
Life, the purpleverse and everything. How to remove TFS source control info from a VS solution. Recently, I decided to have a play with TFSPreview. I wanted to use some existing projects to see how I got on, so I decided to use a few that were already in TFS 2010. You may already know that not only does TFS insert files into your solution folders but also inserts lines/nodes in your .sln. Files, making it a pain to clean out. A search revealed an excellent post. 15 September, 2012. Enter your comment here.
purplestoat.wordpress.com
Ilminator | PurpleStoat
https://purplestoat.wordpress.com/2012/03/03/ilminator
Life, the purpleverse and everything. This looks interesting: ilminator. 3 March, 2012. Posted by Simon on 3 March, 2012. Https:/ purplestoat.wordpress.com/2012/03/03/ilminator/. How to create the Profiles database for PurpleStoat. Positioning a Window in a second monitor in Silverlight 5. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out.
purplestoat.wordpress.com
Debugging unit NUnit 2.6 in Visual Studio | PurpleStoat
https://purplestoat.wordpress.com/2012/03/25/debugging-unit-nunit-2-6-in-visual-studio
Life, the purpleverse and everything. Debugging unit NUnit 2.6 in Visual Studio. To be able to hit breakpoints in Visual Studio whilst running tests in NUnit. I found the solution here. Edit the appropriate NUnit config file, in my case,. And comment out the line. SupportedRuntime version="v2.0.50727". Comment out the next line to force use of .NET 4.0 -! SupportedRuntime version="v2.0.50727" / - supportedRuntime version="v4.0.30319" / /startup. And that should do it. I also commented out the line in.