Tigraine

2,321
Reputation
142 views

Registered User

Name Tigraine
Member for 1 year
Seen 17 hours ago
Website
Location Klagenfurt / Austria
Age 24
My name is Daniel Hoelbling, studying computer science at the University of Klagenfurt.
In my free time you’ll see me working on .NET projects or blogging about them.
Nov
10
awarded  Popular Question
Nov
8
comment Bin deploy rake (and IronRuby)
The difference is how easy it is to install. Ruby has become quite easy to install, but is far from the dumb click setup.exe and be done solution.. Also, Win7 machines all have Powershell 2.0 pre-installed so moving forward powershell needs no setup at all on modern machines.
Nov
2
answered .NET - Is it possible to declare a module member accessible only to a namespace?
Oct
28
comment Agents: Why is the majority of agent work done in java?
That's not really true. The Microsoft Academic relations program is one giant free giveaway. You just have to apply and they'll throw more software at you for free than you can handle.. It's just, people are too lazy to ask. (Obviously this only applies to Universities)
Oct
28
comment Making Teamcity clone a git repository
Thanks. it worked. Also blogged about it here: tigraine.at/2009/10/…
Oct
20
asked Making Teamcity clone a git repository
Oct
18
answered Pattern Books for C# / VB.NET Developers
Oct
15
asked Mapping Castle MonoRail default requests to a controller action
Oct
14
answered Linq to SQL data source best practice
Oct
9
comment CLSCompliantAttribute breaks my build
Thanks.. SO still has way to go with it's similarity search when asking a question.
Oct
9
comment C# Castle ActiveRecord: How to elegantly (XML) serialize ActiveRecord objects?
I agree.. Never try to send the actual objects over the wire. Ayende wrote about this once and I agree with him: ayende.com/Blog/archive/…
Oct
9
asked CLSCompliantAttribute breaks my build
Oct
3
revised Tokenizer for C#?
Removed unused tags
Oct
3
comment C# Explicit Equality operator implementation necessary
Thanks.. :) It's just easier to read that way ;)
Oct
2
comment C# Explicit Equality operator implementation necessary
Thanks. I accepted your answer, but could you please edit in some of the things Joel said? How == behaves if not overriden.
Oct
2
asked C# Explicit Equality operator implementation necessary
Oct
1
comment How to test Repository Pattern with ADO.NET Entity Framework?
@Geo: By testing the actual SqlRepository you are already in Integration-Test land.. For a unit test not testing the SqlRepository at all is totally valid.
Sep
25
awarded  Yearling
Sep
18
accepted Bin deploy rake (and IronRuby)
Sep
18
comment Bin deploy rake (and IronRuby)
I'm no expert on this either, so maybe there is a way. But I don't really see one without packing the whole IR thing.. And once you extract it FileSystem operations get really wonky (never copy that folder!). I'd expect (since Win7 also packs Powershell) that the majority of users will have Powershell installed..
Sep
18
answered Bin deploy rake (and IronRuby)
Sep
14
answered css custom checkbox layout
Sep
14
revised Strongly Typed Controls in .NET
edited tags
Sep
13
answered ASP.NET MVC 1.0 and Castle ActiveRecord 2.0 Lazy Loading
Sep
12
comment Convert a Mercurial Repository to Git
I also have to admit that I didn't really try all that hard. It kept reporting a whitespace error in the file. Seems like "hg export --diff" isn't the same patch format after all..
Sep
12
answered Git under windows: MSYS or Cygwin?
Sep
10
comment Convert a Mercurial Repository to Git
Thanks, but unfortunately I didn't find a way to make git apply those patches and preserve the commit message.
Sep
9
comment Convert a Mercurial Repository to Git
No unfortunately not. I tried running the py scripts directly and I couldn't invoke them due to not being able to execute .sh on Win.. And I really don't want to install cygwin for this.
Sep
7
comment Convert a Mercurial Repository to Git
Would be possible. But it can't be the right solution to have to send off the repo to someone using Unix to convert it. There must be some way on Windows.
Sep
7
asked Convert a Mercurial Repository to Git
Aug
25
comment Match only whitespaces inside {}
Thanks. This appears to work, but since I also want to support @media sections I'll have to look into a solution without regex
Aug
25
asked Match only whitespaces inside {}
Aug
7
awarded  Nice Answer
Aug
6
comment How can I make something like a dynamic enumeration in C#?
There will always be some developer who will write code, otherwise there is no way to use the new status in conditional clauses. If you decide that developer-friendliness is your concern you could implement a class that behaves like a enumeration and could encapsulate behavior. I blogged about this some days ago in case you are interested: tigraine.at/2009/08/…
Aug
6
answered Is my PHP code object oriented?
Aug
6
comment are any of the windows 7 versions not developer friendly?
-1 For not answering the question.
Aug
6
comment are any of the windows 7 versions not developer friendly?
Actually, Home will also pose some problems. It comes without IIS7 (something that is not absolutely necessary but sometimes needed)
Jul
30
awarded  Nice Answer
Jul
30
comment Should controllers in an ASP.NET MVC web app call repositories, services, or both?
I'd also suggest reading on the ongoing "repository is dead" discussion between Ayende Rahien and others as there is much interesting stuff to be learned from there. google.at/search?q=ayende+repository+is+dead/…
Jul
30
comment How do I split a string into an array?
Good answer, although I'd not pick concatenating a new string as sample. better go like: string something = split[0]; string something1 = split[1]; I'd say learning about arrays should be a priority here rather than going over string.split semantics.
Jul
4
comment Castle Windsor and IPrincipal
Oh nice. Didn't know that Windsor got support for FactoryMethods. But the asker is obviously using XML configuration, so the AddComponentInstance will work regardless of Version.
Jul
3
answered Holding onto object references
Jul
3
revised Castle Windsor and IPrincipal
added 114 characters in body; added 9 characters in body
Jul
3
answered Castle Windsor and IPrincipal
Jun
27
comment Open Source Projects Engineered using TDD and C#?
I believe most OSS frameworks out there are heavily unit-tested. You could try to read the whole Castle Project that has a very high quality codebase. Problem is usually that it's not that easy to get into those things since they are quite complex.
Jun
26
comment WPF ListView with horizontal arrangement of items?
Apparently the only important thing is the Width. The others are optional.
Jun
24
revised Compile ASP.NET to 64 BIT
added a clarification
Jun
24
comment Compile ASP.NET to 64 BIT
Actually you never compile to a special architecture. You always compile to IL. That's something like Java Bytecode. And that bytecode is the same for 32 bit and 64 bit. The Virtual Machine (.NET Framework) on the machine the code gets executed then compiles the IL to actual machine code. So, no matter where you compile, you'll always end up in IL. The setting in .NET is only an instruction in IL that tells the JIT (Just in Time compiler) to specifically use 32bit/64 bit in case you call out to native code that isn't bit-ignorant. So, actually you always run in emulation :D
Jun
24
comment XAML or C# code-behind
I disagree. XAML is a great way to define tree hierarchies as they exist extensively in UIs. Doing so with C# would just get really really messy in terms of indentation. XAML by definition is only a way to serialize .NET Objects to XML and backwards, so anything you do in XAML can be done with c# and object initializers. It's just not pretty and a lot of work.
Jun
24
answered Compile ASP.NET to 64 BIT