User Chris Pietschmann - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T22:44:06Z http://stackoverflow.com/feeds/user/7831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/256365/what-ide-editor-do-you-use-for-ruby-on-windows 4 What IDE / Editor do you use for Ruby on Windows? Chris Pietschmann 2008-11-02T01:24:58Z 2009-12-14T14:08:07Z <p>The SciTE editor comes with the Ruby installer, and it's just a generic code editor. I installed FreeRIDE but it seems a little buggy; it actually just crashed on me for no reason. :(</p> <p>So my question is...</p> <p>What IDE / Editor do you use for Ruby on Windows? What are the best editors out there?</p> http://stackoverflow.com/questions/333079/is-there-a-upnp-library-for-net-c-or-vb-net 3 Is there a UPnP Library for .NET (C# or VB.NET)? Chris Pietschmann 2008-12-02T04:47:22Z 2009-12-13T00:23:45Z <p>I'm working on a P2P application, and I need to get it to communicate through NAT Routers / Firewalls using UPnP. However, it doesn't seem that the .NET Framework includes support for UPnP.</p> <p>Is there a UPnP Library for .NET? C# or VB.NET?</p> <p>UPDATE: I have since found the NATUPnP 1.0 Type Library (NATUPNP.DLL) COM Component that is part of Windows (since Windows XP) that allows you to easily setup/maintain Port Forwarding using UPnP.</p> <p>I wrote an article with code samples here: <a href="http://pietschsoft.com/post.aspx?id=31200e6d-4b61-48b8-a9cb-91e3dd8e97f3" rel="nofollow">.NET Framework: Communicate through NAT Router via UPnP (Universal Plug and Play)</a></p> http://stackoverflow.com/questions/1873780/best-editor-for-remote-pair-programming/1873854#1873854 8 Answer by Chris Pietschmann for Best editor for remote pair programming? Chris Pietschmann 2009-12-09T13:21:23Z 2009-12-09T13:21:23Z <p>You could use a <a href="http://en.wikipedia.org/wiki/Virtual%5FNetwork%5FComputing" rel="nofollow">VNC</a> client to allow both people to control the keyboard and mouse on one machine.</p> http://stackoverflow.com/questions/176580/what-was-your-first-programming-language 1 What was your first programming language? Chris Pietschmann 2008-10-06T23:09:22Z 2009-12-05T02:53:06Z <p>When you first started to write program, what was the first programming language you learned?</p> <p>Please don't post repeats. If someone already posted it, just vote for it.</p> http://stackoverflow.com/questions/1314523/spatial-data-types-support-in-linq2sql-or-ef4/1797509#1797509 4 Answer by Chris Pietschmann for Spatial data types support in Linq2Sql or EF4 Chris Pietschmann 2009-11-25T15:01:36Z 2009-11-25T15:01:36Z <p>Here's a workaround to get it working in Entity Framework / LINQ to Entities:</p> <p>You can use a database View to return Well-Known-Text (using "geometry.ToString()" in the query) or Binary. Then once the resulting rows are returned, just convert the string/binary to a SqlGeometry object in .NET.</p> <p>Here's a sample query used to build a View that converts a "Location" field of geometry type to a Well-Known-Text String:</p> <pre><code>SELECT ID, Name, Location.ToString() as Location FROM MyTable </code></pre> <p>Here's an example of querying the resulting entities that have a "Location" field that contains a Well-Known-Text or String representation of the "geography" object:</p> <pre><code>var e = new MyApp.Data.MyDataEntities(connectionString); var items = from i in e.MyTables select i; foreach (var i in items) { // "Location" is the geography field var l = SqlGeography.Parse(i.Location); var lat = l.Lat; var lng = l.Long; } </code></pre> <p>One additional thing, is you'll need to do any spatial based queries within Stored Procedures, since you don't want to pull ALL the data from the table into .NET in order to perform your own spatial query using LINQ.</p> <p>This isn't an elegent as natively supporting SQL Spatial Types, but it'll get you running with Entity Framework and SQL Spatial simultaneously.</p> http://stackoverflow.com/questions/1789646/c-auto-property-is-this-pattern-best-practice/1789666#1789666 20 Answer by Chris Pietschmann for C# Auto Property - Is this 'pattern' best practice? Chris Pietschmann 2009-11-24T12:09:05Z 2009-11-24T12:45:12Z <p>This is a technique that I use a lot myself. This can also help save memory resources since it doesn't instantiate the List&lt;> object unless the objects property is actually being used within the consuming code. This uses a "Lazy Loading" technique.</p> <p>Also, the "Lazy Loading" technique that you listed isn't Thread Safe. If there happens to be multiple calls simultaneously to the property you could end up having multiple calls setting the property to a new List&lt;> object, consequentially overwriting any existing List values with a new, empty List&lt;> object. To make the Get accessor Thread Safe you need to use the <a href="http://msdn.microsoft.com/en-us/library/c5kehkcz%28VS.71%29.aspx" rel="nofollow">Lock statement</a>, like so:</p> <pre><code>private IList&lt;BCSFilter&gt; _BCSFilters; // Create out "key" to use for locking private object _BCSFiltersLOCK = new Object(); /// &lt;summary&gt; /// Gets or sets the BCS filters. /// &lt;/summary&gt; /// &lt;value&gt;The BCS filters.&lt;/value&gt; public IList&lt;BCSFilter&gt; BCSFilters { get { if (_BCSFilters == null) { // Lock the object before modifying it, so other // simultaneous calls don't step on each other lock(_BCSFiltersLOCK) { if (_BCSFilters == null) } _BCSFilters = new List&lt;BCSFilter&gt;(); } } } return _BCSFilters; } set { _BCSFilters = value; } } </code></pre> <p>However, if you'll always need the List&lt;> object instantiated it's a little simpler to just create it within the object constructor and use the automatic property instead. Like the following:</p> <pre><code>public class MyObject { public MyObject() { BCSFilters = new List&lt;BCSFilter&gt;(); } public IList&lt;BCSFilter&gt; BCSFilters { get; set; } } </code></pre> <p>Additionally, if you leave the "set" accessor public then the consuming code will be able to set the property to Null which can break other consuming code. So, a good technique to keep the consuming code from being able to set the property value to Null is to set the set accessor to be private. Like this:</p> <pre><code>public IList&lt;BCSFilter&gt; BCSFilters { get; private set; } </code></pre> <p>A related technique is to return an IEnumerable&lt;> object from the property instead. This will allow you to replace the List&lt;> type internally within the object at any time and the consuming code will not be affected. To return IEnumerable&lt;> you can just return the plain List&lt;> object directly since it implements the IEnumerable&lt;> interface. Like the following:</p> <pre><code>public class MyObject { public MyObject() { BCSFilters = new List&lt;BCSFilter&gt;(); } public IEnumerable&lt;BCSFilter&gt; BCSFilters { get; set; } } </code></pre> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails 13 Should I start with Ruby or Ruby On Rails? Chris Pietschmann 2008-09-24T21:07:40Z 2009-11-17T03:12:35Z <p>I've been wanting to learn Ruby for a long time since there seems to be alot of buzz about it the last couple years. From what I've seen/read there have been a few Ruby'esk things that have been brought over the .NET too.</p> <p>Should I start with learning the Ruby language and just focus on writing simple command-line apps first? Or, should I start with Ruby On Rails to do Web Development first since that is what I really want to learn Ruby for?</p> <p>Also, would you recommend any books on the topic?</p> http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat 4 How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer? Chris Pietschmann 2008-10-30T22:39:03Z 2009-11-10T23:09:40Z <p>Sometimes it's difficult to describe some of the things that "us programmers" may think are simple to non-programmers and management types.</p> <p>So...</p> <p>How would you describe the difference between Managed Code (or Java Byte Code) and Unmanaged/Native Code to a Non-Programmer?</p> http://stackoverflow.com/questions/118203/how-to-open-in-new-window-using-webbrowser-control 2 How to "Open in New Window" using WebBrowser control? Chris Pietschmann 2008-09-22T23:23:39Z 2009-11-10T17:37:48Z <p>When you use the WebBrowser control in .NET you can "embed" an instance of IE in your application, essentially making your own IE-based Web Browser.</p> <p>Does anyone know how to make any new windows created (like when the user selects "Open in New Window" from the context menu) open up in another Window of Your Web Browser Application, instead of the computers default browser??</p> http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware -3 Why do most programmers know nothing about hardware? [closed] Chris Pietschmann 2009-11-01T12:37:54Z 2009-11-03T11:48:36Z <p>Ok, maybe I'm exaggerating a little in the question, but it's mostly true. I must say that most of the programmers / developers / coders I have worked with in the past didn't really know much about computer hardware. I even worked with a few that could barely plug in the keyboard and mouse.</p> <p>To me it's extremely important to know how to put a computer together (Mobo, CPU, Ram, Power Supply, Case, Hard Drives, etc.) and be able to troubleshoot possible hardware and driver problems when software isn't functioning as expected.</p> <p>Sometimes I really wonder what some of these people learned in College, especially since I do NOT have a College degree and am mostly self taught.</p> <p>One could say, "You're a programmer, why waste time learning about hardware when you can learn a new library or framework to get your job done better?" I believe that being able to make sure my development machine is functioning at it highest, at all times, is key to my productivity.</p> <p>Based on what I stated above, you may be thinking that I'm a hardcore Linux guy and and when I mention drivers I'm referring to writing my own or debuging the kernel. Well, in fact I'm not a Linux guy at all, I'm a Windows / .NET developer, so I'm not referring to driver writing at all.</p> <p>Also, I must mention that I rarely have issues with my own machines, but when a friend or family member calls me about an issue, I can fix it.</p> <p>Update: I know I didn't mention anything about knowing how the hardware works from an electronics perspective, but that's really an advanced topic that requires you to go to school for Engineering instead of Computer Science or Programming. I have read some over the years about electronics, and want to learn much more, but I figure this is an area that's too far out there to expect the average programmer to know about; where the basics should at least be taught/learned.</p> http://stackoverflow.com/questions/1649066/activator-createinstancet-vs-new/1649108#1649108 0 Answer by Chris Pietschmann for Activator.CreateInstance<T> Vs new Chris Pietschmann 2009-10-30T10:47:31Z 2009-10-30T10:47:31Z <p>This overload of the "<a href="http://msdn.microsoft.com/en-us/library/0hcyx2kd.aspx" rel="nofollow">Activator.CreateInstance</a>" method is used by compilers to implement the instantiation of types specified by type parameters using generics.</p> <p>Say you have the following method:</p> <pre><code>public static T Factory&lt;T&gt;() where T: new() { return new T(); } </code></pre> <p>The compiler will convert the "return new T();" to call "CreateInstance".</p> <p>In general, there is no use for the CreateInstance in application code, because the type must be known at compile time. If the type is known at compile time, normal instantiation syntax can be used (new operator in C#, New in Visual Basic, gcnew in C++).</p> <p>More Info: <a href="http://msdn.microsoft.com/en-us/library/0hcyx2kd.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0hcyx2kd.aspx</a></p> http://stackoverflow.com/questions/1645192/what-to-replace-frontpage-with/1645249#1645249 6 Answer by Chris Pietschmann for What to replace FrontPage with? Chris Pietschmann 2009-10-29T17:15:02Z 2009-10-29T17:15:02Z <p>I think the natural upgrade path would be <a href="http://www.microsoft.com/Expression/products/Web%5FOverview.aspx" rel="nofollow">Microsoft Expression Web</a>.</p> http://stackoverflow.com/questions/1638562/use-lambda-expression-within-asp-net-mvc-view-using-vb-net 3 Use Lambda Expression within ASP.NET MVC View using VB.NET Chris Pietschmann 2009-10-28T16:51:23Z 2009-10-28T18:06:49Z <p>With ASP.NET MVC 1.0, .NET 3.5 and C# you can easily pass a method a lambda expression that will do a "Response.Write" some content when it's executed within the method:</p> <pre><code>&lt;% Html.SomeExtensionMethod( () =&gt; { &lt;% &lt;p&gt;Some page content&lt;p&gt; %&gt; } ) %&gt; </code></pre> <p>The method signature is similar to this:</p> <pre><code>public void SomeExtensionMethod(this HtmlHelper helper, Action pageContent) { pageContent(); } </code></pre> <p>Does anyone know how to peforma a similar call using Lambda expressions in VB.NET using the same method signature shown above?</p> <p>I've tried the following in VB.NET, but it wont work:</p> <pre><code>&lt;% Html.SomeExtensionMethod(New Action( _ Function() %&gt; &lt;p&gt;Some Content&lt;/p&gt; &lt;% _ )) %&gt; </code></pre> <p>I get an exception saying "Expression Expected."</p> <p>Can anyone help me with what I'm doing wrong? How do you do this in VB.NET?</p> http://stackoverflow.com/questions/1624667/is-jint-javascript-interpreter-for-net-reliable/1624888#1624888 0 Answer by Chris Pietschmann for Is "Jint - Javascript Interpreter for .NET" reliable? Chris Pietschmann 2009-10-26T13:46:36Z 2009-10-26T13:46:36Z <p>I was not aware of this project. I looks interesting. However, I'm not sure how many people have actually done much using it since its only a month old and has only had a grand total of 537 downloads since it was first released. Also, the 0.8.4 release, just came out today, and has only been downloaded a total of 11 times.</p> <p>You'll probably have much better luck asking this question on the Jint projects discussion forums:</p> <p><a href="http://jint.codeplex.com/Thread/List.aspx" rel="nofollow">http://jint.codeplex.com/Thread/List.aspx</a></p> http://stackoverflow.com/questions/1358431/virtual-earth-shape-rendering-performance/1622765#1622765 0 Answer by Chris Pietschmann for Virtual Earth Shape Rendering Performance Chris Pietschmann 2009-10-26T01:50:33Z 2009-10-26T01:50:33Z <p>The solution you're probably looking for is to actually use "Map Cruncher" to create map tile images from your image. Then these map tile images can be overlaid on the VEMap using a Custom Tile Layer, and will be rendered exactly the same way as the Map Images themselves.</p> <p><a href="http://www.microsoft.com/maps/product/mapcruncher.aspx" rel="nofollow">http://www.microsoft.com/maps/product/mapcruncher.aspx</a></p> http://stackoverflow.com/questions/1476248/does-a-silverlight-3-out-of-browser-oob-application-support-bing-maps-or-virtua/1622757#1622757 0 Answer by Chris Pietschmann for Does a Silverlight 3 out of browser (OOB) application support Bing Maps or Virtual Earth Maps? Chris Pietschmann 2009-10-26T01:46:56Z 2009-10-26T01:46:56Z <p>Microsoft has the Bing Maps Silverlight Control that allows you to implement Bing Maps within a Silverlight application. And, yes you can use this control in a Silverlight 3 "out of browser" application.</p> <p>Here's a "Getting Started" tutorial on using the control:</p> <p><a href="http://pietschsoft.com/post/2009/03/Getting-Started-Virtual-Earth-Silverlight-Map-Control-SDK-CTP.aspx" rel="nofollow">http://pietschsoft.com/post/2009/03/Getting-Started-Virtual-Earth-Silverlight-Map-Control-SDK-CTP.aspx</a></p> <p>One thing to note is that the current release of the Bing Maps Silverlight Control (at the time of posting this) is a CTP (Community Tech Preview) and can not be used in a production application. Microsoft is moving forward with Silverlight and Bing Maps, so I suspect that there will be a "Final" release sometime in the future; however, Microsoft has yet to announce when it will be available.</p> http://stackoverflow.com/questions/252751/where-are-some-good-tutorials-on-writing-a-custom-linq-provider 4 Where are some good tutorials on writing a custom LINQ Provider? Chris Pietschmann 2008-10-31T06:48:52Z 2009-10-22T11:35:59Z <p>I would like to build a custom LINQ Provider. Mostly for learning purposes, but it may be usefull in the future. I've heard it's not a simple thing to do, but...</p> <p>Where are some good tutorials on writing a custom LINQ Provider?</p> http://stackoverflow.com/questions/1602097/what-does-the-operator-do/1602128#1602128 1 Answer by Chris Pietschmann for What does the => operator do? Chris Pietschmann 2009-10-21T16:52:07Z 2009-10-21T16:52:07Z <p>All lambda expressions use the lambda operator =>, which is read as "goes to". The left side of the lambda operator specifies the input parameters (if any) and the right side holds the expression or statement block. The lambda expression x => x * x is read "x goes to x times x." This expression can be assigned to a delegate type as follows:</p> <pre><code>delegate int del(int i); static void Main(string[] args) { del myDelegate = x =&gt; x * x; int j = myDelegate(5); //j = 25 } </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb397687.aspx</a></p> <pre><code>Func&lt;int, bool&gt; myFunc = x =&gt; x == 5; bool result = myFunc(4); // returns false of course </code></pre> http://stackoverflow.com/questions/984576/when-is-visual-studio-2010-expected-to-rtm 5 When is Visual Studio 2010 expected to RTM? Chris Pietschmann 2009-06-12T01:11:16Z 2009-10-20T12:19:51Z <p>I know the version / product name says "2010", but that doesn't necessarily mean that it will RTM in 2010. After all VS'2008 RTM'd in November 2007.</p> <p>The last Beta of VS'2008 came out in July 2007, and it RTM'd in November. So based on the previous version that places VS'2010 to RTM in September 2010 at the very earliest since the first Beta just came out in May.</p> <p>Anyone have any other speculations?</p> http://stackoverflow.com/questions/424239/can-a-single-developer-still-make-money-with-shareware/1593913#1593913 0 Answer by Chris Pietschmann for Can a single developer still make money with shareware? Chris Pietschmann 2009-10-20T11:20:31Z 2009-10-20T11:20:31Z <p>One thing that I've found that works for developer tools or desktop software is to offer a "Free Edition" and a "Full" Paid Version. People don't like to use "Trial" versions that expire at a certain time or number of uses. The "Free Edition" could show a "nag" screen when run or have feature limitation, then when they purchase the "Full" Paid Version it will unlock all features and remove any "nag" screen. Usually you want to stay clear of "nag" screens, but they still can be useful with desktop apps.</p> <p>Also, you may find it more profitable to build some type of web service that you charge a monthly subscription fee and/or have a "Free" subscription object that is banner ad supported.</p> <p>In the end, it really depends on the idea. If you have a great idea, or just plain implement it easy, simpler, cleaner than the competition you could make a lot of money. However, until you build it and launch it, you'll never know.</p> <p>Plus, it's very hard to figure out what percentage of downloads of a completely Free product will convert to paid users once you start charging. Don't be surprised if 1 out of that 150 downloads per month actually purchase the paid version.</p> http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript 10 Can you do Desktop Development using JavaScript? Chris Pietschmann 2008-09-20T21:08:18Z 2009-10-18T05:56:06Z <p>I know there's JScript.NET, but it isn't the same as the JavaScript we know from the web.</p> <p>Does anyone know if there are any JavaScript based platforms/compilers for desktop development? Most specifically Windows desktop development.</p> http://stackoverflow.com/questions/1570127/render-partial-view-using-jquery-in-asp-net-mvc/1570134#1570134 1 Answer by Chris Pietschmann for Render Partial View Using jQuery in ASP.NET MVC Chris Pietschmann 2009-10-15T03:25:40Z 2009-10-15T03:25:40Z <p>You'll need to create an Action on your Controller that returns the rendered result of the "UserDetails" partial view or control. Then just use an Http Get or Post from jQuery to call the Action to get the rendered html to be displayed.</p> http://stackoverflow.com/questions/106912/how-to-draw-custom-button-in-window-titlebar-with-windows-forms 1 How to draw custom button in Window Titlebar with Windows Forms? Chris Pietschmann 2008-09-20T03:12:42Z 2009-10-14T10:03:41Z <p>How do you draw a custom button next to the minimize, maximize and close buttons within the Titlebar of the Form?</p> <p>I know you need to use Win32 API calls and override the WndProc procedure, but I haven't been able to figure out a solution that works right.</p> <p>Does anyone know how to do this? More specifically, does anyone know a way to do this that works in Vista?</p> http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get 7 How do you RedirectToAction using POST instead of GET? Chris Pietschmann 2008-09-24T19:30:30Z 2009-10-01T17:03:07Z <p>When you call RedirectToAction within a Controller, it automatically redirects using an HTTP GET. How do I explicitly tell it to use an HTTP POST?</p> <p>I have an Action that accepts both GET and POST requests, and I want to be able to RedirectToAction using a POST and send it some values.</p> <p>Like this:</p> <p>this.RedirectToAction("actionname", new RouteValueDictionary(new { someValue = 2, anotherValue = "text" }));</p> <p>I want the someValue and anotherValue values to be sent using an HTTP POST instead of a GET. Does anyone know how to do this?</p> http://stackoverflow.com/questions/1291370/are-there-any-good-xmlmembershipprovider-and-xmlroleprovider-implementations-out/1298143#1298143 1 Answer by Chris Pietschmann for Are there any good XmlMembershipProvider and XmlRoleProvider implementations out there that can be used for Commercial purposes? Chris Pietschmann 2009-08-19T06:40:09Z 2009-08-19T06:40:09Z <p>Here's a real simple implementation of one:</p> <p><a href="http://madskristensen.net/post/XML-membership-provider-for-ASPNET-20.aspx" rel="nofollow">http://madskristensen.net/post/XML-membership-provider-for-ASPNET-20.aspx</a></p> http://stackoverflow.com/questions/1291212/why-is-microsoft-source-code-so-complex/1291235#1291235 13 Answer by Chris Pietschmann for Why is Microsoft source code so complex? Chris Pietschmann 2009-08-18T00:37:15Z 2009-08-18T00:37:15Z <p>The "complexity" of the source code of the .NET Framework libraries is a necessary evil. Also, the developers at Microsoft seem to have the resources (other .NET Framework developers) to be able to utilize many more features of .NET and the Framework that you (the average developer) and I may not be aware of. Plus there's plenty of compatibility things in there so use cases and features for many, many scenarios are includes; not just the most commonly used ones.</p> <p>Also, it may be "complex" to you, but "simple" to the person that wrote it. All you can do is what the rest of us do... Learn how to do stuff by looking at the code.</p> <p>Additionally, the source code viewed through .NET Reflector isn't as they wrote it, its a decompilation of the compiled code. And, the compiler will perform it's own "optimizations" at times. If you are viewing the source code that Microsoft distributes themselves, then you're looking at the real thing.</p> http://stackoverflow.com/questions/872868/how-to-test-subdomains-on-a-development-machine-abc-localhost/1291124#1291124 0 Answer by Chris Pietschmann for How to test subdomains on a development machine? abc.localhost Chris Pietschmann 2009-08-18T00:04:05Z 2009-08-18T00:04:05Z <p>You can get the requested domain with Subdomain intact by using "<em>Request.Headers["HOST"]</em>". Here's a simple method that returns the Subdomain of the current request. This method also assumes that you have a ".COM", ".NET", etc. after the domain just like the real web. So you'll want to change your HOSTS file to include "localhost.com", "abc.localhost.com", etc.</p> <pre><code>public string subdomain() { string host = Request.Headers["HOST"]; if (!string.IsNullOrEmpty(host)) { var parts = host.Split('.'); if (parts.Length &gt; 2) { return parts[0]; } } return string.Empty; } </code></pre> <p>I was searching on this very thing and here's an article that is what actually helped me figure this out: <a href="http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx" rel="nofollow">http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx</a></p> http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had/1283689#1283689 2 Answer by Chris Pietschmann for What's the funniest user request you've ever had? Chris Pietschmann 2009-08-16T07:32:29Z 2009-08-16T07:32:29Z <p>"I just deleted a client data record. Can you restore it from the Recycle Bin?"</p> <p>Some people don't understand that when a record is deleted, it's deleted. That's kinda what "deleted" means, especially when they didn't ask for us to build an "un-delete" feature.</p> http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had/1283684#1283684 0 Answer by Chris Pietschmann for What's the funniest user request you've ever had? Chris Pietschmann 2009-08-16T07:29:07Z 2009-08-16T07:29:07Z <p>Client: "Are you sure you pushed the last copy edit live?"</p> <p>Programmer: "Yes it is live and I tested it."</p> <p>Client: "I just looked and it still shows the old copy text."</p> <p>Programmer: "Did you try clearing your browser cache?"</p> <p>Client: "What's that? How do I do that? Can't you just have the site do that for me?"</p> http://stackoverflow.com/questions/1283676/green-visual-studio/1283679#1283679 0 Answer by Chris Pietschmann for Green Visual Studio ? Chris Pietschmann 2009-08-16T07:24:14Z 2009-08-16T07:24:14Z <p>I don't think so if it doesn't just automatically do it.</p> http://stackoverflow.com/questions/1873780/best-editor-for-remote-pair-programming/1873854#1873854 Comment by Chris Pietschmann on Best editor for remote pair programming? Chris Pietschmann 2009-12-09T23:10:55Z 2009-12-09T23:10:55Z dilbert789, he is asking about &quot;remote pair programming&quot;, so it is definitely NOT possible to &quot;pull up a chair&quot;. Also, I'm not sure what use it is to be looking at separate parts of the code when doing pair programming. Isn't it the point of Pair Programming to both be working on the same thing at the same time cooperatively? http://stackoverflow.com/questions/1873780/best-editor-for-remote-pair-programming Comment by Chris Pietschmann on Best editor for remote pair programming? Chris Pietschmann 2009-12-09T13:22:36Z 2009-12-09T13:22:36Z Code review on &quot;paper&quot;?? Why?!! Just open up the code on your PC. Paperless FTW! http://stackoverflow.com/questions/1873718/can-jquery-and-javascript-co-exist-in-a-file Comment by Chris Pietschmann on can jquery and javascript co-exist in a file? Chris Pietschmann 2009-12-09T13:15:24Z 2009-12-09T13:15:24Z um.... jQuery is just a library of JavaScript functions... http://stackoverflow.com/questions/1873453/how-many-developers-are-working-on-asp-net-mvc-project-at-microsoft Comment by Chris Pietschmann on How many developers are working on ASP.NET MVC project at Microsoft? Chris Pietschmann 2009-12-09T13:13:32Z 2009-12-09T13:13:32Z This is something that would definitely be interesting. However, it may be work separating the numbers out in these three categories: ASP.NET, Webforms and MVC. After all, there's plenty of core ASP.NET stuff that is used by both Webforms and MVC. http://stackoverflow.com/questions/1600961/error-running-asp-net-mvc-2-project-out-of-the-box-in-vs-2010 Comment by Chris Pietschmann on error running asp.net mvc 2 project out of the box in vs 2010 Chris Pietschmann 2009-11-25T04:01:10Z 2009-11-25T04:01:10Z Is this just a &quot;default&quot; project you created with VS and just hit F5? Or did you modify anything first. Also, what is the URL that you are trying to access when getting this 404 error? http://stackoverflow.com/questions/1789646/c-auto-property-is-this-pattern-best-practice/1789666#1789666 Comment by Chris Pietschmann on C# Auto Property - Is this 'pattern' best practice? Chris Pietschmann 2009-11-24T12:46:15Z 2009-11-24T12:46:15Z peterchen, Thanks for the suggestion. http://stackoverflow.com/questions/1789646/c-auto-property-is-this-pattern-best-practice/1789688#1789688 Comment by Chris Pietschmann on C# Auto Property - Is this 'pattern' best practice? Chris Pietschmann 2009-11-24T12:19:30Z 2009-11-24T12:19:30Z Throwing an exception wouldn't meet the conditions that the get accessor is putting in place. This code allows the value to be null, and the next time the property is accessed it'll be re-instantiated as a new List&lt;&gt; object again. Plus, setting it to a new List&lt;&gt; object if the value within the set accessor is null it just repeating the same logic that's being used within the get accessor. http://stackoverflow.com/questions/1768132/adding-a-script-reference-to-the-html-head-tag-from-a-partial-view Comment by Chris Pietschmann on Adding a script reference to the html head tag from a partial view Chris Pietschmann 2009-11-20T15:22:46Z 2009-11-20T15:22:46Z You can just incude the &lt;script&gt; tag in the page. It doesn't have to be placed within the &lt;head&gt; tags. http://stackoverflow.com/questions/1768132/adding-a-script-reference-to-the-html-head-tag-from-a-partial-view/1768331#1768331 Comment by Chris Pietschmann on Adding a script reference to the html head tag from a partial view Chris Pietschmann 2009-11-20T15:22:07Z 2009-11-20T15:22:07Z This applies to ASP.NET WebForms, but not MVC. http://stackoverflow.com/questions/58640/great-programming-quotes/828257#828257 Comment by Chris Pietschmann on Great programming quotes Chris Pietschmann 2009-11-14T15:04:30Z 2009-11-14T15:04:30Z Or how about &quot;is like reusing a syringe&quot; http://stackoverflow.com/questions/58640/great-programming-quotes/597801#597801 Comment by Chris Pietschmann on Great programming quotes Chris Pietschmann 2009-11-14T15:03:23Z 2009-11-14T15:03:23Z This reminds me of VB6. You could specify your min and max index. Also, you better check the min and max index when performing iterations. http://stackoverflow.com/questions/58640/great-programming-quotes/789071#789071 Comment by Chris Pietschmann on Great programming quotes Chris Pietschmann 2009-11-14T14:55:08Z 2009-11-14T14:55:08Z That's so true! http://stackoverflow.com/questions/1695927/static-files-js-css-triggering-asp-net-pipeline/1695953#1695953 Comment by Chris Pietschmann on Static files (.js, .css) triggering ASP.NET pipeline. Chris Pietschmann 2009-11-08T11:33:11Z 2009-11-08T11:33:11Z To add clarification: The VS Dev Server uses the ASP.NET Hosting API's to create the Web Server; so naturally all requests are handled by ASP.NET. IIS on the other hand doesn't require ASP.NET to function, and knows how to serve up files without using the ASP.NET Hosting API's. http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware/1657090#1657090 Comment by Chris Pietschmann on Why do most programmers know nothing about hardware? Chris Pietschmann 2009-11-01T12:50:04Z 2009-11-01T12:50:04Z You mentioned &quot;Younger Developers&quot;. At 28 I consider myself to be a &quot;Younger Developers&quot;, but I suppose the abstractions of .NET/Java are still fairly new, and the curriculum in schools are changing to target them more. http://stackoverflow.com/questions/227132/using-aspx-rendering-engine-to-generate-non-html/227203#227203 Comment by Chris Pietschmann on Using aspx Rendering Engine to Generate Non-HTML Chris Pietschmann 2009-11-01T12:41:31Z 2009-11-01T12:41:31Z T4 is part of Visual Studio, so you can't distribute it with your app to use at Runtime.