Erik van Brakel

2,520
Reputation
176 views

Registered User

Name Erik van Brakel
Member for 1 year
Seen 7 hours ago
Website
Location Dordrecht, the Netherlands
Age 26
I've been programming since I was 10. I started by simply copying code listings printed in magazines. Currently very much into C#/.NET in general, especially the cool new extensions for .NET 3.5.
11h
comment Visual Studio extension: splash info not showing
Thanks. I've been messing around with the project to get it to compile in a non-SDK environment (build server), so I forgot I commented out the link to the Microsoft.VsSDK.targets target, which handles the registering commands. I added it to the installed products manually, but incorrectly.
11h
accepted TeamCity + git-teamcity plugin: ParseException
11h
comment Visual Studio extension: splash info not showing
It's a managed package
12h
asked Visual Studio extension: splash info not showing
1d
comment PHP CASE statement not working with ZERO values.
I'm not sure if this would be the recommended approach of using a switch statement though, I wouldn't say it reads very well.
Nov
19
revised TeamCity + git-teamcity plugin: ParseException
added 321 characters in body
Nov
19
answered TeamCity + git-teamcity plugin: ParseException
Nov
19
revised TeamCity + git-teamcity plugin: ParseException
edited tags
Nov
19
asked TeamCity + git-teamcity plugin: ParseException
Nov
15
comment What are all the valid self-closing tags in XHTML (as implemented by the major browsers)?
Well, it used to work in Firefox when I encountered it. Seems like it doesn't work in any browser anymore. Could also only work in quirks mode perhaps?
Nov
13
comment how expensive is this php downcasting workaround
When you want to test the cost, you shouldn't run it once. Run it thousands of times in a loop, and print the time THAT takes. Then figure out what a normal amount of calls would be in your app to see if it's expensive :)
Nov
12
comment What does the code do?
As others said, Duff's Device. I wouldn't implement this if I didn't have to, too esoteric/obfuscated. I prefer readable code ;-) Although, if wrapped in a function like this, with good comments/documentation, I'd use it if I didn't have to touch it.
Nov
12
answered Am I a bad developer because I can’t answer 99% of the questions here?
Nov
11
comment Unity - What are the InjectionMembers in RegisterType() calls for?
Almost. It's because of the params keyword.
Oct
25
comment Why isn’t there a CPAN for .NET?
I think you mean Horn: code.google.com/p/hornget
Oct
13
answered unable to submit form using $.post()
Oct
8
comment Hibernate mappings: Splitting up the file
Yes, that's it! Thanks, this was one of the last annoyances in the project.
Oct
8
asked Hibernate mappings: Splitting up the file
Oct
2
answered From PHP to ASP.net/C#?
Oct
2
comment I’ve learnt jQuery, should I go back and learn “proper js”?
I think you're an edge case here. IE6 has horrible javascript performance, so optimizing it has a high priority. Furthermore, you don't need the cross-browser compatibility, so that advantage is nullified. In general cases jQuery/MooTools is preferable, sometimes raw JS is better. I usually compare it to the C <-> C#/ruby/python difference. C is probably faster, but the others I mentioned are usually safer/quicker to develop with.
Sep
30
answered Cannot convert source type to target type
Sep
30
comment Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
I think one advantage of a flat file you mentioned is very important: quick access with tools you almost always have. using a simple grep on your flat-text log is easy enough if you're used to it, and how about tail -f?
Sep
29
comment Horiz CSS menu - text shifting on bold hover
If you want to show code, wrap the code into a code block. You can find it in the toolbar on the editor, or indent the block with at least 4 (?) spaces.
Sep
24
revised How to visually indicate current page in ASP.NET MVC?
Corrected according to comment
Sep
22
comment Is there a C# equivalent to Python’s unhexlify?
does he NEED to convert it to the opposite endian? Only do it if it's needed I say ;-)
Sep
19
comment desktop development or web development?
+1. I think knowing different technologies/languages is a big plus. You don't HAVE to use it, but knowing what it's all about is very valuable.
Sep
14
answered Control Flow via Return vs. If/Else
Sep
11
accepted How to call generic method with a given Type object?
Sep
10
comment How to call generic method with a given Type object?
My bad, I changed around some names (tested in a default C# console app, so the class is called Program ;)) Fixed it for you, it should be the name of the class you want to call the method on.
Sep
10
revised How to call generic method with a given Type object?
deleted 18 characters in body
Sep
10
comment How to call generic method with a given Type object?
Cody: I added another alternative in my answer (trying to beat the Skeet) which doesn't involve strings. It's not as clean as I want, but the idea is clear I think.
Sep
10
revised How to call generic method with a given Type object?
Added an alternative
Sep
10
comment How to call generic method with a given Type object?
argghh! The Skeet got me beat :/
Sep
10
answered How to call generic method with a given Type object?
Sep
8
answered Exception logging tools in .Net
Sep
8
awarded  Nice Answer
Sep
5
comment Parse Phone Number into component parts
why was this downvoted?
Aug
27
revised How should I track changes on any object in asp.net mvc (nhibernate)?
edited tags
Aug
27
answered How should I track changes on any object in asp.net mvc (nhibernate)?
Aug
26
comment Which LINQ syntax do you prefer? Fluent or Query Expression
Shouldn't this be community wiki?
Aug
25
revised Parsing CSS with ANTLR - edge cases
added 446 characters in body; edited tags
Aug
25
comment Parsing CSS with ANTLR - edge cases
Maybe I misinterpreted it, or I'm doing something wrong with ANTLR. I'll look into it again, and get back to this question at that time. Probably tomorrow or the day after.
Aug
24
comment Parsing CSS with ANTLR - edge cases
Yes, I've taken a look at the CSS 3 grammar, it shows the same error.
Aug
24
comment Parsing CSS with ANTLR - edge cases
That's what I'm afraid of. Hopefully there's an antlr guru running around here on stackoverflow who can prove you wrong :/
Aug
24
comment Parsing CSS with ANTLR - edge cases
Yes, I am familiar with that appendix. It's what I use as one of my sources for the grammar I'm building. Doesn't solve the problem for me though :(
Aug
24
comment Parsing CSS with ANTLR - edge cases
This still doesn't work. the problem is that bbb (or anything that starts with 0..9 | a..f) will be tokenized as HEXSTRING. This will prevent #bbb to be matched as a selector.
Aug
24
asked Parsing CSS with ANTLR - edge cases
Aug
14
revised What is wrong with my syntax here?
fixed the broken code block
Aug
13
answered How can I write ‘n <<= 1’ (Python) in PHP?
Aug
11
answered Any Rails-Migration-like framework suggestions for .NET?