Last week I had to recreate a development environment for a EPiCMS 5 SP1 R2 (a mouth full), the problem was all I had to go from was the production environment. The production is running on Windows Server 2008 R2, SQL Server 2008 R2 and so on. So i started by just copying the EPiServer [...]
net
PHP to ASP.NET [CSharp]
After working with C# all summer, I have been having thoughts about moving from PHP to ASP.NET (mainly C#). All summer I have been wondering why it was that I never tried C# before, with the improvements in C# 3.0+ like Windows Connection Foundation [WPF], Windows Presentation Foundation [WPF], Linq, etc. it is hard to [...]
CSharp vs Java
In a sense Java and C# are quite similar, but when you get a bit under the tip you will notice some of the difference between both languages. For some reason C# felt a bit more easier the Java to me, and a bit (a lot) more powerful. There are things like defining getter and [...]
Unique ID
There are times when you need some sort of unique identifier for some reason, and it can be hard to find a system that will have a very low collision risk. After working on the problem for a while, I could find some ways to generate unique identifier. Use UNIX timestamp in milliseconds Use DateTime.Now.ToBinary() [...]
Browser specific CSS
A month ago I wrote about how to write IE specific CSS code, it is all fine, but what should be done if you have to pass W3c Validation (IE hack is not specified in any CSS standard). After looking around a bit I found out, that it is batter to make one CSS file [...]