User Dan Goldstein - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:37:49Z http://stackoverflow.com/feeds/user/23427 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1607904/vim-deleting-from-current-position-until-a-space/1607932#1607932 0 Answer by Dan Goldstein for VIM: Deleting from current position until a space Dan Goldstein 2009-10-22T15:13:24Z 2009-10-22T15:13:24Z <p>"dt " is the answer to your question, but "df+" looks like it will solve your problem better.</p> http://stackoverflow.com/questions/1579453/how-to-duplicate-an-imap-mailbox 0 How to duplicate an IMAP mailbox Dan Goldstein 2009-10-16T17:51:18Z 2009-10-16T17:51:18Z <p>I would like to create an email client that can access multiple IMAP mailboxes. I'd also like a copy of all emails for processing. What is the best way to do this using IMAP commands? </p> <p>Right now I have a script that iterates over the folders, FETCHing FLAGS on 1:* to see what's been read and if any previously read messages have been marked as new, then FETCH BODY.PEEK on all of the messages I don't have in my database. Is there a better way?</p> http://stackoverflow.com/questions/1564237/get-email-unread-content-without-affecting-unread-state/1579414#1579414 1 Answer by Dan Goldstein for get email unread content, without affecting unread state Dan Goldstein 2009-10-16T17:42:21Z 2009-10-16T17:42:21Z <p>There is a .PEEK option on the FETCH command in IMAP that will explicitly not set the /Seen flag.</p> <p>Look at <a href="http://tools.ietf.org/html/rfc3501#section-6.4.5" rel="nofollow">the FETCH command in RFC 3501</a> and scroll down a bit to page 57 or search for "BODY.PEEK".</p> http://stackoverflow.com/questions/212943/should-wrong-but-funny-answers-be-posted 6 Should wrong but funny answers be posted? [closed] Dan Goldstein 2008-10-17T16:53:41Z 2009-08-31T19:45:22Z <p>I saw a question and thought of some answers that were completely ridiculous, but funny. I decided not to post them, but wondered if they would be appreciated by the community, or just voted down.</p> http://stackoverflow.com/questions/1105757/how-can-i-create-a-polygon-using-fields-in-postgresql 1 How can I create a polygon using fields in PostgreSQL? Dan Goldstein 2009-07-09T18:39:42Z 2009-07-10T04:45:32Z <p>I have 8 real values in a table that I'd like to combine into a polygon. I haven't been able to figure out how to create a polygon using these values though. I keep trying variations of</p> <pre><code>SELECT polygon(lat1,lon1,lat2,lon2,lat3,lon3,lat4,lon4) FROM table; </code></pre> <p>but keep getting errors about the polygon function not existing or an invalid input syntax for type polygon. Has anyone done this before?</p> http://stackoverflow.com/questions/1045304/structs-vs-classes-in-net-business-layer/1045435#1045435 1 Answer by Dan Goldstein for Structs Vs Classes in .NET Business Layer Dan Goldstein 2009-06-25T18:18:01Z 2009-06-25T18:18:01Z <p>Regardless of whether that strategy is more efficient, it will be more difficult to work with and I would try to avoid it. That being said, I doubt this would be more efficient. If it was, the compiler would probably implement it this way automatically. It's generally safe to rely on the compiler to do language-level optimizations.</p> http://stackoverflow.com/questions/318398/why-does-c-compilation-take-so-long 38 Why does C++ compilation take so long? Dan Goldstein 2008-11-25T18:25:14Z 2009-06-20T15:06:31Z <p>Compiling a C++ file takes a very long time when compared to C#, Java. It takes significantly longer to compile a C++ file than it would to run a normal size Python script. I'm current using VC++ but it's the same with any compiler. Why is this?</p> <p>The two reasons I could think of were loading header files and running the preprocessor, but that doesn't seem like it should explain why it takes so long.</p> http://stackoverflow.com/questions/984384/how-do-i-know-if-an-email-cannot-be-unencrypted-in-outlook 0 How do I know if an email cannot be unencrypted in Outlook? Dan Goldstein 2009-06-11T23:52:22Z 2009-06-11T23:52:22Z <p>When you use the Outlook API to access the Body of an email that's encrypted that you don't have the key for, Outlook throws an exception that says something like "Your Digital ID cannot be found by the underlying security system." Is there a way to determine whether an encrypted message (MessageClass "IPM.Note.SMIME") can be read without catching an exception?</p> http://stackoverflow.com/questions/234906/whats-the-purpose-of-the-nop-opcode 20 What's the purpose of the nop opcode? Dan Goldstein 2008-10-24T19:14:03Z 2009-05-28T13:03:36Z <p>I'm going through MSIL and noticing there are a lot of <a href="http://msdn.microsoft.com/en-us/library/system.reflection.emit.opcodes.nop.aspx" rel="nofollow">nop</a> instructions. The MSDN article says they take no action and are used to fill space if the opcode is patched. They're used a lot more in debug builds than release builds. I know that these kinds of statements are used in assembly languages to make sure an opcode fits on a word boundary, but why is it needed in MSIL?</p> http://stackoverflow.com/questions/919301/addmessagefilter-without-windows-forms 0 AddMessageFilter without Windows Forms? Dan Goldstein 2009-05-28T05:25:31Z 2009-05-28T05:28:21Z <p>I'd like to use the functionality of System.Windows.Forms.Application.AddMessageFilter but my target application does not use Windows Forms. This functionality adds a filter to monitor Windows messages as they are routed. If anyone knows how this works, I wouldn't mind writing my own code to perform the same function.</p> <p>SetWindowLong with GWL_WNDPROC only affects received messages and I'd like to affect sent messages. System.Windows.Forms.Application is static but calling AddMessageFilter with an IMessageFilter that throws an exception does not work.</p> http://stackoverflow.com/questions/884063/how-can-an-add-in-add-a-navigationmodule-in-outlook-2007 0 How can an add-in add a NavigationModule in Outlook 2007? Dan Goldstein 2009-05-19T17:28:05Z 2009-05-20T10:50:34Z <p>How can I a NavigationModule to the Outlook 2007 Navigation Pane? I'd like to do it through the API but other solutions are good too.</p> http://stackoverflow.com/questions/827836/jquery-is-there-a-way-to-make-this-shorter-and-more-elegant/827857#827857 3 Answer by Dan Goldstein for jQuery: Is there a way to make this shorter and more elegant? Dan Goldstein 2009-05-06T03:05:02Z 2009-05-06T03:05:02Z <p>This isn't exactly the same because it doesn't wrap .images outside of #wrapper, but it's close. It creates the in the loop and immediately applies the attribute.</p> <pre><code>$('#wrapper img').each(function(n) { $(this).wrap($('&lt;a&gt;&lt;/a&gt;').attr('name', n)); } </code></pre> http://stackoverflow.com/questions/776867/is-any-new-microsoft-developer-technology-safe-for-use -6 Is any new Microsoft developer technology safe for use? [closed] Dan Goldstein 2009-04-22T12:00:53Z 2009-04-22T12:15:49Z <p>Microsoft has gained a poor track record for developer innovations. Their hits are great but their misses are far greater in number. Almost all of their releases have a lot of hype, and it's grating on a developer to hear so many promises. So the question is, how skeptical should we be of new things that Microsoft releases?</p> <p>Here's a list of everything since .NET 3.0.</p> <pre><code>Technology Success Comments ---------------------------------------------------------------------------------------------------------------------- WPF Low Very complex, difficult to learn, difficult upgrade path ---------------------------------------------------------------------------------------------------------------------- WCF Moderate Somewhat complex, only solves solved problems ---------------------------------------------------------------------------------------------------------------------- WF Low Intresting but doesn't seem to solve many problems ---------------------------------------------------------------------------------------------------------------------- Silverlight Moderate Success as a video player, not as much as a RIA technology ---------------------------------------------------------------------------------------------------------------------- ASP.NET AJAX High UpdatePanel is great, rest makes WebForms more complex ---------------------------------------------------------------------------------------------------------------------- ASP.NET Dynamic Data None Difficult to upgrade apps, doesn't solve problems ---------------------------------------------------------------------------------------------------------------------- ASP.NET MVC Moderate Makes years of WebForms experience irrelevant, no improvement to end user ---------------------------------------------------------------------------------------------------------------------- ADO.NET Data Services Low? Public use is a security risk, doesn't improve on existing solutions ---------------------------------------------------------------------------------------------------------------------- ADO.NET Entity Framework Failure Developers voted No Confidence, killed the more useful LINQ to SQL ---------------------------------------------------------------------------------------------------------------------- SubSonic Moderate Created outside MS, not included in VS2010 ---------------------------------------------------------------------------------------------------------------------- LINQ / C# Improvements Tremendous Extension methods, automatic properties, initializers, ... Undeniable improvements in code expressiveness simple and incremental upgrade path ---------------------------------------------------------------------------------------------------------------------- LINQ to SQL Tremendous Very simple, useful despite forced limitations (SQL Server only), killed by EF ---------------------------------------------------------------------------------------------------------------------- Visual Studio Team System Moderate Big improvement over SourceSafe, expensive ---------------------------------------------------------------------------------------------------------------------- DLR / IronPython / IronRuby Unreleased Not included in VS2010 ---------------------------------------------------------------------------------------------------------------------- </code></pre> <p>What is this list missing? There's a lot of flamebait in here, but I'm just trying to show the track record.</p> http://stackoverflow.com/questions/732819/can-i-change-the-username-on-a-mercurial-changeset 5 Can I change the username on a mercurial changeset? Dan Goldstein 2009-04-09T04:37:58Z 2009-04-16T19:09:56Z <p>I didn't set the username on my development computer and made a few commits. Can I retroactively change the username so it's clear who committed these changesets?</p> http://stackoverflow.com/questions/716557/how-does-firefox-know-that-the-page-is-an-atom-feed 1 How does FireFox know that the page is an Atom feed? Dan Goldstein 2009-04-04T05:23:50Z 2009-04-04T05:55:03Z <p>I'm creating a web site and I'm having trouble getting FireFox to ask me where to add the feed when I open it. I used the tag to add the RSS icon, and it leads to a page that provides a valid Atom feed according to the W3C validator. When the content type is "text/html", I get the content of the xml tags concatenated. When I serve "application/atom+xml", Firefox asks me if I want to save the file to my desktop. Safari recognized the feed and acts appropriately. Is there another header or tag in the feed that tells Firefox to act like it's a feed?</p> http://stackoverflow.com/questions/370399/whats-the-best-way-to-write-a-windows-client-app-other-than-net 3 What's the best way to write a Windows client app other than .NET? Dan Goldstein 2008-12-16T03:35:48Z 2009-03-26T21:49:48Z <p>I'm trying to evaluate whether I should make the .NET Framework a requirement for my new Windows app. I believe .NET is the best and most efficient way to write Windows client apps, so it comes down to how painful the next best alternative is. Specifically, I'm trying to avoid the installation of the .NET Client Profile, which downloads 28MB and if it's like the regular .NET Framework installer, takes forever.</p> <p>I've used wxWidgets and WTL before and think both are good options. Statically linked wxWidgets executables are 30MB, but it will be packaged. WTL has a small footprint but is created with ugly code. I've used a few MSI creators but it not WiX or NSIS, which seem to be best free options.</p> <p>I'm looking for any recommendations, experiences with the Client Profile installer, experiences with small, custom business apps, or any relevant advice.</p> <p>Edit: I'm only making a few thousand bucks here, so I'm looking for something free or cheap (after Visual Studio, which I already own). I don't mind learning in a new language, but I'd prefer one that's growing in use.</p> http://stackoverflow.com/questions/580509/net-java-to-javascript-compiler/615174#615174 1 Answer by Dan Goldstein for .NET, Java to JavaScript compiler Dan Goldstein 2009-03-05T15:07:56Z 2009-03-05T15:07:56Z <p>Check out <a href="http://www.codeplex.com/axial" rel="nofollow">Axial</a>, a .NET to JavaScript converter that works well in ASP.NET. It supports WebForms, jQuery and canvas. It's not very mature, but it's worth a look.</p> http://stackoverflow.com/questions/598769/developing-on-apple-new-platform-question/611332#611332 5 Answer by Dan Goldstein for Developing on Apple (new platform question) Dan Goldstein 2009-03-04T16:25:15Z 2009-03-04T16:25:15Z <p>I also just bought a Mac and come from a .NET development background. I tried a bunch of different languages and environments. If you're going to write OS X desktop software, you're going to need to use Cocoa and Interface Builder. IB doesn't have a Windows counterpart because it's so heavily tied into Cocoa. This means you're going to need to learn Cocoa simultaneously, and it's not easy to do by looking at code.</p> <p>Objective-C is the native language of the Mac and it's not as refined as C#. It takes a while before you can read it fluently because calling functions looks different. Using Python or Ruby instead of Objective-C only adds a layer of complexity until you learn Cocoa, but it seems quite viable after that. C# via Mono works fine, but I don't think the whole Cocoa# bridge is implemented. The C# tools are a lot lower quality than Visual Studio, and MonoDevelop is extremely ugly on the Mac. I decided that if I want to go this route then I need to learn Objective-C, but went a different direction.</p> <p>If you're writing a web site then you have a lot more flexibility. The entire Python and Ruby cultures are available, although there are some hiccups with installing some Python libraries. This is the route I took because I had some basic Python experience and the skills are almost 100% compatible with Linux. iTerm is a better client than Terminal. I didn't like most of the code editors I tried, and started with Smultron which isn't much more than a very competent text editor with syntax highlighting. There are definitely tons of options.</p> <p>No matter how you approach it, you're going to spend a lot of time learning. I have constantly stumbled over Python syntax but I'm finally getting good at it. The SQLAlchemy (Python ORM) docs almost always have an open browser window. I also bit the bullet and started using Vim (MacVim specifically), which is actually a fun thing to learn because there always seems to be another command that does exactly what you want. (For example, I got tired of going to a line, hitting $ to go to the end, hitting a to append, then hit enter to start a new line so I Googled and found out I can just hit o.)</p> http://stackoverflow.com/questions/603852/multicast-in-python/603864#603864 2 Answer by Dan Goldstein for Multicast in Python Dan Goldstein 2009-03-02T20:26:52Z 2009-03-02T20:26:52Z <p>Multicast traffic is no different than regular UDP except for the IP address. Take a look at the standard <a href="http://docs.python.org/library/socket.html" rel="nofollow">socket library</a>. You may be able to find something that builds on socket and is easier to use.</p> http://stackoverflow.com/questions/598299/when-is-it-not-appropriate-to-bundle-dependencies-with-an-application/603843#603843 2 Answer by Dan Goldstein for When is it (not) appropriate to bundle dependencies with an application? Dan Goldstein 2009-03-02T20:20:52Z 2009-03-02T20:20:52Z <p>If you're producing software for an end-user, the goal is to let the customer use your software. Anything that stands in the way is counter-productive. If they have to download dependencies themselves, there's a possibility that they'll decide to avoid your software instead. You can't control whether libraries will be backwards compatible, and you don't want your software to stop working because the user updated their system. Similarly, you don't want a customer to install an old version of your software with old libraries and have the rest of the system break. </p> <p>This means bundling is generally the way to go. If you can ensure that your software will install smoothly without bundling dependencies, and that's less work, then that may be a better option. It's about what satisfies your customers.</p> http://stackoverflow.com/questions/198058/is-necessary-to-show-an-empty-div 7 Is   necessary to show an empty <div>? Dan Goldstein 2008-10-13T15:50:50Z 2009-02-12T05:34:26Z <p>I'd like to show a div that has a background-color with the height and width set to 100% but no content. Is it possible to do that without putting a &amp;nbsp; inside?</p> <p>Edit: Thanks to Mark Biek for pointing out that empty div with width and height styles shows how I'd expect. My div is in a table cell, where it does not show.</p> <pre><code>&lt;table style="width:100%"&gt; &lt;tr&gt; &lt;th&gt;Header&lt;/th&gt; &lt;td&gt;&lt;div id="foo"&gt;&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> http://stackoverflow.com/questions/183461/showing-completion-in-a-progress-bar 1 Showing completion in a progress bar Dan Goldstein 2008-10-08T15:46:40Z 2009-01-04T09:28:38Z <p>In this particular situation, there are 9 automated steps in a process that take varying lengths of time. We currently have a number showing percentage in the center of a progress bar, but it suffers from the common stop-and-go problem of racing up to 33%, waiting a long time, racing up to 55%, waiting an even longer time, then finishing.</p> <p>What's the best way to present this to the user? Should we remove the number, remove the whole progress bar in favor of an ajax-type circle animation, add descriptive text for the nine steps and checking them off or leave it the way it is? What are your thoughts?</p> http://stackoverflow.com/questions/389276/should-i-continue-work-on-my-hobby-project 4 Should I continue work on my hobby project? Dan Goldstein 2008-12-23T16:06:21Z 2008-12-23T17:13:13Z <p>I've been working on the <a href="http://www.codeplex.com/axial" rel="nofollow">Axial</a> project for a while now. It converts MSIL to Javascript with tight integration with ASP.NET. You add a control that looks something like <code>&lt;axial:Script runat="server" MethodName="Foo" /&gt;</code> and the codebehind says <code>public void Foo() { lblTest.Text = "Foo"; }</code> and there would be a javascript function on your page that would say <code>void Foo() { document.getElementById('lblTest').innerHTML = 'Foo'; }</code>. It can do &lt;canvas&gt; and web services and has some other features. The CodePlex site has a list of features and source code.</p> <p>I enjoy working on it but I'm considering stopping because only one person has shown any interest. I think the project is useful, but it's mostly for ASP.NET programmers who know C# and don't want to learn JavaScript. These people are hard to find via the internet, I think because people who go to sites like Stack Overflow are those interested in programming and like learning new languages. So it's difficult to show this project to people who may be interested in it. Or I could be overestimating its utility (or my marketing ability).</p> <p>If anyone has advice about whether to continue working on it, I'd be interested in hearing it.</p> http://stackoverflow.com/questions/387259/is-this-laptop-good-enough-for-visual-studio/387284#387284 1 Answer by Dan Goldstein for Is this laptop good enough for Visual Studio? Dan Goldstein 2008-12-22T20:37:36Z 2008-12-22T20:37:36Z <p>That laptop is probably pushing the lower limit of "good enough". If you're writing a resource intensive app, it probably will be pretty slow when you're debugging. For a web site, you'll probably only slow down when the IDE is doing something intensive.</p> http://stackoverflow.com/questions/380198/how-to-pass-a-function-as-a-parameter-in-c 4 How to pass a function as a parameter in C#? Dan Goldstein 2008-12-19T05:53:53Z 2008-12-19T14:38:13Z <p>Is it possible to pass a function as a parameter in C#? I can do it using the Func or Action classes, but this forces me to declare the entire function signature at once. When I try to use Delegate, I get a compile error saying it can't convert a method group to a Delegate. </p> <p>I'm working on <a href="http://www.codeplex.com/axial" rel="nofollow">Axial</a> and I'm trying to allow users to call web services. What I'm going for is the ability to create the Visual Studio proxy class and then pass in the generated function. The function signature doesn't matter because the generated code only uses the function name. However, I'd like to pass in the function instead of the name for two reasons: the ability to use the proxy's Url property and a compiler error if the web service doesn't exist or is updated in Visual Studio.</p> <pre><code> public void AlertIt(object o) { Axial.DOM.Window.Alert(o.ToString()); } public void CallAddService() { object[] param = new object[] { int.Parse(txtA.Text), int.Parse(txtB.Text) }; Axial.ServerScript.CallWebService(new WSProxy.WS().Add, param, AlertIt, AlertIt); } class Axial.ServerScript { public void CallWebService(Delegate method, object[] param, Action&lt;object&gt; successCallback, Action&lt;object&gt; failureCallback) { // translate to javascript (already working) } } </code></pre> http://stackoverflow.com/questions/380850/pixel-level-2d-graphics-in-silverlight/380966#380966 0 Answer by Dan Goldstein for Pixel level 2D Graphics in Silverlight Dan Goldstein 2008-12-19T13:24:51Z 2008-12-19T13:24:51Z <p>Could you grab an image from a server and process that? You could dynamically generate the image and you'd have access to whatever you needed outside of Silverlight.</p> http://stackoverflow.com/questions/320599/best-html-editor-for-a-non-technical-user/320783#320783 1 Answer by Dan Goldstein for Best html editor for a non technical user. Dan Goldstein 2008-11-26T14:04:18Z 2008-11-26T14:04:18Z <p>If it's an online application, take a look at the <a href="http://developer.yahoo.com/yui/editor/" rel="nofollow">YUI Rich Text Editor</a>. It's pretty and doesn't give you a zillion unlabeled tiny buttons like many other online HTML editors.</p> http://stackoverflow.com/questions/320396/side-effects-in-an-iterator-considered-harmful/320772#320772 0 Answer by Dan Goldstein for Side effects in an iterator considered harmful? Dan Goldstein 2008-11-26T14:01:22Z 2008-11-26T14:01:22Z <p>I would say side effects are a bad idea but not harmful. If you have side effects, you're essentially doing two operations. It is better to separate these operations into two functions so the code is easier to maintain and you could do them separately.</p> <p>In this case, you're moving bad files out of the folder and something else to good files. Separating these operations allows you to move bad files without selecting good ones or lets you operate on good files (such as count them) without moving bad ones. Your code will also be more compartmentalized so it will be easier to optimize one of these operations should you need to.</p> http://stackoverflow.com/questions/306456/how-can-i-get-a-list-of-the-running-applications-with-gtk 0 How can I get a list of the running applications with GTK? Dan Goldstein 2008-11-20T19:02:27Z 2008-11-20T22:13:36Z <p>How can I get a list of the running applications? I'm referring to the ones in the panel at the bottom of the screen.</p> http://stackoverflow.com/questions/306460/how-do-you-take-criticism/306474#306474 1 Answer by Dan Goldstein for How Do You Take Criticism? Dan Goldstein 2008-11-20T19:05:35Z 2008-11-20T19:05:35Z <p>Assume the other person is trying to help you do better next time. It's only criticism if you take it that way.</p> http://stackoverflow.com/questions/1105757/how-can-i-create-a-polygon-using-fields-in-postgresql/1107731#1107731 Comment by Dan Goldstein on How can I create a polygon using fields in PostgreSQL? Dan Goldstein 2009-07-10T14:10:44Z 2009-07-10T14:10:44Z I found the instructions on adding PostGIS to a database and got this to work. http://stackoverflow.com/questions/1105757/how-can-i-create-a-polygon-using-fields-in-postgresql/1107731#1107731 Comment by Dan Goldstein on How can I create a polygon using fields in PostgreSQL? Dan Goldstein 2009-07-10T12:17:07Z 2009-07-10T12:17:07Z That WKT statement looks like what I want, but the database was created by Drupal (a CMS) so the PostGIS template wasn't used when creating it. Can I convert text to polygon some other way? http://stackoverflow.com/questions/24216/resharper-vs-coderush/24292#24292 Comment by Dan Goldstein on Resharper vs. CodeRush Dan Goldstein 2009-06-28T20:55:07Z 2009-06-28T20:55:07Z Is this really the correct answer? It doesn't even answer the question. http://stackoverflow.com/questions/829410/normalization-bcnf Comment by Dan Goldstein on Normalization BCNF Dan Goldstein 2009-05-06T13:07:32Z 2009-05-06T13:07:32Z I don't know the answer but I'd pick #1 on the test because all of the states are on the right side of the arrow once. http://stackoverflow.com/questions/776867/is-any-new-microsoft-developer-technology-safe-for-use Comment by Dan Goldstein on Is any new Microsoft developer technology safe for use? Dan Goldstein 2009-04-22T14:30:11Z 2009-04-22T14:30:11Z MVC is on the list between Dynamic Data and Data Services. http://stackoverflow.com/questions/776867/is-any-new-microsoft-developer-technology-safe-for-use/776879#776879 Comment by Dan Goldstein on Is any new Microsoft developer technology safe for use? Dan Goldstein 2009-04-22T14:29:19Z 2009-04-22T14:29:19Z The preview had the &lt;table&gt; formatting and it was quite readable. http://stackoverflow.com/questions/735473/can-you-refactor-out-a-common-functionality-from-these-two-methods/735497#735497 Comment by Dan Goldstein on Can you refactor out a common functionality from these two methods? Dan Goldstein 2009-04-09T19:59:45Z 2009-04-09T19:59:45Z I agree that you don't need to make this a function. http://stackoverflow.com/questions/10293/has-anyone-used-jaxer-in-production/10341#10341 Comment by Dan Goldstein on Has anyone used Jaxer in production? Dan Goldstein 2009-04-08T17:36:11Z 2009-04-08T17:36:11Z I agree. There's enough about web development on the web that someone would write about it if it were great. http://stackoverflow.com/questions/716557/how-does-firefox-know-that-the-page-is-an-atom-feed/716593#716593 Comment by Dan Goldstein on How does FireFox know that the page is an Atom feed? Dan Goldstein 2009-04-04T12:38:10Z 2009-04-04T12:38:10Z Because my atom feed was in a templating language, the first line of the feed was blank and my XML declaration was on the second line. Thanks. http://stackoverflow.com/questions/716557/how-does-firefox-know-that-the-page-is-an-atom-feed/716585#716585 Comment by Dan Goldstein on How does FireFox know that the page is an Atom feed? Dan Goldstein 2009-04-04T12:37:14Z 2009-04-04T12:37:14Z This didn't fix the problem but it did put FireFox into a strict mode which showed what the problem was. Thanks. http://stackoverflow.com/questions/603857/how-to-increment-in-c Comment by Dan Goldstein on How to increment in C#? Dan Goldstein 2009-03-02T20:27:51Z 2009-03-02T20:27:51Z That's also very hard to read. Consider renaming your classes to something that resembles English. http://stackoverflow.com/questions/475841/comparison-of-net-validation-frameworks Comment by Dan Goldstein on Comparison of .NET Validation Frameworks Dan Goldstein 2009-03-02T20:24:20Z 2009-03-02T20:24:20Z I've avoided validation frameworks because I've found that they have a hard time with custom business logic. The simple stuff is simple and you have to write the complex stuff yourself, so you may as well skip the framework altogether. http://stackoverflow.com/questions/182194/should-new-web-applications-follow-the-mvc-or-mvp-pattern/182310#182310 Comment by Dan Goldstein on Should new web applications follow the MVC or MVP pattern? Dan Goldstein 2009-03-02T20:06:20Z 2009-03-02T20:06:20Z I'm not suggesting that you rewrite anything. The question is about new sites. I meant that using the URL to decide what action to take is intuitive for both the developer and the customer. I like it better than using the querystring like &quot;Student.aspx?mode=edit&quot;. http://stackoverflow.com/questions/316161/how-do-i-change-colors-for-the-f-interactive-shell/316275#316275 Comment by Dan Goldstein on How do I change colors for the F# interactive shell Dan Goldstein 2008-12-24T22:38:16Z 2008-12-24T22:38:16Z This works for me. http://stackoverflow.com/questions/389276/should-i-continue-work-on-my-hobby-project/389469#389469 Comment by Dan Goldstein on Should I continue work on my hobby project? Dan Goldstein 2008-12-23T17:22:08Z 2008-12-23T17:22:08Z Axial is tightly integrated with ASP.NET, so you can use the System.Web.UI.WebControls namespace pretty easily. It's also open source.