JetBrains ReSharper 3.0 Exceptions Trying to Edit Options

Trying to edit some ReSharper options I used to get an internal exception alerts. The first thing I thought about was reinstall of ReSharper. The problem is that simple reinstall was not effective. As ReSharper uninstall is not clean for some reason it leaves some garbage after itself. So I just searched my computer [...]

Generic Genetic Optimization Algorythm (c#.NET)

Just decidet to try to write a generic genetic optimization algorythm class. The essential thing in genetic algorythm is individ. And this is its c# interface:

 interface IIndivid  {   object Value   {    get;    set;   }   IIndivid Mutate();   IIndivid Cross(object obj);   IIndivid Optimize();   void Validate();   IIndivid Clone();  }

Now we need a set of delegates to [...]

Some common DotNetNuke installation problems

Decided to look through a free content management (CMS) system – DotNetNuke (www.dotnetnuke.com). Downloaded the package and did the steps described in readme.txt.

The first problem i faced was sql exception on adding a Store Account module.

An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005,this [...]