by Oliver
27. January 2011 22:50
As I just read here on msdn, the modifiers protected and internal are orthogonal as in that they can be specified in all combinations and are combined with a logical OR. This means: protected members are accessible from inheriting classes internal members are accessible from classes within th...
[More]
by Oliver
26. January 2011 20:30
Today: a simple hosts file editor Today I set up a new project on GitHub: the Teamaton tool belt! It shall serve us as a central store for small tools, probably mostly command-line, built for a single purpose. The first tool in our new tool belt is: HostsEditor. I wrote this small command line uti...
[More]
by Oliver
21. January 2011 20:19
We recently updated one our largest project to use ASP.NET 4.0, and for this matter the new Package/Publish feature including sub-web.configs which is meant to supersede the Web Deployment Project. For a manual deployment there’s a good write-up on the msdn library titled ASP.NET Web Application Pro...
[More]
by Oliver
19. January 2011 18:15
Parallel Programming in C# Free eBook: www.dotnetpro.de/SL1010News3 The Task class: use like 1: Task.Factory
2: .StartNew(() => {
3: var result = new MyCustomObject();
4: // do something and return...
[More]
by Oliver
19. January 2011 17:45
Login to your account at GitHub and click the “New Repository” button: Go ahead and enter a name for the new project, I suggest all lowercase letters and hyphens if needed (for easier typing, mostly). Then choose whether you want this repository to be publicly visible by the whole world or just ...
[More]
by andrej
9. January 2011 18:28
If you want to embed a Facebook Like button and you want it to align to the right here is a fix with css only: First, get the embed code from facebook: http://developers.facebook.com/docs/reference/plugins/like If you embed the XFBML code and the button is smaller than the size you specified, the ...
[More]