User Dave Van den Eynde - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T02:03:22Z http://stackoverflow.com/feeds/user/6669 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811923#1811923 1 Answer by Dave Van den Eynde for jQuery, remove item from middle of list, then refresh list? Dave Van den Eynde 2009-11-28T07:56:14Z 2009-11-28T07:56:14Z <p>You could use FireBug to see what you're actually removing, but I'm guessing it's the label element, not the li element. The way you styled it makes it look as if it's an empty space, while I think it's an empty list element.</p> <p>How about this:</p> <pre><code>$list.find('li#city_' + $id).remove(); </code></pre> http://stackoverflow.com/questions/1706153/iphone-objective-c-foreach-design-question/1706172#1706172 0 Answer by Dave Van den Eynde for iPhone Objective-C foreach design question Dave Van den Eynde 2009-11-10T07:27:29Z 2009-11-10T07:27:29Z <p>I'm not an Objective C programmer.</p> <p>In your case, I think you need to go through your list with that "for (Touch* in touches)" and in the body figure out if that object is either a MoveTouch or a JumpTouch and so forth.</p> <p>But the idea of polymorphism is that you don't do this. You don't sort 'm out during your loop. The action that you want to perform should be defined in the interface, and each descendant class implements a different implementation for that action. That's what polymorphism is all about.</p> http://stackoverflow.com/questions/1657883/variable-number-of-arguments-in-c/1657886#1657886 6 Answer by Dave Van den Eynde for Variable number of arguments in C++? Dave Van den Eynde 2009-11-01T18:27:32Z 2009-11-01T18:27:32Z <p>The only way is through the use of C style variable arguments, as described <a href="http://publications.gbdirect.co.uk/c%5Fbook/chapter9/stdarg.html" rel="nofollow">here</a>. Note that this is not a recommended practice, as it's not typesafe and error-prone.</p> http://stackoverflow.com/questions/1577739/how-to-render-a-view-from-the-service-layer 2 How to render a view from the Service layer? Dave Van den Eynde 2009-10-16T12:24:06Z 2009-10-16T17:14:14Z <p>I'm including a feature in my web application that notifies a user via e-mail. </p> <p>Now that I want to HTML format this e-mail, I'm wondering whether it is viable to re-use the core functionality of ASP.NET MVC and have a partial view rendered to a string, so that I can make a partial view with the content of the e-mail. The code in the Service layer would provide the model necessary for the view.</p> http://stackoverflow.com/questions/1543084/why-does-my-asp-net-mvc-application-work-from-a-virtual-directory-but-not-from-a 1 Why does my ASP.NET MVC application work from a virtual directory, but not from a website? Dave Van den Eynde 2009-10-09T10:47:19Z 2009-10-11T16:11:02Z <p>I created an ASP.NET MVC application on my local computer under IIS 7.5 (Windows 7 RC) in a virtual directory (like <a href="http://localhost/MyApp" rel="nofollow">http://localhost/MyApp</a>). </p> <p>Now that I'm trying to deploy it to a remote server I get strange results. The application seems to route every request to the Forms Authentication login form, and requests for static content (from the /Content directory) result in exceptions for not being able to create a controller.</p> <p>When I deploy the same application to a virtual directory on the remote server, everything works as expected. </p> <p>I was expecting some small problems like url's not pointing correctly and other minor fixups, but not this.</p> <p>Any idea as to why this is happening and what I can do to diagnose the problem is welcome.</p> <p>Update:</p> <p>For some reason, it works now, and I can't figure out what I did to make it work. This bothers me, not only because now I can't investigate further what went wrong. Also because now I have no answer to this question. I'm going to leave it open so that anyone can still make suggestions.</p> http://stackoverflow.com/questions/1531945/is-performance-always-important/1531965#1531965 7 Answer by Dave Van den Eynde for Is Performance Always Important? Dave Van den Eynde 2009-10-07T14:25:13Z 2009-10-07T14:25:13Z <p>Performance != Optimization.</p> <p>Performance is a feature indeed, but premature optimization will cost you time and will not yield the same result as when you optimize the parts that need optimization. And you can't really know which parts need optimization until you can actually profile something.</p> <p>Performance is the feature that your clients will not tell you about if it's missing, unless it's really painfully slow and they're forced to use your product. Existing customers may report it in the end, but new customers will simply not bother if the performance is required.</p> <p>You need to know what performance you need, and formulate it as a requirement. Then, you have to meet your own requirement.</p> http://stackoverflow.com/questions/1507853/how-does-net-allow-api-exploration-of-compiled-dlls/1507877#1507877 0 Answer by Dave Van den Eynde for How does .NET allow API exploration of compiled DLLs? Dave Van den Eynde 2009-10-02T05:30:07Z 2009-10-02T05:35:24Z <p>It depends.</p> <p>A DLL contains a list of functions exported, but these can be simply assigned a number, a name, or they can be assigned a <a href="http://en.wikipedia.org/wiki/Name%5Fmangling" rel="nofollow">mangled</a> C++ name. The latter can give some insight in the function's parameters, but data structures, calling conventions and other required attributes are generally not documented.</p> <p>If it's a COM DLL, there's a possibility that it contains a Type Library as a resource, but this is not guaranteed. In that case, .NET can import the library quite automatically.</p> <p>A Type Library can also be included in a non-COM DLL, but this is not a widespread practice.</p> <p>If you have a compiled DLL designed to be called from a non-COM, non-managed environment, you'll need to translate the header files that should be included with the DLL.</p> http://stackoverflow.com/questions/1507649/css-quick-guide-for-coders/1507855#1507855 0 Answer by Dave Van den Eynde for css quick guide for coders Dave Van den Eynde 2009-10-02T05:24:28Z 2009-10-02T05:24:28Z <p>I think what you want to read is "<a href="http://www.sitepoint.com/books/design1/?SID=873be7b35dfdad83c0287633493d46a6" rel="nofollow">The Principles of Beautiful Web Design</a>". It's a pretty light read, and give you insight in some designer concepts to get you along the way pretty fast.</p> http://stackoverflow.com/questions/1507820/how-to-select-data-from-sql-server-using-net-2-0-as-simple-as-possible/1507825#1507825 4 Answer by Dave Van den Eynde for How to SELECT data from SQL Server using .Net 2.0 -- as simple as possible. Dave Van den Eynde 2009-10-02T05:15:36Z 2009-10-02T05:15:36Z <p>Using the SqlCommand and SqlDataReader classes are your best bet. If you need to write the results to a flat file, you should use the reader directly instead of going to a DataSet, since the latter will load the result in memory before you're able to write it out to a flat file.</p> <p>The SqlDataReader allows you to read out the data in a streaming fashion, making your app a lot more scalable for this situation.</p> http://stackoverflow.com/questions/1333356/changing-resource-files-resx-namespace-and-access-modifier/1470287#1470287 1 Answer by Dave Van den Eynde for Changing Resource files (resx) namespace and access modifier Dave Van den Eynde 2009-09-24T07:45:07Z 2009-09-24T07:51:57Z <p>I'm not entirely sure where the problem lies yet, but I can tell you that you can solve it by changing the tool used to generate the code.</p> <p>When I tried to follow <a href="http://www.codeproject.com/KB/aspnet/Localizing%5FASP%5FNET%5FMVC.aspx" rel="nofollow">this article</a>, I also stumbled onto this problem. After downloading the source files as the author suggested, I noticed that the resource file that were already present had the following class in the "Custom Tool" property: "PublicResXFileCodeGenerator". Also, the "Build Action" property was set to "Embedded Resource", but I'm not sure if that's part of the problem.</p> <p>Any new resource file that I created used the custom tool "GlobalResourceProxyGenerator". After overwriting this with the aforementioned "PublicResXFileCodeGenerator" seemed to solve the problem, whatever the real problem may be.</p> <p>I also noticed that the present resource file was in the "2.0" format, whereas new files were in the "1.3" format. You can see this when you open the resx file using an XML editor (or by using "open with" from visual studio itself).</p> <p>I hope you can make it work like this, it's not ideal though. It's likely to be an installation issue with Visual Studio 2008 and SP1, or something like that.</p> <p>Update:</p> <p><a href="http://odetocode.com/blogs/scott/archive/2009/07/15/13211.aspx" rel="nofollow">This blog entry</a> may also help.</p> http://stackoverflow.com/questions/1445838/how-to-get-and-set-http-headers-in-an-action-the-testable-way 2 How to get and set http headers in an Action, the testable way Dave Van den Eynde 2009-09-18T17:22:08Z 2009-09-20T15:10:31Z <p>I have an action that returns either a FileContentResult or a NotModifiedResult, which is a custom result type that returns HTTP 304 to indicate that the requested resource has not been modified, like this:</p> <pre><code>[ReplaceMissingPicture(Picture = "~/Content/Images/nothumbnail.png", MimeType = "image/png")] public ActionResult Thumbnail(int id) { var item = Service.GetItem(id); var requestTag = Request.Headers["If-None-Match"] ?? string.Empty; var tag = Convert.ToBase64String(item.Version.ToArray()); if (tag == requestTag) { return new NotModifiedResult(); } if (item.Thumbnail != null) { var thumbnail = item.Thumbnail.ToArray(); var mime = item.PictureMime; Response.AppendHeader("ETag", tag); return File(thumbnail, mime); } else { return null; } } </code></pre> <p>This action needs to access the Response object, which is of course not present during testing, so that makes this action untestable. I could add conditional statements around it, so that it runs during testing, but then I can't test for the headers being set correctly.</p> <p>What would be a solution to this problem?</p> <p>FYI, the ReplaceMissingPicture filter returns a specific resource in case null was returned from this action, to keep the MapPath() call out of the controller for the very same reason.</p> http://stackoverflow.com/questions/1431769/whats-the-advantage-of-mapping-a-binary-column-to-system-data-linq-binary-instea 0 What's the advantage of mapping a binary column to System.Data.Linq.Binary instead of byte[]? Dave Van den Eynde 2009-09-16T08:49:16Z 2009-09-16T12:15:02Z <p>LINQ to SQL by default maps a binary column (varbinary, image, ...) to a property of the type 'System.Data.Linq.Binary'. Working with binary data this way is not that hard, but you can manually change that mapping to 'byte[]', making it easier to work with binary data (since you don't have to convert it in code anymore.</p> <p>What's the disadvantage of doing this? Why is was the Binary type chosen as the default for these types of columns. Why does the Binary type even exist at all? My guess is that using the Binary type for some reason allows you to "lazy load" the binary data, but that's just my guess and I can't find any documentation that proves this.</p> <p>Does anyone else have more information concerning this?</p> <p>UPDATE:</p> <p>According to <a href="http://www.davidhayden.com/blog/dave/archive/2009/02/12/LINQToSQLTutorialsLazyLoadingPropertiesPerformance.aspx" rel="nofollow">this blogpost</a>, the way to make a Binary property lazy loading is by setting the "delay loaded" property to True, which turns the property datatype into Link. That would indicate that a regular Binary property doesn't do lazy loading by itself. So my question remains: what benefit does a Binary have over byte[]?</p> http://stackoverflow.com/questions/1431769/whats-the-advantage-of-mapping-a-binary-column-to-system-data-linq-binary-instea/1432597#1432597 1 Answer by Dave Van den Eynde for What's the advantage of mapping a binary column to System.Data.Linq.Binary instead of byte[]? Dave Van den Eynde 2009-09-16T12:15:02Z 2009-09-16T12:15:02Z <p>I found <a href="http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/5fe88a34-bcbc-4e6d-a611-4768e050383e" rel="nofollow">this mention here</a>:</p> <blockquote> <p>The Binary type exists because LINQ to SQL cannot track changes made to a byte[]. It only tracks changes made to a property when you assign a new byte[] to it. The Binary type is an immutable version of byte[], like the String type is an immutable version of char[]. Since you cannot change the contents of a Binary type, the only way to modify it is to assign your property a new instance.</p> </blockquote> http://stackoverflow.com/questions/1037842/can-i-apply-an-attribute-to-an-inherited-member 1 Can I apply an attribute to an inherited member? Dave Van den Eynde 2009-06-24T11:44:12Z 2009-09-16T08:53:48Z <p>Suppose I have the following (trivially simple) base class:</p> <pre><code>public class Simple { public string Value { get; set; } } </code></pre> <p>I now want to do the following:</p> <pre><code>public class PathValue : Simple { [XmlAttribute("path")] public string Value { get; set; } } public class ObjectValue : Simple { [XmlAttribute("object")] public string Value { get; set; } } </code></pre> <p>But without actually redefining the property. I want to apply attributes to members of the base class. Is this possible?</p> <p>The real problem is that in my serialization mechanism from/to XML (which works brilliantly btw), I find a lot of similar elements where only the names of the attributes differ (they're not consistent, and I don't control the format). Right now I need to create a different class for every such element, whereas they're like 100% the same (apart from the attributes).</p> <p>I don't think it's possible, but you might never know.</p> <p>UPDATE:</p> <p>I tried Marc's approach, but to no avail:</p> <pre><code>public class Document { public PathValue Path; public ObjectValue Object; } class Program { static void Main(string[] args) { var doc = new Document() { Path = new PathValue() { Value = "some path" }, Object = new ObjectValue() { Value = "some object" } }; XmlAttributeOverrides overrides = new XmlAttributeOverrides(); overrides.Add(typeof(PathValue), "Value", new XmlAttributes() { XmlAttribute = new XmlAttributeAttribute("path") }); overrides.Add(typeof(ObjectValue), "Value", new XmlAttributes() { XmlAttribute = new XmlAttributeAttribute("object") }); XmlSerializer serializer = new XmlSerializer(typeof(Document), overrides); serializer.Serialize(Console.Out, doc); Console.WriteLine(); Console.ReadLine(); } } </code></pre> <p>...doesn't do the trick.</p> http://stackoverflow.com/questions/1037842/can-i-apply-an-attribute-to-an-inherited-member/1431786#1431786 1 Answer by Dave Van den Eynde for Can I apply an attribute to an inherited member? Dave Van den Eynde 2009-09-16T08:53:48Z 2009-09-16T08:53:48Z <p>I'm going to answer this question myself, so that I can accept this answer. I don't like the answer, but I suppose it's the only valid answer.</p> <p>The answer is: No, you can't do it. </p> http://stackoverflow.com/questions/1260189/htmlhelper-missing 0 HtmlHelper missing? Dave Van den Eynde 2009-08-11T13:00:23Z 2009-08-11T13:06:05Z <p>I'm trying to create an Html Helper, by creating a static class as follows:</p> <pre><code>public static string Crumbs(this HtmlHelper helper, params string[] args) where T : class { // ... rest of code goes here. } </code></pre> <p>And I'm invoking it like this:</p> <pre><code>&lt;% Html.Crumbs( Html.ActionLink("Home", "Index", "Home"), Html.ActionLink("Lists", "Index", "User"), Html.Encode(Model.List.Name)); %&gt; </code></pre> <p>However, the view does not compile, as I get the following compilation error:</p> <blockquote> <p>CS1061: 'System.Web.Mvc.HtmlHelper' does not contain a definition for 'Crumbs' and no extension method 'Crumbs' accepting a first argument of type 'System.Web.Mvc.HtmlHelper' could be found (are you missing a using directive or an assembly reference?)</p> </blockquote> <p>I don't get it. None of the documentation that I have mentions that you need to register the namespace of the static class anywhere. What am I doing wrong?</p> http://stackoverflow.com/questions/1129900/in-asp-net-mvc-should-onexception-be-used-for-application-exceptions 1 In ASP.NET MVC, should OnException be used for application exceptions? Dave Van den Eynde 2009-07-15T07:23:28Z 2009-07-15T07:48:26Z <p>I'm building a small application in ASP.NET MVC. I'm still trying to find my way around some of the design problems that I encounter.</p> <p>One of them is the use of exceptions. I've built my model so that it throws an exception whenever an object does not exist or is not accessible to the user. I think I made the right choice, in my opinion.</p> <p>The problem is, what's next? I can either check for the exception in the controller, and redirect to a different view, but that seems to produce a lot of the same pattern in many actions in many controllers. </p> <p>Or, I can simply avoid checking for the exception and override the OnException method of the controller (or some base controller class that I will use) to deal with it. That would keep all the clutter from my actions.</p> <p>From the examples that I've found, I can see how HandleError and OnException can be used to log unhandled exceptions (which is a good thing to do) and redirect to a "sorry!" page, but I would like to know your opinion on using the mechanism on less "unforeseen" exceptions.</p> http://stackoverflow.com/questions/1027338/what-to-do-when-your-development-system-crashes/1027363#1027363 1 Answer by Dave Van den Eynde for What to do when your development system crashes? Dave Van den Eynde 2009-06-22T13:59:19Z 2009-06-22T13:59:19Z <p>Looks like you're gonna have to wait for <a href="http://www.superuser.com/" rel="nofollow">Superuser</a> to launch.</p> http://stackoverflow.com/questions/1026570/how-can-i-build-xmldocument-with-many-xml-namespaces-in-a-single-node/1026652#1026652 2 Answer by Dave Van den Eynde for How can I build XmlDocument with many xml namespaces in a single node? Dave Van den Eynde 2009-06-22T11:28:32Z 2009-06-22T11:41:08Z <p>The attributes "xmlns:wnio" and "xmlns:xf" are attributes like any other. Simply add them to the XmlElement that you would like these XML Namespaces to scope to.</p> <p>The following snippet produces almost exactly what you want:</p> <pre><code>XmlDocument document = new XmlDocument(); document.AppendChild(document.CreateElement("wnio", "element", "somuri")); document.DocumentElement.SetAttribute("xmlns:xf", "abcd"); document.DocumentElement.AppendChild(document.CreateElement("xf", "nestedelement", "abcd")); </code></pre> http://stackoverflow.com/questions/1007054/why-cant-i-befriend-a-template-parameter/1007138#1007138 1 Answer by Dave Van den Eynde for Why can't I befriend a template parameter? Dave Van den Eynde 2009-06-17T13:46:32Z 2009-06-17T13:46:32Z <p>Section 7.1.5.3 of the standard explicitly describes this as an example of an illformed elaborated type specifier.</p> <p>A discussion about the subject can be found <a href="http://www.cpptalk.net/may-a-template-argument-be-a-friends-of-the-template-class-vt41742.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1005463/simple-way-to-remove-exif-data-from-a-jpeg-with-net/1005792#1005792 2 Answer by Dave Van den Eynde for simple way to remove EXIF data from a JPEG with .NET Dave Van den Eynde 2009-06-17T08:30:21Z 2009-06-17T08:30:21Z <p>I think reading in the file into a Bitmap object and writing out to a file again should do the trick. </p> <p>I remember feeling frustrated while doing my "image rotation program" that it removed the EXIF data. But in this case, it's exactly what you want!</p> http://stackoverflow.com/questions/995289/in-c-how-to-assign-a-superscript-to-an-equation/995296#995296 5 Answer by Dave Van den Eynde for in c# how to assign a superscript to an equation ? Dave Van den Eynde 2009-06-15T10:00:22Z 2009-06-15T10:00:22Z <p>Use <code>Math.Pow(2, 5)</code></p> <p>The carrot sign "^" is used for boolean and bitwise exclusive-OR operations. Your idea that it's used to calculate the power comes from VB/VB.NET.</p> http://stackoverflow.com/questions/950992/version-tolerant-serialization-how-to-find-assemblyname-of-the-original 2 Version Tolerant Serialization - How to find AssemblyName of the original Dave Van den Eynde 2009-06-04T14:36:21Z 2009-06-14T08:08:53Z <p>In .NET 2.0 (and upwards, I presume), Version Tolerant Serialization will succesfully deserialize a serialized object from an older version of the assembly in which the object resides.</p> <p>When I open such a binary formatted serialized stream using a hex viewer (a simple drag'ndrop into VS will do) I can see there's assembly information contained in this stream.</p> <p>Is there, during deserialization, a way to retrieve this information? This can be used, for example, to apply fixups to known issues when reading in older content.</p> <p>UPDATE: It looks like it can't be done (apart from changing the class itself, as in Paul Betts answer, didn't test that either) so is there any other way to read this value? Is the binary format published?</p> http://stackoverflow.com/questions/975680/asp-net-mvc-actions-separation-of-concerns-single-responsibility-principle/975738#975738 3 Answer by Dave Van den Eynde for Asp.Net MVC Actions - Separation of Concerns/Single Responsibility Principle Dave Van den Eynde 2009-06-10T13:51:51Z 2009-06-10T13:56:52Z <p>To me, this method does only one thing: update the model with the edited values received from the web form.</p> <p>It's clear that doing this requires a couple of things to happen, but they are atomic and well defined. If you ever need to modify how this part of the model needs to be updated, this is the controller action to look for and update.</p> <p>You could argue that one of the Thunderdome principles, "controllers should be light", is not met since a business rule is checked here. But NerdDinner is a very trivial app that it makes no sense to place this in an extra layer.</p> <p>If you find that this method does too much, perhaps you should find a language in which it's forbidden to place more than one statement in a method.</p> http://stackoverflow.com/questions/972392/interface-should-not-have-properties/972454#972454 0 Answer by Dave Van den Eynde for Interface should not have properties ? Dave Van den Eynde 2009-06-09T20:56:12Z 2009-06-09T20:56:12Z <p>Practically, a property is set of two functions: one to get the value, and one to set the value. Even though properties are first class "features" of C#, this is still true.</p> <p>Why wouldn't properties be allowed in interfaces?</p> http://stackoverflow.com/questions/972433/what-does-this-mean-when-used-as-a-prefix-for-method-parameters/972444#972444 0 Answer by Dave Van den Eynde for What does "this" mean when used as a prefix for method parameters? Dave Van den Eynde 2009-06-09T20:54:20Z 2009-06-09T20:54:20Z <p>Also see here: <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">Extension Methods (C# Programming Guid)</a></p> http://stackoverflow.com/questions/964566/vs-2008-addon-to-temporarily-disable-remove-all-catch-block/964596#964596 1 Answer by Dave Van den Eynde for VS 2008 Addon to temporarily disable/remove all catch block Dave Van den Eynde 2009-06-08T12:07:37Z 2009-06-08T12:07:37Z <p>You should use the Debug > Exceptions menu to bring up the Exceptions dialog, and select the checkbox "Thrown" on any kind of exception for which you want the development environment to break during debugging.</p> <p>You'll find that VS will break when the particular exception (or any of its subclasses) is thrown, before exception handling takes place. </p> <p>This will solve your problem.</p> http://stackoverflow.com/questions/949064/cheating-in-online-games-is-it-possible-to-prevent-one-win32-process-from-inspec/949094#949094 4 Answer by Dave Van den Eynde for Cheating in online games: Is it possible to prevent one Win32 process from inspecting/manipulating another's memory? Dave Van den Eynde 2009-06-04T07:36:35Z 2009-06-04T07:36:35Z <p>As long as your code runs on the user's computer, the user will figure out a way to be intrusive. There's nothing that you can do to prevent that.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/938302#938302 6 Answer by Dave Van den Eynde for Hidden Features of C#? Dave Van den Eynde 2009-06-02T07:20:56Z 2009-06-02T07:20:56Z <p><a href="http://msdn.microsoft.com/en-us/library/b3787ac0.aspx" rel="nofollow">Atrribute Targets</a></p> <p>Everyone has seen one. Basically, when you see this:</p> <pre><code>[assembly: ComVisible(false)] </code></pre> <p>The "assembly:" portion of that attribute is the target. In this case, the attribute is applied to the assembly, but there are others:</p> <pre><code>[return: SomeAttr] int Method3() { return 0; } </code></pre> <p>In this sample the attribute is applied to the return value. </p> http://stackoverflow.com/questions/760262/xmlserializer-remove-unnecessary-xsi-and-xsd-namespaces 5 XmlSerializer: remove unnecessary xsi and xsd namespaces Dave Van den Eynde 2009-04-17T12:44:21Z 2009-06-01T16:38:36Z <p>Is there a way to configure the XmlSerializer so that it doesn't write default namespaces in the root element?</p> <p>What I get is this:</p> <pre><code>&lt;?xml ...&gt; &lt;rootelement xmlns:xsi="..." xmlns:xsd="..."&gt; &lt;/rootelement&gt; </code></pre> <p>and I want to remove both xmlns declarations.</p> <p><strong>Duplicate of</strong>: <a href="http://stackoverflow.com/questions/258960">How to serialize an object to XML without getting xmlns=”…”?</a></p> http://stackoverflow.com/questions/1825032/project-code-managment-using-svn Comment by Dave Van den Eynde on Project code managment using SVN Dave Van den Eynde 2009-12-01T09:52:24Z 2009-12-01T09:52:24Z Perhaps you should also consider trying out the VisualSVN client. http://stackoverflow.com/questions/1825032/project-code-managment-using-svn/1825057#1825057 Comment by Dave Van den Eynde on Project code managment using SVN Dave Van den Eynde 2009-12-01T09:49:58Z 2009-12-01T09:49:58Z I don't agree. You can store all of your solutions in a single repository. Multiple repositories is perhaps a good idea if you have multiple teams that don't share source. http://stackoverflow.com/questions/1824579/sql-server-encryption-using-self-signed-ssl-certificate-querying-from-asp-net-3/1824596#1824596 Comment by Dave Van den Eynde on SQL Server encryption using self signed SSL certificate. Querying from ASP.NET 3.5. Dave Van den Eynde 2009-12-01T07:54:31Z 2009-12-01T07:54:31Z Is this an answer? If not, it's usually a good idea to delete this answer and post it as an update to your question. You can edit your own questions, you know. http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list Comment by Dave Van den Eynde on jQuery, remove item from middle of list, then refresh list? Dave Van den Eynde 2009-11-28T08:00:50Z 2009-11-28T08:00:50Z Update: HTML 4.01 section 7.5.2 says that the id attribute must be unique in a document. <a href="http://www.w3.org/TR/html401/struct/global.html#h-7.5.2" rel="nofollow">w3.org/TR/html401/&hellip;</a> http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811876#1811876 Comment by Dave Van den Eynde on jQuery, remove item from middle of list, then refresh list? Dave Van den Eynde 2009-11-28T07:58:37Z 2009-11-28T07:58:37Z Where's the div element in the HTML? http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811854#1811854 Comment by Dave Van den Eynde on jQuery, remove item from middle of list, then refresh list? Dave Van den Eynde 2009-11-28T07:57:00Z 2009-11-28T07:57:00Z Are you sure the li element was removed? http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list Comment by Dave Van den Eynde on jQuery, remove item from middle of list, then refresh list? Dave Van den Eynde 2009-11-28T07:52:09Z 2009-11-28T07:52:09Z I don't think you're supposed to use the same id in two elements. http://stackoverflow.com/questions/581119/object-cache-for-c/581173#581173 Comment by Dave Van den Eynde on Object cache for C# Dave Van den Eynde 2009-11-27T10:47:10Z 2009-11-27T10:47:10Z Perhaps, but I don't think it's the same thing. The preloading of data, and the prediction of which data to load is very distinct from the decision which data to remove. They are inherently related: you can probably come up with a good algorithm to decide which data to preload, but you'd have no control over how long that data is kept. http://stackoverflow.com/questions/1778147/what-are-positive-and-negative-points-if-i-choose-a-mac-over-a-windows-pc-for-web/1778164#1778164 Comment by Dave Van den Eynde on What are positive and negative points if I choose a Mac over a Windows PC for web design and development Dave Van den Eynde 2009-11-22T08:29:41Z 2009-11-22T08:29:41Z And there is an IDE available as well: <a href="http://monodevelop.com/Download" rel="nofollow">monodevelop.com/Download</a> http://stackoverflow.com/questions/1772854/how-can-i-find-which-object-in-asp-net-cant-be-serialized/1772920#1772920 Comment by Dave Van den Eynde on How can I find which object in ASP.NET can't be serialized? Dave Van den Eynde 2009-11-20T22:30:07Z 2009-11-20T22:30:07Z Can't you just use foreach instead of doing all the plumbing of getting an enumerator? http://stackoverflow.com/questions/1772854/how-can-i-find-which-object-in-asp-net-cant-be-serialized Comment by Dave Van den Eynde on How can I find which object in ASP.NET can't be serialized? Dave Van den Eynde 2009-11-20T19:58:58Z 2009-11-20T19:58:58Z It shouldn't actually be that hard to come up with a function that recursively finds all references of an object and determine whether the anything is not marked as [Serializable]. http://stackoverflow.com/questions/1706153/iphone-objective-c-foreach-design-question/1706172#1706172 Comment by Dave Van den Eynde on iPhone Objective-C foreach design question Dave Van den Eynde 2009-11-10T18:40:18Z 2009-11-10T18:40:18Z Why yes, if you don't want polymorphism then inheritance is a bit overkill. A simple enum would avoid the whole runtime type checking, which is probably a lot less efficient. http://stackoverflow.com/questions/1706153/iphone-objective-c-foreach-design-question/1706172#1706172 Comment by Dave Van den Eynde on iPhone Objective-C foreach design question Dave Van den Eynde 2009-11-10T10:21:52Z 2009-11-10T10:21:52Z not universal, but does tend to smell, in my opinion. Especially when you indicate that you're designing the classes themselves as well. http://stackoverflow.com/questions/1657883/variable-number-of-arguments-in-c/1657886#1657886 Comment by Dave Van den Eynde on Variable number of arguments in C++? Dave Van den Eynde 2009-11-01T18:34:15Z 2009-11-01T18:34:15Z Yes, but because of the type safety issues. Think all of the possible issues that regular printf has: format strings not matching passed arguments, and such. printf uses the same technique, BTW. http://stackoverflow.com/questions/1603668/cannot-convert-from-out-double-to-out-double/1603684#1603684 Comment by Dave Van den Eynde on cannot convert from 'out double?' to 'out double' Dave Van den Eynde 2009-10-21T21:14:23Z 2009-10-21T21:14:23Z Actually, since it's an out parameter, initializing it to 0 is pointless.