This article was inspiring to read. Well, at least 4 out of the 5 ideas sound really cool to me. I don't completely see the benefits of trying to model the human brain with a computer seeing as we don't even understand how it works yet:
http://www.pcmag.com/article2/0,1895,2147447,00.asp.
I just got done with a long afternoon of implementing a Windows Service to self-host my WCF service. It was a bit trickier than I thought it would be so if I can save you the headache I'll be happy. A good place to start is by reading these two MSDN articles: http://msdn.microsoft.com/m... http://msdn.microsoft.com/m... Next, you'll want to understand these support articles: http://msdn2.microsoft.com/... ......
Examples of Traditional Software Development Methodologies Waterfall http://en.wikipedia.org/wik... http://www.cs.umd.edu/class... Spiral http://en.wikipedia.org/wik... http://www.sce.carleton.ca/... Rational Unified Process (RUP) http://en.wikipedia.org/wik... http://www-306.ibm.com/soft... CMMI http://en.wikipedia.org/wik... http://www.sei.cmu.edu/cmmi... ......
A few things I learned today while instrumenting some binaries in preparation for performance profiling: Resigning a .NET assembly is as simple as opening a VS command prompt and entering: sn –R MyAssembly.dll MyApplicationKey.snk Browsing the GAC through Windows Explorer -- open a command prompt and enter: SUBST L: C:\winnt\assembly Now you can browser the assembly folder using your L drive. This also makes it easier to reference a DLL in GAC inside a VS project. (tips taken from: http://aspalliance.com/1251... ......