Dave Van den Eynde
|
Registered User
|
I like photography, music and electronics.
|
|
7h |
comment |
Project code managment using SVN Perhaps you should also consider trying out the VisualSVN client. |
|
7h |
comment |
Project code managment using SVN 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. |
|
9h |
comment |
SQL Server encryption using self signed SSL certificate. Querying from ASP.NET 3.5. 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. |
|
Nov 28 |
comment |
jQuery, remove item from middle of list, then refresh list? Update: HTML 4.01 section 7.5.2 says that the id attribute must be unique in a document. w3.org/TR/html401/… |
|
Nov 28 |
comment |
jQuery, remove item from middle of list, then refresh list? Where's the div element in the HTML? |
|
Nov 28 |
comment |
jQuery, remove item from middle of list, then refresh list? Are you sure the li element was removed? |
|
Nov 28 |
answered | jQuery, remove item from middle of list, then refresh list? |
|
Nov 28 |
comment |
jQuery, remove item from middle of list, then refresh list? I don't think you're supposed to use the same id in two elements. |
|
Nov 27 |
comment |
Object cache for C# 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. |
|
Nov 21 |
accepted | Rendered pIxel width data for each character in a browser’s font |
|
Nov 20 |
comment |
How can I find which object in ASP.NET can’t be serialized? Can't you just use foreach instead of doing all the plumbing of getting an enumerator? |
|
Nov 20 |
comment |
How can I find which object in ASP.NET can’t be serialized? 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]. |
|
Nov 10 |
comment |
iPhone Objective-C foreach design question 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. |
|
Nov 10 |
comment |
iPhone Objective-C foreach design question not universal, but does tend to smell, in my opinion. Especially when you indicate that you're designing the classes themselves as well. |
|
Nov 10 |
answered | iPhone Objective-C foreach design question |
|
Nov 1 |
comment |
Variable number of arguments in C++? 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. |
|
Nov 1 |
answered | Variable number of arguments in C++? |
|
Oct 21 |
comment |
cannot convert from ‘out double?’ to ‘out double’ Actually, since it's an out parameter, initializing it to 0 is pointless. |
|
Oct 18 |
comment |
What does typedef do in C++. I think this is incorrect. You're not introducing a new type. You're only introducing an alias to the type. |
|
Oct 17 |
comment |
C++ programmer looking to broaden perspective I totally agree. |
|
Oct 16 |
asked | How to render a view from the Service layer? |
|
Oct 13 |
comment |
Set Culture in an ASP.Net MVC app The web resource is not dependent on a hidden state, the way it's rendered is. If you want to access the resource as a web service, you'll need to choose a language to do it in. |
|
Oct 13 |
comment |
Set Culture in an ASP.Net MVC app In my opinion, using the URL to specify the language is the worst thing you can do. It totally violates REST and you're getting yourself in trouble if you ever want to add AJAX. |
|
Oct 11 |
revised |
Why does my ASP.NET MVC application work from a virtual directory, but not from a website? added 301 characters in body |
|
Oct 9 |
comment |
Why does my ASP.NET MVC application work from a virtual directory, but not from a website? I used the same permissions on the same folder in both cases. |
|
Oct 9 |
comment |
Why does my ASP.NET MVC application work from a virtual directory, but not from a website? I have complete access to the remote machine, and I have installed ASP.NET MVC using the Web Platform Installer 2.0, but thanks for sharing anyway. |
|
Oct 9 |
asked | Why does my ASP.NET MVC application work from a virtual directory, but not from a website? |
|
Oct 9 |
comment |
Does anyone beside me just NOT get ASP.NET MVC? This question comes up too often when I search for something. |
|
Oct 8 |
accepted | Changing Resource files (resx) namespace and access modifier |
|
Oct 7 |
comment |
Is Performance Always Important? ...and I would agree with that. |
|
Oct 7 |
comment |
JavaScript / JQuery array/object problem You mean that PHP doesn't have JSON native? |
|
Oct 7 |
answered | Is Performance Always Important? |
|
Oct 7 |
comment |
What badly named .NET BCL framework functions can you think of? What exactly is your question? |
|
Oct 3 |
comment |
ASP.NET MVC, strongly typed views, partial view parameters glitch. I have the same problem, but with my own type, not System.String, so there's no "default" to use instead. Perhaps I should make this a non-strongly typed partial view instead, and check the type passed? |
|
Oct 2 |
comment |
How does .NET allow API exploration of compiled DLLs? A "mixed" assembly can contain both managed and unmanaged code. |
|
Oct 2 |
comment |
How does .NET allow API exploration of compiled DLLs? This question is a response to my comment about another question regarding headers, so no, I don't think it's specific to .NET DLL's. |
|
Oct 2 |
accepted | How to SELECT data from SQL Server using .Net 2.0 — as simple as possible. |
|
Oct 2 |
revised |
How does .NET allow API exploration of compiled DLLs? added 124 characters in body; added 96 characters in body |
|
Oct 2 |
comment |
How does .NET allow API exploration of compiled DLLs? This question shouldn't be closed, it's related to this question: stackoverflow.com/questions/1507743/… |
|
Oct 2 |
answered | How does .NET allow API exploration of compiled DLLs? |
|
Oct 2 |
answered | css quick guide for coders |
|
Oct 2 |
comment |
What’s the rationale behind headers? You'll need to translate the headers, but I think that deserves an entire question in itself. |
|
Oct 2 |
answered | How to SELECT data from SQL Server using .Net 2.0 — as simple as possible. |
|
Sep 28 |
comment |
Storing a file in a database as opposed to the file system? I'm having some reservations here. Specifically the scalability and availability side of things: how do you control where those "blobs" are stored? |
|
Sep 24 |
revised |
Changing Resource files (resx) namespace and access modifier added 201 characters in body |
|
Sep 24 |
answered | Changing Resource files (resx) namespace and access modifier |
|
Sep 20 |
revised |
How to get and set http headers in an Action, the testable way Fixed the code sample. |
|
Sep 18 |
asked | How to get and set http headers in an Action, the testable way |
|
Sep 16 |
answered | What’s the advantage of mapping a binary column to System.Data.Linq.Binary instead of byte[]? |
|
Sep 16 |
revised |
What’s the advantage of mapping a binary column to System.Data.Linq.Binary instead of byte[]? added 477 characters in body |
