Category Archives: Experiments

Create your own Marketing WordPress Network

In the last days I have been experimenting with WordPress Network, to get them running for my marketing blogs. A WordPress Network allows you to host many blogs in one WordPress installation. So it is perfect when you have a lot of blogs to manage. Good thing is, you only need to install and configure [...]

Posted in Experiments | Leave a comment

C# Style Properties in C++?

I was in experimenting mood again. I got annoyed by writing the following code over and over again: class Test { private: int myVar; public: int GetMyVar() { return myVar; } } Sometimes additionally to that a Setter method which processes or checks the values. So how to make this more compact? With macro hacking! [...]

Posted in Experiments | 2 Comments

Pure CSS box-shadow for IE 7/8

For my photo portfolio website I was searching for an easy way to add flexible shadows to boxes on my website. There are several techniques to achieve this via images, but most of the times these techniques not very flexible. Luckily the upcoming CSS3 standard has a new feature called box-shadow. Which works well in [...]

Posted in Experiments | Leave a comment