User Erik van Brakel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T21:33:58Zhttp://stackoverflow.com/feeds/user/909http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809174/performance-implications-with-clean-code1Performance implications with 'clean code'Erik van Brakel2009-11-27T14:45:33Z2009-11-28T16:48:24Z
<p>At my workplace we're planning a major refactor on our core product, a web application with several 'modules'. I quoted that because that's one of our main concerns: modules are not really modules, the whole thing is monolithic. The application is written in PHP with smarty templating and using Pear for accessing a MySQL database. We're not really concerned with database independence, although it would be nice if that wouldn't take months to implement.</p>
<p>Our main concerns are that development time/cost is increasing exponentially because of bugs popping up in unrelated places and not having a sound common architecture to rely on to get the most common functionality (each module is basically copy/paste from the previous one, then adapt).</p>
<p>I've got some experience with the web MVC principle, mainly in ASP.NET MVC. I like the clean separation it offers and the testability. However, when trying this on a local machine the app is simply a lot slower than it should be. </p>
<p>Alright, enough introduction, off to the questions:
- Should I rely on caching modules? Does this remove most of the overhead using a good architecture provide? Something like APC.</p>
<ul>
<li>The application is mainly read. Writing is mainly single values (change a single field on a record). Any OR/M for PHP that are good at this?</li>
<li>Also looking for a flexible MVC framework. I know Zend, CakePHP, maybe Symfony?</li>
</ul>
<p>The tricky part is that we don't have the luxury of being able to do a full rewrite. We'll have to incrementally improve a currently very messy codebase. This has to be done while writing new code, or fixing bugs. One thing I'd really, REALLY like to be able to do is write a regression test for a new bug before fixing it, to prevent it from popping up again later (this happens, occasionally).</p>
<p>The stack I'm currently considering contains:</p>
<ul>
<li>MVC framework of choice</li>
<li>Logging (log4php?)</li>
<li>an OR/M of choice (doesn't have to be dynamic, code generation is fine too)</li>
<li>IoC container of choice</li>
<li>Smarty Templating, perhaps abstracted so we can switch it out if we need to.</li>
<li>Opcode cache of choice (we're using one now, forgot which one, have to ask sysadmin)</li>
</ul>
<p>The main point that worries me is the performance implications of creating clean code in PHP. Seeing it's a parsed language opposed to something like the .NET/Java web stack, creating abstractions for otherwise in-line code (with obligatory separation in different files) might create new problems on another level.</p>
<p><hr></p>
<p>Note: Retag if you come up with more appropriate tags, I'm not sure on the current ones.</p>
http://stackoverflow.com/questions/1805825/visual-studio-extension-splash-info-not-showing1Visual Studio extension: splash info not showingErik van Brakel2009-11-26T21:48:46Z2009-11-26T22:24:15Z
<p>I'm building (read: trying to build) a Visual Studio integration package, which contains some custom highlighting and intellisense. The language part is working fine, the package is being loaded in the IDE, installing on non-SDK machines without problems.</p>
<p>However, here's one annoying thing I can't get to work. I want to see my package details in the about box (which shows all the installed packages like Resharper), ditto for the splash screen.</p>
<p>According to the documentation, the method to do this is to implement the 'IVsInstalledProduct' interface. I did this, following the instructions on MSDN, but it simply doesn't work! When I put breakpoints on the methods it seems like they're never called. Hopefully there's anyone here who can enlighten me on why this doesn't work like it is supposed to.</p>
<p>Note:
I also ran devenv.exe /ranu /rootsuffix Exp /setup from the VS2008 command prompt, as recommended in other articles about this.</p>
http://stackoverflow.com/questions/1766868/teamcity-git-teamcity-plugin-parseexception0TeamCity + git-teamcity plugin: ParseExceptionErik van Brakel2009-11-19T21:59:08Z2009-11-19T23:43:54Z
<p>Alright, I've trying to set up a TeamCity server the past few hours, but this as really gotten me stuck. I've got everything working, agents are running, plugin is installed, but when I run the build process it instantly crashes with the following log error:</p>
<pre><code>Error collecting changes for VCS root 'git@github.com:chrisjowen/nLess.git:master' #1
java.lang.RuntimeException: java.text.ParseException: Unparseable date:
"Mon Nov 16 15:01:08 2009 +0100"
</code></pre>
<p>We already have a TeamCity setup on a remote server, but I didn't set it up myself. I just want to be able to do the same thing personally, because I'd like to see if we can benefit from this at work.</p>
<p>I use the exact same TeamCity configuration as the remote one, and I updated git to the latest version.</p>
<p>The date you see is the date of the last commit on the master branch on the github repository, so it must be something in the VCS plugin. Anyone encounter this? Or even better, anyone know what I should do to solve this?</p>
<p>Additional info:
Windows XP Professional (32 bit), English<br>
TeamCity Professional Version 4.5.5 (build 9103)<br>
git-teamcity plugin available here: <a href="http://github.com/chrisortman/git-teamcity" rel="nofollow">http://github.com/chrisortman/git-teamcity</a></p>
<p><hr></p>
<p>Use <a href="http://github.com/petemounce/git-teamcity" rel="nofollow">http://github.com/petemounce/git-teamcity</a>, this fork fixes the issue I had. The dateformat didn't specify a locale, so it used the default. This fork explicitly sets the US locale, which works when you're using a different locale (mine was set to nl).</p>
http://stackoverflow.com/questions/1766868/teamcity-git-teamcity-plugin-parseexception/1767182#17671821Answer by Erik van Brakel for TeamCity + git-teamcity plugin: ParseExceptionErik van Brakel2009-11-19T23:02:03Z2009-11-19T23:02:03Z<p>I found it myself. Apparently, even if windows is set to English, my JRE is set to Dutch. I'll have to figure out why that is now ;-)</p>
http://stackoverflow.com/questions/129601/am-i-a-bad-developer-because-i-cant-answer-99-of-the-questions-here/1723297#17232970Answer by Erik van Brakel for Am I a bad developer because I can't answer 99% of the questions here?Erik van Brakel2009-11-12T16:00:08Z2009-11-12T16:00:08Z<p>Actually, I think just the fact that you're asking this question shows you've got one of the valuable traits of a good developer. In my opinion, a good developer is someone who always questions his knowledge, doesn't think he's at the top of their game and constantly aims to improve.<br>
That being said, I don't have a clue on a lot of the questions on here. And most of the time, the area I pretend to be experienced with (C#/.NET), the question is sniped by some Jon S. (surname hidden to avoid identification :P)</p>
<p>I'd say keep reading, keep learning and don't feel bad for not knowing the answer. If you don't know the answer, someone else will answer and presto! You know the answer too now! </p>
http://stackoverflow.com/questions/1560059/unable-to-submit-form-using-post/1560270#15602700Answer by Erik van Brakel for unable to submit form using $.post()Erik van Brakel2009-10-13T13:29:59Z2009-10-13T13:29:59Z<p>I think you misunderstood the way the post method works. What happens is that in the background, jquery will submit the data you provide to the url you provide. The whole idea here is that your browser will not navigate to the page!</p>
<p>Anyway, if you want to navigate to a page using javascript, doesn't a simple 'document.location' work?</p>
<pre><code>document.location = theurlIwantToGoTo;
</code></pre>
http://stackoverflow.com/questions/1536901/hibernate-mappings-splitting-up-the-file0Hibernate mappings: Splitting up the fileErik van Brakel2009-10-08T10:21:16Z2009-10-08T11:19:50Z
<p>Alright, I've got a quick question. I'm currently working with a legacy database, so I can't change around much. The database revolves around a single type, the entity. All other relevant data (except for customizable lists etc.) 'inherit' from this.</p>
<p>I'm mapping this with a joined subclass approach, which is working fine. The problem however, is that my mapping file is reaching hideous proportions. I would like to split up the file in multiple separate files, but I'm not sure if this is possible and how to approach this problem. I've read through the Hibernate docs on the official site, but couldn't find anything.</p>
<p>To clarify, mappings look like this:</p>
<pre><code><class name="..." table="...">
<id ...>
<generator class="org.hibernate.id.TableHiLoGenerator">
<param name="table">...</param>
<param name="column">...</param>
</generator>
</id>
<property name="somethingCommon" />
<joined-subclass name="class_1">
...
...
</joined-subclass>
<joined-subclass name="class_2">
...
...
</joined-subclass>
...
<joined-subclass name="class_n">
...
...
</joined-subclass>
</class>
</code></pre>
<p>What I would like to be able to do is put the joined-subclass bits in separate files, just like I would do in code (separate classes -> separate files). Is this possible using just mappings, or perhaps by manipulating the mappings when I load them?</p>
<p>(Note: tagged hibernate/nhibernate, as I don't think this is specific to either flavor)</p>
http://stackoverflow.com/questions/19746/views-in-separate-assemblies-in-asp-net-mvc3Views in separate assemblies in ASP.NET MVCErik van Brakel2008-08-21T12:37:23Z2009-10-03T20:29:31Z
<p>I'm trying to create a webapplication where I want to be able to plug-in separate assemblies. I'm using MVC preview 4 combined with Unity for dependency injection, which I use to create the controllers from my plugin assemblies. I'm using WebForms (default aspx) as my view engine.</p>
<p>If I want to use a view, I'm stuck on the ones that are defined in the core project, because of the dynamic compiling of the ASPX part. I'm looking for a proper way to enclose ASPX files in a different assembly, without having to go through the whole deployment step. Am I missing something obvious? Or should I resort to creating my views programmatically?</p>
<p><hr /></p>
<p>Update: I changed the accepted answer. Even though Dale's answer is very thorough, I went for the solution with a different virtual path provider. It works like a charm, and takes only about 20 lines in code altogether I think.</p>
http://stackoverflow.com/questions/70993/testing-ladder-logic3Testing ladder logicErik van Brakel2008-09-16T10:21:50Z2009-10-03T06:08:24Z
<p>We all know the various ways of testing OO systems. However, it looks like I'll be going to do a project where I'll be dealing with PLC ladder logic (don't ask :/), and I was wondering if there's a good way of testing the validity of the system.</p>
<p>The only way I see so far is simply constructing a huge table with all known states of the system and which output states that generates. This would do for simple 'if input A is on, turn output B on' cases. I don't think this will work for more complicated constructions though.</p>
http://stackoverflow.com/questions/1509630/from-php-to-asp-net-c/1509804#15098040Answer by Erik van Brakel for From PHP to ASP.net/C#?Erik van Brakel2009-10-02T14:18:38Z2009-10-02T14:18:38Z<p>If you decide to take a look at C#/ASP.NET, I strongly suggest considering the context for comparison. PHP is a scripting language, ASP.NET is a web application framework. A better comparison between the two would be to put ASP.NET side to side with something like Symphony or CakePHP.</p>
<p>Also, coming from the PHP world I think it's easier to get started with ASP.NET MVC, because there's less magic going on under the hood in that flavour. It's very similar to CakePHP/Symphony in essence. Also, you won't get annoyed with the shitty HTML output the older WebForms engine spits out ;-)</p>
<p>I think PHP is a fine language, but it tends to get a tangled old mess when the application grows. Sure, you can overcome that by strict discipline, but that takes focus off of the real job at hand. In C#, things are a lot more strict. Type safety is enforced (you cannot simply assign a floating point value to something that used to be a string, etc.), syntax errors turn up at compile time, opposed to at runtime in PHP.</p>
<p>TLDR:
I say give it a go, especially the ASP.NET MVC variant. If you don't like it, that's fine, there's loads of applications built in PHP that work like they're supposed to. The least thing you could get from it is a bit of understanding of how other environments work :)</p>
http://stackoverflow.com/questions/1498951/cannot-convert-source-type-to-target-type/1500113#15001130Answer by Erik van Brakel for Cannot convert source type to target type Erik van Brakel2009-09-30T19:14:38Z2009-09-30T19:14:38Z<p>As far as I know, a .NET 2.0 webservice (asmx) automatically generates a mapping for the types needed to call a method (parameters and return types) in the WSDL.</p>
<p>When you add the webservice as a web reference to your other project (your website in this case), proxy classes are automatically generated. These are the ones in the MyWebTestProject.CCService namespace, in your case. I'm not sure what exactly is in your DebitResponse code, but your error message shows what's wrong:</p>
<p>"Cannot convert source type MyWebTestProject.CCService.DebitResponse to target type CompanyName.CC.DebitResponse"</p>
<p>The type returned by the <strong>proxy-class</strong> which calls the webservice for you is not of type CompanyName.CC.DebitResponse, which you use in your webservice. It's the class that's generated from the WSDL, more specifically: MyWebTestProject.CCService.DebitResponse. It will contain all the same data as the class you use in your webservice, but it's a distinctly different class. On the other hand, the methods that exist on the class in your webservice are not present.</p>
<p>So, simply put: You have to use:</p>
<pre><code>MyWebTestProject.CCService.DebitResponse debitResponse = CCService.IssueDebit(...);
</code></pre>
http://stackoverflow.com/questions/1419278/control-flow-via-return-vs-if-else/1419317#14193170Answer by Erik van Brakel for Control Flow via Return vs. If/ElseErik van Brakel2009-09-14T01:26:14Z2009-09-14T01:26:14Z<p>I prefer the first option, provided the case you check is a guard/precondition that needs to be met for the method call to be valid. Although you could argue if you should return null, or throw an (Argument)Exception. When a class isn't editable, should it really be a parameter for this method?</p>
<p>Maybe a better option would be to create an IEditable interface and implementing this on the class you're passing an instance of right now.</p>
http://stackoverflow.com/questions/1408120/how-to-call-generic-method-with-a-given-type-object/1408154#14081542Answer by Erik van Brakel for How to call generic method with a given Type object?Erik van Brakel2009-09-10T22:56:55Z2009-09-10T23:27:03Z<p>Your code sample won't work, because the generic method expects a type identifier, not a an instance of the Type class. You'll have to use reflection to do it:</p>
<pre><code>public class Example {
public void CallingTest()
{
MethodInfo method = typeof (Example).GetMethod("Test");
MethodInfo genericMethod = method.MakeGenericMethod(typeof (string));
genericMethod.Invoke(this, null);
}
public void Test<T>()
{
Console.WriteLine(typeof (T).Name);
}
}
</code></pre>
<p>Do keep in mind that this is very brittle, I'd rather suggest finding another pattern to call your method.</p>
<p>Another hacky solution (maybe someone can make it a bit cleaner) would be to use some expression magic:</p>
<pre><code>public class Example {
public void CallingTest()
{
MethodInfo method = GetMethod<Example>(x => x.Test<object>());
MethodInfo genericMethod = method.MakeGenericMethod(typeof (string));
genericMethod.Invoke(this, null);
}
public static MethodInfo GetMethod<T>(Expression<Action<T>> expr)
{
return ((MethodCallExpression) expr.Body)
.Method
.GetGenericMethodDefinition();
}
public void Test<T>()
{
Console.WriteLine(typeof (T).Name);
}
}
</code></pre>
<p>Note passing the 'object' type identifier as a generic type argument in the lambda. Couldn't figure out so quickly how to get around that. Either way, this is compile-time safe I think. It just feels wrong somehow :/</p>
http://stackoverflow.com/questions/1396134/exception-logging-tools-in-net/1396273#13962730Answer by Erik van Brakel for Exception logging tools in .NetErik van Brakel2009-09-08T20:51:52Z2009-09-08T20:51:52Z<p>If you want freedom of choice without creating a strong dependency on a specific logging framework (Log4Net, nLog, EntLib) you could take a look at the Common.Logging library. It basically abstracts away the implementation of the logger, exposing only a common interface to all available logging blocks.</p>
<p>See:</p>
<p><a href="http://netcommon.sourceforge.net/" rel="nofollow">http://netcommon.sourceforge.net/</a></p>
<p>Disclaimer:
I haven't used it myself (yet), but I do intend to try it out sometime soon. The idea of not being tied to a specific logger appeals to me, as I like to stick to one log library per project. Imagine building a project which uses nLog for logging, but then you add NHibernate. NH uses Log4Net, so now we've got TWO logging libraries in our dependencies ;-)</p>
http://stackoverflow.com/questions/1339844/how-should-i-track-changes-on-any-object-in-asp-net-mvc-nhibernate/1340843#13408431Answer by Erik van Brakel for How should I track changes on any object in asp.net mvc (nhibernate)?Erik van Brakel2009-08-27T12:42:46Z2009-08-27T12:42:46Z<p>Your basically looking for an auditing solution, right? I know Hibernate has functionality for it using an addon project called Hibernate Envers. This quickest thing I could find on this is <a href="http://blogs.conchango.com/athermughal/archive/2009/06/16/data-auditing-using-hibernate-envers.aspx" rel="nofollow">this blog post</a>. As for NHibernate, I believe there's work being done on porting Envers to NHibernate, to leverage this functionality for the .NET community as well.</p>
<p>I think it would be worth it to find out what the ETA on that is, before diving into a separate solution. If you can get it built into your ORM that's nice, right? ;-)</p>
<p>Just checked quickly, I think <a href="http://www.tunatoksoz.com/" rel="nofollow">Tuna Toksoz</a> is working on it, at least according to his twitter feed.</p>
http://stackoverflow.com/questions/1325305/parsing-css-with-antlr-edge-cases5Parsing CSS with ANTLR - edge casesErik van Brakel2009-08-24T23:25:21Z2009-08-25T23:07:36Z
<p>I'm trying to parse CSS, or at least the basics, using ANTLR. I'm running into a few problems with my lexer rules though. The problem lies in the ambiguity between an ID selectors and hexadecimal color values. Using a simplified grammar for clarity, consider the following input:</p>
<pre><code>#bbb {
color: #fff;
}
</code></pre>
<p>and the following parser rules:</p>
<pre><code>ruleset : selector '{' property* '}';
selector: '#' ALPHANUM;
property: ALPHANUM ':' value ';' ;
value: COLOR;
</code></pre>
<p>and these lexer tokens:</p>
<pre><code>ALPHANUM : ('a'..'z' | '0'..'9')+;
COLOR : '#' ('0'..'9' | 'a'..'f')+;
</code></pre>
<p>This will not work, because #bbb is tokenized as a COLOR token, even though it's supposed to be a selector. If I change the selector to not start with a hexadecimal character, it works fine. I'm not sure how to solve this. Is there a way to tell ANTLR to treat a specific token only as a COLOR token if it's in a certain position? Say, if it's in a property rule, I can safely assume it's a color token. If it isn't, treat it as a selector.</p>
<p>Any help would be appreciated!</p>
<p><hr /></p>
<p>Solution: Turns out I was trying to do too much in the grammar, which I should probably deal with in the code using the AST. CSS has too many ambiguous tokens to reliably split into different tokens, so the approach I'm using now is basically tokenizing the special characters like '#', '.', ':' and the curly braces, and doing post processing in the consumer code. Works a lot better, and it's easier to deal with the edge cases.</p>
http://stackoverflow.com/questions/1274493/how-can-i-write-n-1-python-in-php/1274556#12745564Answer by Erik van Brakel for How can I write 'n <<= 1' (Python) in PHP?Erik van Brakel2009-08-13T21:02:51Z2009-08-13T21:02:51Z<p>That statement is short for</p>
<pre><code>n = n << 1;
</code></pre>
<p>the << operator is means a bitwise shift left, by n positions. Its counterpart is >>, which means shift right by n. To visualize, say you have the value 5, and you want to shift it left by 2 positions. In binary:</p>
<pre><code>0000 0101 -> 5
shift left by 2:
0001 0100 -> 20
</code></pre>
<p>Basically, you shift all bits in the given direction, and pad with zeroes. More or less equivalent, if you don't have a bitwise shift operator (which is common in most, if not all languages), is multiplying by 2^n for shift left, and dividing by 2^n for shift right.</p>
<p>In the example, you can see that: 5 * 2^2 = 5 * 4 = 20.</p>
http://stackoverflow.com/questions/1037040/any-rails-migration-like-framework-suggestions-for-net/1261547#12615471Answer by Erik van Brakel for Any Rails-Migration-like framework suggestions for .NET?Erik van Brakel2009-08-11T16:40:25Z2009-08-11T16:40:25Z<p>There's a similar question, which incidentally shows up as one of the top google results (wooo, gogo stackoverflow!) with a nice roundup in the top scoring post:</p>
<p><a href="http://stackoverflow.com/questions/313/net-migrations-engine">http://stackoverflow.com/questions/313/net-migrations-engine</a></p>
http://stackoverflow.com/questions/1224433/how-can-i-disable-highlighting-in-html-or-js/1224462#12244621Answer by Erik van Brakel for How can I disable highlighting in html or JS?Erik van Brakel2009-08-03T20:31:13Z2009-08-03T20:31:13Z<p>I think you're looking for the :focus pseudo class. Try this:</p>
<pre><code>input:focus {
background-color: #f0f;
}
</code></pre>
<p>It will give your input a pretty purple/pink color when selected.</p>
<p>I'm not sure which properties you have to (un)set, but I think you can find out yourself using trial and error.</p>
<p>Also note that the highlighting or absence thereof is browser specific!</p>
http://stackoverflow.com/questions/1205908/what-net-framework-and-c-version-should-i-target-with-my-class-library/1205930#12059308Answer by Erik van Brakel for What .NET Framework and C# version should I target with my class library?Erik van Brakel2009-07-30T11:13:06Z2009-07-30T11:13:06Z<p>Personally, I'd target .NET 2.0. This means, among other things:</p>
<ul>
<li>No extension methods (there is a workaround though)</li>
<li><p>No linq</p></li>
<li><p>you CAN use lambda expressions</p></li>
<li>you CAN use the 'var' keyword</li>
</ul>
<p>The thing is, you can use C# 3.x language features (the so-called syntactic sugar), but you can't use libraries that target C# 3.x (System.Core to name one, includes extension methods and linq).</p>
<p>I wouldn't try to support C# 1.x, as it's quite different from C# 2.x and higher. Besides, I expect most people who would use your library are people building new things, who wouldn't in their right minds use C# 1.x ;-)</p>
http://stackoverflow.com/questions/1174713/ienumerablet-in-c/1174759#11747594Answer by Erik van Brakel for IEnumerable<T> in C#Erik van Brakel2009-07-23T22:04:32Z2009-07-23T23:10:30Z<p>Slightly off-topic, but perhaps interesting to see is this approach:</p>
<pre><code>public static class NumbersSequence
{
public static IEnumerable<int> Naturals
{
get
{
int i = 0;
while(true)
yield return i++;
}
}
}
class Program
{
static void Main(string[] args)
{
foreach (int i in NumbersSequence.Naturals.Take(1000))
Console.WriteLine(i);
}
}
</code></pre>
<p>C# 3.0 afaik. Pay attention to the seemingly endless loop in the getter, and the call to Take(1000). With this method you now have an 'endless' sequence of natural numbers (endless up until the maxvalue of an int). It won't get stuck, as long as you tell it to take a specific amount.</p>
<p>DISCLAIMER:
Most of the code borrowed from Earwicker's answer.</p>
http://stackoverflow.com/questions/1084925/input-typefile-show-only-button/1084929#10849296Answer by Erik van Brakel for input type=file show only buttonErik van Brakel2009-07-05T22:10:36Z2009-07-05T22:10:36Z<p>That's going to be very hard. The problem with the file input type is that it usually consists of two visual elements, while being treated as a single DOM-element. Add to that that several browsers have their own distinct look and feel for the file input, and you're set for nightmare. See this <a href="http://www.quirksmode.org/dom/inputfile.html" rel="nofollow">article on quirksmode.org</a> about the quirks the file input has. I guarantee you it won't make you happy (I speak from experience).</p>
<p>[EDIT]</p>
<p>Actually, I think you might get away with putting your input in a container element (like a div), and adding a negative margin to the element. Effectively hiding the textbox part off screen.
Another option would be to use the technique in the article I linked, to try to style it like a button.</p>
http://stackoverflow.com/questions/1053215/how-defensively-should-i-program/1074037#10740370Answer by Erik van Brakel for How defensively should I program?Erik van Brakel2009-07-02T12:17:24Z2009-07-02T12:17:24Z<p>Why not split up the method you have after you added all the defensive programming? You have a bunch of distinct logic blocks which warrant separate methods. Why? Because then you encapsulate the logic that belongs together, and your resulting public method just wires those blocks in the right way.</p>
<p>Something like this (edited in the SO editor, so no syntax/compiler checks. Might not compile ;-))</p>
<pre><code>private string GetConnectionString(String connectionName)
{
//Get the connection string info from web.config
ConnectionStringSettings cs= ConfigurationManager.ConnectionStrings[connectionName];
//documented to return null if it couldn't be found
if (cs == null)
throw new ArgumentException("Could not find connection string \""+connectionName+"\"");
return cs;
}
private DbProviderFactory GetFactory(String ProviderName)
{
//Get the factory for the given provider (e.g. "System.Data.SqlClient")
DbProviderFactory factory = DbProviderFactories.GetFactory(ProviderName);
//Undefined behaviour if GetFactory couldn't find a provider.
//Defensive test for null factory anyway
if (factory == null)
throw new Exception("Could not obtain factory for provider \""+ProviderName+"\"");
return factory;
}
public DbConnection GetConnection(String connectionName)
{
//Get the connection string info from web.config
ConnectionStringSettings cs = GetConnectionString(connectionName);
//Get the factory for the given provider (e.g. "System.Data.SqlClient")
DbProviderFactory factory = GetFactory(cs.ProviderName);
//Have the factory give us the right connection object
DbConnection conn = factory.CreateConnection();
//Undefined behaviour if CreateConnection failed
//Defensive test for null connection anyway
if (conn == null)
throw new Exception("Could not obtain connection from factory");
//Knowing the connection string, open the connection
conn.ConnectionString = cs.ConnectionString;
conn.Open()
return conn;
}
</code></pre>
<p>PS: This is not a complete refactor, only did the first two blocks.</p>
http://stackoverflow.com/questions/1073884/how-to-i-hide-and-show-html-elements-using-jquery/1073903#10739032Answer by Erik van Brakel for How to I hide and show HTML elements using JQuery? Erik van Brakel2009-07-02T11:42:59Z2009-07-02T11:42:59Z<p>$("selector").toggle() switches the selected DOM element(s) between hidden and shown.
$("selector").hide() hides the selected DOM element(s).
$("selector").show() shows the selected DOM element(s).</p>
<p>Truthfully though, I think you could've solved this problem without having to consult stackoverflow. The jquery docs are pretty clear imo!</p>
<p>see <a href="http://docs.jquery.com/Effects" rel="nofollow">the jQuery online documentation</a> for show, hide and toggle.</p>
http://stackoverflow.com/questions/1024918/switch-statement-and-isset/1024927#10249274Answer by Erik van Brakel for Switch statement and issetErik van Brakel2009-06-21T22:50:56Z2009-06-21T22:50:56Z<p>isset returns a bool (see the <a href="http://nl3.php.net/manual/en/function.isset.php" rel="nofollow">isset manual page</a>). Your case won't work, as 'deleted' is not a valid boolean value (it evaluates to true I think, but still).</p>
<p>You should check if it's set first, then switch:</p>
<pre><code>if(isset($_GET['action')) {
switch ( $_GET['action']) ) {
case "delete":
delete();
break;
}
} else {
...
}
</code></pre>
http://stackoverflow.com/questions/1018564/encapsulating-a-network-protocol1Encapsulating a network protocolErik van Brakel2009-06-19T15:22:02Z2009-06-20T03:47:45Z
<p>I'm working on an app which takes in a raw binary message (very simple, first byte is the message type, rest is payload), and then does something with it. The thing I'm trying to accomplish is making sure that the networking service is abstracted away from the rest of the app, to allow for modifying the protocol now and then without affecting the rest of the application too much.
The context of the application is a very simple client-server game, for which I am doing the client work now.</p>
<p>I'm kinda struggling now though. I need to find an elegant way to just throw a connection into some sort of translator/adapter service, which returns pretty objects (I think). Those objects will be thrown in a queue awaiting consumption by the rest of the app. The problem I'm facing is more or less this construct (pseudo code):</p>
<p>Let's assume each message is the 20 bytes, so I can deal with calling this function for each 20 bytes:</p>
<pre><code>public Message GetMessage(byte[] buffer)
{
switch(buffer[0])
{
case 1:
return Message1(...);
case 2:
return Message2(...);
.....
case n:
return MessageN(...);
}
}
</code></pre>
<p>Obviously, I'll use an enum or constants for the case, but that's not the thing that's bugging me.
Here's the thing. I think I've got about 50 message types, which would mean I'll get a switch statement with 50 cases. I can't really think of a proper way to cut this up into smaller pieces, which will result in a huge, error prone method. I was wondering if there's any patterns to make this easier, as I couldn't find any.</p>
<p>Thanks for the input in advance!</p>
http://stackoverflow.com/questions/605986/legacy-mapping-with-hibernate0Legacy mapping with hibernateErik van Brakel2009-03-03T11:15:05Z2009-03-03T11:46:19Z
<p>For my current project I have to map a legacy database using hibernate, but I'm running into some problems.
The database is setup using one 'entity' table, which contains common properties for all domain objects. Properties include (among others) creation date, owner (user), and a primary key which is subsequently used in the tables for the domain objects.</p>
<p>A simple representation of the context is as such:</p>
<pre><code>table entity
- int id
- varchar owner
table account
- int accountid (references entity.id)
table contact
- int contactid (references entity.id)
- int accountid (references account.accountid)
</code></pre>
<p>My problem exhibits itself when I try to add a collection mapping to my account mapping, containing all contacts belonging to the account. My attempts boil down to the following:</p>
<pre><code><hibernate-mapping>
<class name="Contact" table="entity">
<id name="id" column="id">
<generator class="native" />
</id>
<join table="contact">
<key column="contactid"/>
<!-- more stuff -->
</join>
</class>
</hibernate-mapping>
<hibernate-mapping>
<class name="Account" table="entity">
<id name="id" column="id">
<generator class="native" />
</id>
<bag name="contacts" table="contact">
<key column="accountid" />
<one-to-many class="Contact"/>
</bag>
<join table="account">
<key column="accountid"/>
<!-- more stuff -->
</join>
</class>
</hibernate-mapping>
</code></pre>
<p>However, when I try to fetch the account I get an SQL error, stating that the entity table does not contain a column called accountid. I see why this is happening: the mapping tries to find the accountid column in the entity table, when I want it to look in the contact table. Am I missing something obvious here, or should I approach this problem from another direction?</p>
http://stackoverflow.com/questions/571771/displaying-pdf-on-a-website/571780#5717800Answer by Erik van Brakel for displaying pdf on a websiteErik van Brakel2009-02-21T00:32:35Z2009-02-21T00:32:35Z<p>Personally I wouldn't bother with that, and just rely on the user to have a proper pdf reader. If you go for a flash (or silverlight?) solution, you're imposing another requirement to the user to cover up the first one. On the other hand, converting PDF to HTML isn't all that easy, just look at how the output from Gmail's 'view as html' functionality looks.</p>
<p>As said, and as others already posted while I'm writing this I am sure, is to not bother and just let the visitor deal with having something to read pdf with ;-)</p>
http://stackoverflow.com/questions/571753/asp-net-mvc-view-data/571761#5717611Answer by Erik van Brakel for asp.net mvc view dataErik van Brakel2009-02-21T00:22:46Z2009-02-21T00:22:46Z<p>Did you try specifying the full namespace? Like, err, MyProject.ViewDTO.FooBarViewData ?</p>
<p>When it DOES register, you can access your typed viewdata via the Model property on the view. This should work:</p>
<pre><code><% foreach(Foo foo in Model.Foos) { %>
<%= Foo.ToString() %>
<% } %>
</code></pre>
http://stackoverflow.com/questions/556371/getting-masterpage-name-in-asp-net-mvc/556391#5563912Answer by Erik van Brakel for Getting Masterpage Name in asp.net MVCErik van Brakel2009-02-17T11:31:18Z2009-02-17T13:08:00Z<p>I'd say the point when your master page is known would be right after your view has been resolved by your view engine. You can set your masterpage when calling the View method on your Controller though:</p>
<pre><code>public ActionResult Index()
{
return View("index","masterpagename");
}
</code></pre>
<p>I think if you want to do anything with your masterpage THAT would be the way. I don't know the context of your question, but I assume you want to manipulate the view and/or viewdata depending on which masterpage is used? Maybe the solution to your problem is not programmatically getting the name of the masterpage in the first place?</p>
<p>Addition, after your edit:
What you could do is create a new 'Base' controller which inherits the default Controller class. Then you override the View methods, and tell your developers to use that:</p>
<pre><code>public class MySuperController : Controller
{
protected override ViewResult View(string viewName, string masterName, object model)
{
// do something here so your masterpage is different depending on the context //
string newMasterName = "something-something";
return base.View(viewName, newMasterName, model);
}
}
</code></pre>
<p>I 'think' all other view methods either get routed through this, or are not used in your case (the ones requiring you to pass an IView).</p>
http://stackoverflow.com/questions/1735232/css-framework-recommendations/1735285#1735285Comment by Erik van Brakel on CSS Framework RecommendationsErik van Brakel2009-12-04T17:22:05Z2009-12-04T17:22:05ZI'd say Less is a CSS extension library. By the way, using mixins you can really work well with those frameworks (grouping framework stuff etc.)http://stackoverflow.com/questions/1654140/orm-persistence-layer-advice/1822956#1822956Comment by Erik van Brakel on ORM/Persistence layer AdviceErik van Brakel2009-11-30T22:51:02Z2009-11-30T22:51:02Z+1 for Fluent NH. Even if you like XML mappings you can use the fluent NH automapper to create a basic xml skeleton, output it to files and then tweak from there. Very nice!http://stackoverflow.com/questions/1809174/performance-implications-with-clean-code/1813003#1813003Comment by Erik van Brakel on Performance implications with 'clean code'Erik van Brakel2009-11-29T19:28:09Z2009-11-29T19:28:09ZI've done some work with cachegrind, simply get the xdebug profiling api up and it'll simply log all calls into a file which can be parsed with a tool. At a glance you can then see what takes a long time easily. We already optimized some old db queries which took faaaaar to long for what they needed to do.http://stackoverflow.com/questions/1805825/visual-studio-extension-splash-info-not-showing/1805829#1805829Comment by Erik van Brakel on Visual Studio extension: splash info not showingErik van Brakel2009-11-26T22:29:16Z2009-11-26T22:29:16ZThanks. 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.http://stackoverflow.com/questions/1805825/visual-studio-extension-splash-info-not-showingComment by Erik van Brakel on Visual Studio extension: splash info not showingErik van Brakel2009-11-26T22:17:44Z2009-11-26T22:17:44ZIt's a managed packagehttp://stackoverflow.com/questions/1800798/php-case-statement-not-working-with-zero-values/1800835#1800835Comment by Erik van Brakel on PHP CASE statement not working with ZERO values.Erik van Brakel2009-11-26T00:45:55Z2009-11-26T00:45:55ZI'm not sure if this would be the recommended approach of using a switch statement though, I wouldn't say it reads very well.http://stackoverflow.com/questions/97522/what-are-all-the-valid-self-closing-tags-in-xhtml-as-implemented-by-the-major-br/142457#142457Comment by Erik van Brakel on What are all the valid self-closing tags in XHTML (as implemented by the major browsers)?Erik van Brakel2009-11-15T18:59:15Z2009-11-15T18:59:15ZWell, 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?http://stackoverflow.com/questions/1729237/how-expensive-is-this-php-downcasting-workaroundComment by Erik van Brakel on how expensive is this php downcasting workaroundErik van Brakel2009-11-13T13:44:42Z2009-11-13T13:44:42ZWhen 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 :)http://stackoverflow.com/questions/1723270/what-does-the-code-doComment by Erik van Brakel on What does the code do?Erik van Brakel2009-11-12T16:02:07Z2009-11-12T16:02:07ZAs 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.http://stackoverflow.com/questions/1550007/unity-what-are-the-injectionmembers-in-registertype-calls-for/1715005#1715005Comment by Erik van Brakel on Unity - What are the InjectionMembers in RegisterType() calls for?Erik van Brakel2009-11-11T12:58:30Z2009-11-11T12:58:30ZAlmost. It's because of the params keyword.http://stackoverflow.com/questions/1621338/why-isnt-there-a-cpan-for-net/1621355#1621355Comment by Erik van Brakel on Why isn't there a CPAN for .NET?Erik van Brakel2009-10-25T22:42:07Z2009-10-25T22:42:07ZI think you mean Horn: <a href="http://code.google.com/p/hornget/" rel="nofollow">code.google.com/p/hornget</a>http://stackoverflow.com/questions/1536901/hibernate-mappings-splitting-up-the-file/1537179#1537179Comment by Erik van Brakel on Hibernate mappings: Splitting up the fileErik van Brakel2009-10-08T11:24:27Z2009-10-08T11:24:27ZYes, that's it! Thanks, this was one of the last annoyances in the project.http://stackoverflow.com/questions/1509693/ive-learnt-jquery-should-i-go-back-and-learn-proper-js/1509705#1509705Comment by Erik van Brakel on I've learnt jQuery, should I go back and learn "proper js"?Erik van Brakel2009-10-02T14:10:37Z2009-10-02T14:10:37ZI 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.http://stackoverflow.com/questions/1499239/database-vs-flat-text-file-what-are-some-technical-reasons-for-choosing-one-over/1499286#1499286Comment by Erik van Brakel on Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn't an issue?Erik van Brakel2009-09-30T17:37:29Z2009-09-30T17:37:29ZI 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?http://stackoverflow.com/questions/556153/horiz-css-menu-text-shifting-on-bold-hover/977108#977108Comment by Erik van Brakel on Horiz CSS menu - text shifting on bold hoverErik van Brakel2009-09-29T13:28:24Z2009-09-29T13:28:24ZIf 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.