User John Rudy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T08:48:42Zhttp://stackoverflow.com/feeds/user/14048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1840154/rpg-dialogue-engine-structure/1840223#18402231Answer by John Rudy for RPG dialogue engine / structureJohn Rudy2009-12-03T14:31:54Z2009-12-03T15:48:36Z<p>I'd venture to say that most modern games (be they RPGs, action games, anything above basic card/board games) generally consist of several components: The display engine, the core data structures, and typically a secondary scripting engine. One example which was popular for a time (and may still be; I haven't even spoken to a game developer in years) was LUA.</p>
<p>The decision-making you're talking about (events, conversation branches, etc) is typically handled by the secondary scripting engine, as the scripting languages are more flexible and typically easier to use for the game's designers. Again, most of the real story-driven or game-driving logic will actually happen here, where it can be swapped out and changed relatively easily. (At least, compared to running a full build of all the code!)</p>
<p>The primary game engine combines the data structures related to the world (geometry, etc), the data structures related to the player(s) and other actor(s) needed, and the scripts to drive the encounters, and uses all of that to display the final, integrated environment.</p>
http://stackoverflow.com/questions/1799094/file-upload-in-asp-net-how-can-i-prevent-exceptions/1799638#17996380Answer by John Rudy for File upload in ASP.NET - How can I prevent exceptions?John Rudy2009-11-25T20:07:55Z2009-11-25T20:07:55Z<p>At the end of the day, due to potential race conditions on your web site (due to, hopefully, concurrent users), you can't get around <code>try</code>/<code>catch</code>. (Why are you averse to it?)</p>
<p><a href="http://stackoverflow.com/questions/1799094/file-upload-in-asp-net-how-can-i-prevent-exceptions/1799168#1799168">Utkarsh</a> and <a href="http://stackoverflow.com/questions/1799094/file-upload-in-asp-net-how-can-i-prevent-exceptions/1799142#1799142">No Refunds No Returns</a> have the basic answer right -- save it with a temporary file name, then replace/overwrite the existing one if needed. A good approach for this is to use a GUID as the temporary file name, to ensure that there are no collisions on the filename alone.</p>
<p>Depending on the nature of your application, you could get quite a few files stacked up, uploaded by different users, with lots of potential name conflicts. Depending on the nature and scale of your app, as well as its security boundaries, you might consider giving each user his/her own directory, based on user ID (how you'd identify the user in the database). Each user uploads his/her files there. If there's a name collision, you can bounce back to the user (holding the GUID name in session if needed) and ask if he/she wants to overwrite, and know with confidence that the answer is safe.</p>
<ul>
<li>If the user declines to overwrite, you can delete your temp file.</li>
<li>If the user agrees to overwrite, you can delete the original and write the new one.</li>
<li>In either event, all of this is localized to the user's own directory, and thus (unless multiple users are signed on with the same ID) the behavior is safe.</li>
</ul>
<p>In general, this will be more robust and safe than arbitrarily overwriting file name collisions.</p>
<p>Again, due to race conditions and other situations beyond your control, you need to use a <code>try</code>/<code>catch</code> block <em>any time you attempt to write to the file system.</em> Why? What if the drive is out of space? What if the file you are attempting to overwrite is legitimately in use by another process? What if the file you are attempting to overwrite has NTFS permissions forbidding the web process from touching it? So on and so forth. You need to be prepared to handle these kinds of exceptions.</p>
http://stackoverflow.com/questions/1793226/how-can-i-play-continuous-music-in-the-background-when-my-iphone-app-is-running/1793343#17933432Answer by John Rudy for How can I play continuous music in the background when my iPhone app is running?John Rudy2009-11-24T22:23:08Z2009-11-24T22:23:08Z<p>I haven't had an opportunity to test this yet, but have you tried setting the <code>numberOfLoops</code> property to a negative value? The <a href="http://developer.apple.com/iPhone/library/documentation/AVFoundation/Reference/AVAudioPlayerClassReference/Reference/Reference.html#//apple%5Fref/occ/instp/AVAudioPlayer/numberOfLoops" rel="nofollow">AVAudioPlayer API docs</a> indicate that this is the correct way to get the sound to loop indefinitely.</p>
http://stackoverflow.com/questions/1771968/how-can-i-query-ntfs-disk-quotas-in-c1How can I query NTFS disk quotas in C#?John Rudy2009-11-20T17:15:08Z2009-11-20T17:27:14Z
<p>I need to be able to find, for all users on a given remote machine, those users' disk quotas and actual disk usage. I need to be able to do this reporting in a C# application. (Well, technically a DLL plugin for an app I've already built; but that's irrelevant here.)</p>
<ul>
<li>The remote machine is not on the same network, however, the application executing the app is able to supply the credentials.</li>
<li>WMI is perfectly acceptable; I just cannot find (after looking for over 3 hours now) the exact incantation needed. (I'm also not a WMI pro; if you post a WMI solution, please frame it in the requisite C#/.NET <code>System.Management.*</code> objects.)</li>
</ul>
http://stackoverflow.com/questions/18533/c-what-else-do-you-use-besides-dataset/103414#1034142Answer by John Rudy for C#: What Else Do You Use Besides DataSetJohn Rudy2008-09-19T16:22:43Z2009-11-19T20:03:13Z<p>I'm a huge fan of <a href="http://subsonicproject.com/" rel="nofollow">SubSonic</a>. A well-written batch/CMD file can generate an entire object model for your database in minutes; you can compile it into its own DLL and use it as needed. Wonderful model, wonderful tool. The site makes it sound like an ASP.NET deal, but generally speaking it works wonderfully just about anywhere if you're not trying to use its UI framework (which I'm moderately disappointed in) or its application-level auto-generation tools.</p>
<p>For the record, here is a version of the command I use to work with it (so that you don't have to fight it too hard initially):</p>
<pre><code>sonic.exe generate /server [servername] /db [dbname] /out [outputPathForCSfiles] /generatedNamespace [myNamespace] /useSPs true /removeUnderscores true
</code></pre>
<p>That does it every time ... Then build the DLL off that directory -- this is part of an NAnt project, fired off by CruiseControl.NET -- and away we go. I'm using that in WinForms, ASP.NET, even some command-line utils. This generates the fewest dependencies and the greatest "portability" (between related projects, EG).</p>
<p><strong>Note</strong></p>
<p>The above is now well over a year old. While I still hold great fondness in my heart for SubSonic, I have moved on to LINQ-to-SQL when I have the luxury of working in .NET 3.5. In .NET 2.0, I still use SubSonic. So my new official advice is platform version-dependent. In case of .NET 3+, go with the accepted answer. In case of .NET 2.0, go with SubSonic.</p>
http://stackoverflow.com/questions/1732054/how-might-i-add-an-item-to-a-listbox/1732091#17320913Answer by John Rudy for How might I add an item to a ListBox?John Rudy2009-11-13T21:39:14Z2009-11-13T21:39:14Z<p>In WinForms, <code>ValueMember</code> and <code>DisplayMember</code> are used when data-binding the list. If you're not data-binding, then you can add any arbitrary object as a <code>ListItem</code>. </p>
<p>The catch to that is that, in order to display the item, <code>ToString()</code> will be called on it. Thus, it is highly recommended that you only add objects to the ListBox where calling <code>ToString()</code> will result in meaningful output.</p>
http://stackoverflow.com/questions/1725284/gui-controls-appearing-and-disappearing-based-on-user-inputs/1725422#17254223Answer by John Rudy for GUI controls appearing and disappearing based on user inputsJohn Rudy2009-11-12T21:08:28Z2009-11-12T21:08:28Z<p>I have to disagree with Konrad and Brian here -- this will end up being jarring for most users.</p>
<p>While dynamic response is definitely a valid GUI paradigm, hiding/showing and resizing displays dynamically based on selections from the same list (or entry into the same text box) tends to be very jarring for normal end users. This is why the so-called "smart" menus in Office (and Win2K/XP) were loathed by many -- features seemed to appear and disappear for no good reason.</p>
<p>The correct paradigm in this case is disabling ("graying out") the controls. If you're looking for specific citations, I believe this has been discussed in <em>About Face: The Essentials of User Interface Design</em>. I know that the Microsoft Office usability team also produced the same results from their labs. </p>
<p><strong>Pre-emptive Note:</strong></p>
<p>Showing/hiding is not <em>always</em> a bad paradigm. But use it when it makes sense. It makes sense for the Windows Explorer detail bar to show different contextual information based on whether you've selected a Word Doc, an image, or an MP3. That's a small, borderline incidental piece of the UI, with no discernible (and especially no <em>editable</em>) controls. It's expected that navigating to a new tab will hide the controls from the previous tab and show the ones from the new tab -- but then again, tabs are a navigational paradigm.</p>
<p>Showing and hiding within the same view, for what (to most users) will appear to be the same kind of data, is the jarring experience.</p>
http://stackoverflow.com/questions/1723648/how-to-inherit-method-but-with-different-return-type/1723685#17236850Answer by John Rudy for How to Inherit method but with different return type?John Rudy2009-11-12T16:52:10Z2009-11-12T16:52:10Z<p>This isn't inheritance, because the return type of the method is part of its signature. You're not changing the method, you'd be creating an entirely new one.</p>
<p>You do have some options. You could, for example, make the method <code>DoSomethingAndReturnNewObject</code> a generic-based method, and have it return its generic type. This is probably the most direct path to the exact behavior for which you're looking.</p>
<p>The other alternative is to leave the method signatures as-is, and have the subclass methods return instances of <code>ClassB</code> and <code>ClassC</code>. Then the client code would need to be responsible for casting in order to use those objects as their appropriate derived classes.</p>
<p>Is there some reason the common interface of <code>ClassA</code> doesn't suffice? Polymorphism will, if you have derived and overridden virtual members correctly, provide you with the correct functionality if you're only using the <code>ClassA</code> members.</p>
http://stackoverflow.com/questions/1690601/markdown-and-xss/1690651#16906510Answer by John Rudy for Markdown and XSSJohn Rudy2009-11-06T21:40:27Z2009-11-06T21:49:00Z<p>There are two issues with what you've proposed:</p>
<ol>
<li>I don't see a way for your users to be able to format posts. You took advantage of Markdown to provide nice numbered lists, for example. In the proposed no-tags-no-exceptions world, I'm not seeing how the end user would be able to do such a thing.</li>
<li><strong>Considerably more important:</strong> When using Markdown as the "native" formatting language, and whitelisting the other available tags,you are limiting not just the input side of the world, but the output as well. In other words, if your display engine expects Markdown and only allows whitelisted content out, even if (God forbid) somebody gets to the database and injects some nasty malware-laden code into a bunch of posts, the actual site and its users are protected becuase you are sanitizing it upon display, as well.</li>
</ol>
<p>There are some good resources on the web about output sanitization:</p>
<ul>
<li><a href="http://www.diovo.com/2008/09/sanitizing-user-data-how-and-where-to-do-it/" rel="nofollow">Sanitizing user data: Where and how to do it</a></li>
<li><a href="http://www.analyticalengine.net/archives/58" rel="nofollow">Output sanitization</a> (One of my clients, who shall remain nameless and whose affected system was <em>not</em> developed by me, was hit with this exact worm. We have since secured those systems, of course.)</li>
<li><a href="http://www.biztechmagazine.com/article.asp?item%5Fid=159" rel="nofollow">BizTech: Best Practices: Never heard of XSS?</a></li>
</ul>
http://stackoverflow.com/questions/1683804/is-an-iphone-sdk-patch-available-or-do-i-need-to-download-the-entire-tool-set/1683824#16838243Answer by John Rudy for Is an iPhone SDK patch available, or do I need to download the entire tool set?John Rudy2009-11-05T21:38:46Z2009-11-05T21:38:46Z<p>As far as I've ever been aware, every update to the SDK required a full redeployment of the 2.7GB XCode stack. Of course, "as far as I've ever been aware" dates back to just the 3.0 beta, as I'm a relatively new dev for the platform. :)</p>
http://stackoverflow.com/questions/313400/nsinvocation-for-dummies3NSInvocation for Dummies?John Rudy2008-11-24T04:17:49Z2009-11-03T03:10:37Z
<p>How exactly does <code>NSInvocation</code> work? Is there a good introduction?</p>
<p>I’m specifically having issues understanding how the following code (from <em>Cocoa Programming for Mac OS X, 3rd Edition</em>) works, but then also be able to apply the concepts independently of the tutorial sample. The code:</p>
<pre><code>- (void)insertObject:(Person *)p inEmployeesAtIndex:(int)index
{
NSLog(@"adding %@ to %@", p, employees);
// Add inverse of this operation to undo stack
NSUndoManager *undo = [self undoManager];
[[undo prepareWithInvocationTarget:self] removeObjectFromEmployeesAtIndex:index];
if (![undo isUndoing])
[undo setActionName:@"Insert Person"];
// Finally, add person to the array
[employees insertObject:p atIndex:index];
}
- (void)removeObjectFromEmployeesAtIndex:(int)index
{
Person *p = [employees objectAtIndex:index];
NSLog(@"removing %@ from %@", p, employees);
// Add inverse of this operation to undo stack
NSUndoManager *undo = [self undoManager];
[[undo prepareWithInvocationTarget:self] insertObject:p
inEmployeesAtIndex:index];
if (![undo isUndoing])
[undo setActionName:@"Delete Person"];
// Finally, remove person from array
[employees removeObjectAtIndex:index];
}
</code></pre>
<p>I get what it’s trying to do. (BTW, <code>employees</code> is an <code>NSArray</code> of a custom <code>Person</code> class.)</p>
<p>Being a .NET guy, I try to associate unfamiliar Obj-C and Cocoa concepts to roughly analogous .NET concepts. Is this similar to .NET’s delegate concept, but untyped? </p>
<p>This isn’t 100% clear from the book, so I’m looking for something supplemental from real Cocoa/Obj-C experts, again with the goal that I understand the fundamental concept beneath the simple(-ish) example. I'm really looking to be able to independently apply the knowledge -- up until chapter 9, I was having no difficulty doing that. But now ... </p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1652344/how-to-use-css-to-position-divs/1652445#16524452Answer by John Rudy for How to use CSS to position divs?John Rudy2009-10-30T21:32:46Z2009-10-30T21:32:46Z<h2>Edit based on Question Edit</h2>
<p>Seeing the HTML you have, my biggest suggestion is nesting some of the divs to get the control you want. While I'm not using your specific IDs in my sample below, the nesting should show you how to adapt what you have to where you want to be. (I hope!)</p>
<h2>Original Answer</h2>
<p>I'm going to have to make some assumptions about what you're trying to do in order to help you out. Lining up the bottoms will be the single hardest part, so I'm going to just go ahead and pretend it's not really the nice pretty square you've displayed. (I still can't do lining the bottoms without resorting to tables. Although I believe some of the frameworks, like those mentioned in <a href="http://stackoverflow.com/questions/1652344/how-to-use-css-to-position-divs/1652379#1652379">Josh's answer</a>, may be able to make that happen.)</p>
<p>So the assumptions I'm going to make, to keep life relatively simple, are thus:</p>
<ul>
<li>You need to have an overarching header</li>
<li>You need a left column and a right column</li>
<li>The right column has three discreet elements in it</li>
<li>The left column has two discreet elements in it</li>
</ul>
<p>Also to make life easier, I'm not going to break the stylesheets into their own CSS file; I'm going to assume that you know CSS and HTML already, and will be able to move them appropriately based on this basic HTML layout I'm about to throw out there.</p>
<p>So the basic layout would probably look something like such:</p>
<pre><code><html>
<head><!-- blah blah blah --></head>
<body>
<!-- the overall container -->
<div style="width: 500px; margin-left: auto; margin-right: auto;">
<!-- the header -->
<div style="width: 100%; height: 100px;">
My headery goodness here
</div>
<!-- the left column -->
<div style="float: left; width: 320px;">
<div>
My charty goodness here
</div>
<div>
My legendary goodness here
</div>
</div>
<!-- the right column -->
<div style="float: left; width: 180px;">
<div>
Info 1
</div>
<div>
Info 2
</div>
<div>
Info 3
</div>
</div>
</div>
</body>
</html>
</code></pre>
<p>You'll need to season the dimensions and add <code>padding</code> to taste, and if you do want the bottoms to line up, I recommend setting explicit <code>height</code>, <code>min-height</code>, <code>max-height</code> and <code>overflow</code> properties on all of the <code>div</code>s. </p>
<p>Finally, again, you really want to separate the CSS I've embedded here into appropriate ID or class selectors in a separate CSS file. This was just a rough hash-out to get you started on the layout; it's by no means a complete answer.</p>
http://stackoverflow.com/questions/1646549/is-there-any-way-to-make-a-dual-executable-file-for-mac-windows/1646617#16466177Answer by John Rudy for Is there any way to make a dual executable file for Mac/Windows?John Rudy2009-10-29T21:20:01Z2009-10-30T11:52:06Z<p>The only way I can see this working is having extra tools installed:</p>
<ul>
<li><strong>Scripts:</strong> The command parsers are extremely different between the Mac (bash shell) and Windows (which has 2: PowerShell and the original, don't know its technical name). You'd either have to have Services for Unix/Cygwin/Insert-other-UNIXy-Environment here installed on the Windows box, or use something like perl or another scripting language. In either event, at <em>least</em> the Windows box, and possibly the Mac, need additional out-of-box tools.</li>
<li><strong>Executables:</strong> The only way you can pull this off is to use Java, .NET/Mono or some other cross-platform bytecode-based virtual machine environment. Hence, you are still dependent on tools which are not in-box. (IIRC, Java doesn't ship with Windows, and Mono doesn't ship with Mac.)</li>
<li><strong>Other Issues:</strong> The biggest issue you'll run into after dealing with the tool dependency is that paths are identified differently on both systems. Understanding that Mac paths are generally Unix-style paths (although I believe "old-school" Mac colon-separated paths are still valid). You'll also have to deal with different file locations and default locations based on both environments. This will be a pain.</li>
</ul>
<p>Now, if you can get away with using a cross-compile instead of binary compatibility, you may have an answer in a tool called <a href="http://www.realsoftware.com/realbasic/" rel="nofollow">RealBasic</a>. It was originally Mac-based, but there are versions for Windows and Linux as well. I used to play around with it in the early part of this decade, and it was pretty neat, but not something I ever used professionally. This will, <em>if you're careful,</em> allow you to write the code once, and compile the very same code as native Mac, Linux and Windows applications.</p>
http://stackoverflow.com/questions/196606/net-2-0-winform-supporting-dpi-and-default-font-changes/198750#1987503Answer by John Rudy for .NET 2.0 WinForm: Supporting DPI and Default Font ChangesJohn Rudy2008-10-13T19:31:49Z2009-10-24T14:53:35Z<p>The correct way is to scale the controls, the form itself and the text within. This sounds very complicated, but the layout controls (TableLayoutPanel and FlowLayoutPanel), combined with the AutoSize property, make this considerably less difficult.</p>
http://stackoverflow.com/questions/1615444/windows-standard-file-locations/1615509#16155095Answer by John Rudy for Windows Standard File LocationsJohn Rudy2009-10-23T19:44:05Z2009-10-23T19:55:17Z<p><strong>Big Disclaimer</strong></p>
<blockquote>
<p>Do <a href="http://blogs.msdn.com/oldnewthing/archive/2006/03/28/563008.aspx" rel="nofollow">not</a> <a href="http://blogs.msdn.com/oldnewthing/archive/2003/11/03/55532.aspx" rel="nofollow">ever</a> <a href="http://blogs.msdn.com/oldnewthing/archive/2006/01/09/510781.aspx" rel="nofollow">use</a> the
<a href="http://blogs.msdn.com/oldnewthing/archive/2005/06/30/434209.aspx" rel="nofollow">hard paths</a> to these locations.
Only use the provided APIs (whether
those APIs be standard Win32 APIs, the
.NET APIs, whatever) to access them.
Otherwise you run the risk of breaking
on different versions <em>and languages</em> of Windows.</p>
<p>And that's a real risk -- they've
changed those locations at least four
times -- and that's just in what I can
recall off the top of my head! Not to
mention roaming profiles and other fun
weirdness that can crop up.</p>
</blockquote>
<p>Now that the big disclaimer is out of the way, where's the list? <a href="http://en.wikipedia.org/wiki/Special%5FFolders" rel="nofollow">Wikipedia</a> has it. Take some of the "first-appeared-in" with a grain of salt; I'm 90% sure I've seen some of these appear earlier than is claimed. I have shamelessly cut-and-pasted-and-reformatted their content below:</p>
<ul>
<li><strong>Application Data</strong><br />
<ul>
<li>Per-user application-specific files </li>
<li><code>%USERPROFILE%\Application Data</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>Cookies</strong>
<ul>
<li>Internet Explorer browser cookies </li>
<li><code>%USERPROFILE%\Cookies</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>Desktop Directory</strong><br />
<ul>
<li>Files stored on the user's desktop </li>
<li><code>%USERPROFILE%\Desktop</code></li>
<li>First appeared in Windows 95</li>
</ul></li>
<li><strong>Favorites</strong><br />
<ul>
<li>User's Favorites </li>
<li><code>%USERPROFILE%\Favorites</code> </li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>Fonts</strong><br />
<ul>
<li>Container folder for installed fonts </li>
<li><code>%windir%\Fonts</code></li>
<li>First appeared in Windows XP</li>
</ul></li>
<li><strong>History</strong><br />
<ul>
<li>User-specific browser history </li>
<li><code>%USERPROFILE%\Local Settings\History</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>Internet Cache</strong><br />
<ul>
<li>User-specific Temporary Internet Files </li>
<li><code>%USERPROFILE%\Local Settings\Temporary Internet Files</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>Local Application Data</strong><br />
<ul>
<li>User-specific and computer-specific application settings </li>
<li><code>%USERPROFILE%\Local Settings\Application Data</code></li>
<li>First appeared in Windows 2000/ME</li>
</ul></li>
<li><strong>My Documents</strong><br />
<ul>
<li>User's documents </li>
<li><code>%USERPROFILE%\My Documents (WinNT line)</code></li>
<li><code>C:\My Documents (Win98-ME)</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>My Music</strong><br />
<ul>
<li>User's music </li>
<li><code>%USERPROFILE%\My Documents\My Music</code></li>
<li>First appeared in Windows XP</li>
</ul></li>
<li><strong>My Pictures</strong><br />
<ul>
<li>User's pictures </li>
<li><code>%USERPROFILE%\My Documents\My Pictures</code></li>
<li>First appeared in Windows XP</li>
</ul></li>
<li><strong>My Videos</strong><br />
<ul>
<li>User's video files </li>
<li><code>%USERPROFILE%\My Documents\My Videos</code></li>
<li>First appeared in Windows XP</li>
</ul></li>
<li><strong>Programs</strong><br />
<ul>
<li>User-specific "(All) Programs" groups and icons </li>
<li><code>%USERPROFILE%\Start Menu\Programs</code></li>
<li>First appeared in Windows 95</li>
</ul></li>
<li><strong>Recent</strong><br />
<ul>
<li>User-specific "My Recent Documents" </li>
<li><code>%USERPROFILE%\Recent</code></li>
<li>98</li>
</ul></li>
<li><strong>Send To</strong><br />
<ul>
<li>User-specific "Send To" menu items </li>
<li><code>%USERPROFILE%\SendTo</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>Start Menu</strong><br />
<ul>
<li>User-specific "Start Menu" items </li>
<li><code>%USERPROFILE%\Start Menu</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
<li><strong>System</strong><br />
<ul>
<li>The Windows system directory </li>
<li><code>%windir%\system32</code></li>
<li>First appeared in Windows 2000</li>
</ul></li>
<li><strong>Saved Games</strong><br />
<ul>
<li>User's Saved Games </li>
<li><code>%USERPROFILE%\saved games</code></li>
<li>First appeared in Windows Vista</li>
</ul></li>
<li><strong>Templates</strong><br />
<ul>
<li>User-specific document templates </li>
<li><code>%USERPROFILE%\Templates</code></li>
<li>First appeared in Windows 98</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1590859/check-panel-to-enable-disable-visibility/1591117#15911172Answer by John Rudy for Check Panel to enable/disable visibilityJohn Rudy2009-10-19T20:57:59Z2009-10-19T20:57:59Z<p>In addition to Dan Diplo's <a href="http://stackoverflow.com/questions/1590859/check-panel-to-enable-disable-visibility/1590941#1590941">LoginView answer</a>, you may want to consider the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.multiview.aspx" rel="nofollow">MultiView</a> control in a more generalized (IE, not specifically login-related) case. The MultiView contains a set of one or more mutually-exclusive Views (similar to Panels), which </p>
<p>The MultiView is relatively easy to set up declaratively:</p>
<pre><code><asp:MultiView runat="server" id="pageMultiView" ActiveViewIndex="0">
<asp:View runat="server" id="view1">
<!-- your 1st view content here! -->
</asp:View>
<asp:View runat="server" id="view2">
<!-- your 2nd view content here! -->
</asp:View>
</asp:MultiView>
</code></pre>
<p>In code, you switch views like so:</p>
<pre><code>pageMultiView.SetActiveView(view1);
</code></pre>
<p>And thus, you are done.</p>
http://stackoverflow.com/questions/1513865/any-idea-what-this-net-error-means/1513906#15139061Answer by John Rudy for Any idea what this .NET error means?John Rudy2009-10-03T14:40:42Z2009-10-03T14:40:42Z<p>Generally speaking, this error occurs when IIS is not configured correctly for your deployment. You state that this is installed to a subdomain on your hosted server, which at first glace indicates that this error should simply not appear. But I have to ask what URLs you are seeing it with? (Just one or two, if you don't mind.)</p>
<p>Normally, this error has always occurred for me when I dropped a .NET app into a directory on an IIS site, and forgot to configure that directory as a virtual directory and application correctly. As a result, some config entries which are application-level only caused the ASP.NET framework to throw your exception.</p>
<p>If your URLs look right, see if your host provides you direct access to IIS settings. If they do, then you can double-check all of the settings directly and ensure that they are correct.</p>
http://stackoverflow.com/questions/1511763/reverse-of-string-format/1511777#15117770Answer by John Rudy for Reverse of String.Format?John Rudy2009-10-02T21:04:26Z2009-10-02T21:04:26Z<p>I don't believe there's anything in-box to support this, but in C#, you can pass an array of objects directly to any method taking <code>params</code>-marked array parameters, such as <code>String.Format()</code>. Other than that, I don't believe there's some way for C# & the .NET Framework to know that string X was built from magic format string Y and undo the merge.</p>
<p>Therefore, the only thing I can think of is that you could format your code thusly:</p>
<pre><code>object[] parts = {"strager", 2};
string s = String.Format(formatString, parts);
// Later on use parts, converting each member .ToString()
foreach (object p in parts)
{
Console.WriteLine(p.ToString());
}
</code></pre>
<p>Not ideal, and probably not quite what you're looking for, but I think it's the only way. </p>
http://stackoverflow.com/questions/1499737/visual-studio-2008-connection-to-sql-server-2005/1499809#14998091Answer by John Rudy for Visual Studio 2008 connection to Sql Server 2005John Rudy2009-09-30T18:17:40Z2009-09-30T18:17:40Z<p>You will not be able to connect directly to the hosted GoDaddy version of your database from your own Visual Studio setup running on your PC. The GoDaddy network has been secured against outsiders hitting their hosted databases -- and this is a very good thing. (Imagine, if someone compromised your connection string, the raw damage they could do from literally anywhere in the world if this were possible.) </p>
<p>Instead, use GoDaddy's tools to back up the database, download the backup, and restore it to SQL Server 2005 or 2008 Express editions. Develop against that.</p>
<p>When you're developed and tested, upload your app to GoDaddy, and change the connection string to the GoDaddy parameters.</p>
<p>Generally it's not recommended that you develop directly against a live (production) database to begin with -- by using the technique I describe, you are developing against a local copy of the database, and not impacting the real data.</p>
http://stackoverflow.com/questions/1467964/how-do-i-iterate-controls-in-a-windows-form-app/1467980#14679807Answer by John Rudy for How do I Iterate controls in a windows form app?John Rudy2009-09-23T19:01:09Z2009-09-23T19:01:09Z<pre><code>foreach (Control c in this.Controls)
{
if (c is TextBox)
{
// your logic here
}
}
</code></pre>
<p>If they have different functionality, then you might need more checks than just determining that they are the correct type. And of course, this assumes that you have the System.Windows.Forms namespace imported.</p>
http://stackoverflow.com/questions/1467598/how-do-i-hide-a-windows-form-but-keep-a-taskbar-entry-for-it/1467690#14676902Answer by John Rudy for How do I Hide a windows Form but Keep a Taskbar entry for it?John Rudy2009-09-23T18:11:54Z2009-09-23T18:11:54Z<p>As dequadin mentioned, the paradigm you're using probably justifies a notify icon. The taskbar is specifically designed for minimized windows (and on Win7, app launch). All of the other recommendations (form opacity, moving the window offscreen, etc) fall down on Win7 with Aero Peek.</p>
<p>If you have an app which is primarily a background task with occasional UI and the need for user interaction on demand, the correct technique is the System Notification Area (aka the Tray). In .NET WinForms, this would be the NotifyIcon control.</p>
http://stackoverflow.com/questions/1462332/problem-using-form-runatserver-with-master-pages/1462383#14623834Answer by John Rudy for Problem using form runat=server with master pages?John Rudy2009-09-22T20:26:03Z2009-09-22T20:50:01Z<p>You say that the TreeView and GridView functionality "stops working" when the <code><form runat="server"></code> is in the master page -- but if doing two forms (one in the master, one in the page using the master) doesn't work, then technically it's not working either way.</p>
<p>The correct idiom for ASP.NET 2.0+ using master pages is to place the form tag in the master page. The pages using the master, if wired up correctly, will not need form tags -- they will get the tag from their master. The web app I just deployed this morning worked that way. :)</p>
<p>I'm guessing that there's actually a code issue buried in the page itself causing the TreeView and GridView to not function once the form tags are implemented correctly.</p>
<p><strong>EDIT</strong></p>
<p>To be clear, the master page must have <code><form runat="server"></code>, all of the other controls & HTML needed, the placeholders, and a closing <code></form></code> tag.</p>
<p>The pages using the master cannot have any <code><form runat="server"></code> tags at all, and especially not a closing <code></form></code> tag. </p>
<p>Done this way, there should be no problems.</p>
http://stackoverflow.com/questions/1456599/cant-get-rid-of-the-keyboard-in-uitextview/1456648#14566480Answer by John Rudy for Can't get rid of the keyboard in UITextViewJohn Rudy2009-09-21T20:25:18Z2009-09-21T20:25:18Z<p>Without knowing the size of the controls, nor the intent, it's a bit hard to make a solid recommendation. However, if you're looking for a read-only text view, why not consider a UILabel? If it's going to contain a great deal of read-only text and you need rich formatting, consider a UIWebView with your formatting.</p>
<p>Of course, this answer could be completely inappropriate. Can you clarify your intentions, maybe show a screen shot of the app-in-progress (untapped, of course)?</p>
http://stackoverflow.com/questions/1427310/docking-a-form-to-another-form-panel/1427363#14273631Answer by John Rudy for Docking a form to another form panelJohn Rudy2009-09-15T14:00:13Z2009-09-15T14:00:13Z<p>Consider extracting the controls out of <code>form1</code> into a UserControl. Use that UserControl on <code>form1</code> (assuming you need it as a form as well as the docked control), then dock the UserControl on <code>form2</code> to implement the desired functionality.</p>
http://stackoverflow.com/questions/1270923/asp-net-application-web-service-not-working-on-vista-iis7-access-right-problem/1415600#14156000Answer by John Rudy for Asp.Net application/web service not working on Vista/IIS7: access right problem?John Rudy2009-09-12T17:05:54Z2009-09-12T21:33:59Z<p>When you get the 503 errors, have you considered looking at the event viewer on the machine to see if IIS logged the exception.</p>
<p>When started from Visual Studio, is it running in the Visual Studio web server or IIS? (This is a critical point. Visual Studio, since 2005, has used its own web server by default for web projects. And this web server is executed under your user account -- also critical for what's coming next.)</p>
<p>You're attempting to read some XML goodness out of a file. In .NET, in order to read a file, for some reason the user executing the code (in IIS7 I believe it is IIS_USERS and NETWORK SERVICE; in older versions of IIS, IUSR_MachineName and ASPNET) have to have both read and <em>write</em> access permissions. So the very first thing I'd check is the ACL on that XML file. Make sure the appropriate users have read/write access. This would be the NTFS permissions, by the way -- right-click the file in Explorer, choose Security, and add the appropriate perms.</p>
<p>What gave it away is that it works when you run the solution from Visual Studio, but not when it's executed from IIS. I don't believe you're getting 503 back from the web service -- you're most likely getting 503 from <code>myApp</code> itself.</p>
<p>The reason for this 503 is because you're attempting to read this file on <code>Application_Load</code>. That means that before any page can even attempt to be served, your XML file must be read and parsed. Upon reflection, and re-reading the question one more time, I'm now 99.99% certain that the inability to read this file (due to the lack of write permissions on it) is the issue. </p>
<p>My advice: Take out all of the admin stuff you'd done, take your user/ACL configuration back to normal, how it was -- including the AppPool. Then, follow the advice above to grant the appropriate IIS users read/write access to the XML file. I'm 99.99% sure your app will now work in IIS.</p>
http://stackoverflow.com/questions/1415515/how-to-avoid-runtime-error-pages-in-asp-net-application/1415540#14155402Answer by John Rudy for how to avoid runtime error pages in asp.net applicationJohn Rudy2009-09-12T16:42:10Z2009-09-12T16:42:10Z<p>As you know, the options are On, Off and RemoteOnly.</p>
<ul>
<li><strong>RemoteOnly</strong> means that if you are browsing locally, you will not get the custom error page; you will get ASP.NET's in-built exception page. If you are browsing remotely (IE, not on the physical machine on which the app is being served), then you will see Error.aspx. I almost never use this setting anymore.</li>
<li><strong>On</strong> means that no matter what, if there is an error, you will see Error.aspx. I tend to use On in production environments.</li>
<li><strong>Off</strong> means that no matter what, you will see ASP.NET's in-box error page (the exception page.) Off is not recommended for production, but is usually what I use on test servers, as I will want my stack trace. :)</li>
</ul>
<p>All of this is predicated on Error.aspx not throwing its own exception, of course. If Error.aspx throws its own unhandled exception, then all bets are off -- you're going to get a default ASP.NET exception page.</p>
http://stackoverflow.com/questions/1413027/asp-net-inline-single-file-vs-code-behind/1413079#14130791Answer by John Rudy for Asp.Net inline (single-file) vs code-behindJohn Rudy2009-09-11T20:24:13Z2009-09-11T20:29:40Z<p>Generally, when working in WebForms, the trend I've seen is to use a code-behind. Many* WebForms applications that I've seen in the field have too much in their code-behinds, and the separation is almost critical just to be able to understand all the logic.</p>
<p>However, in a well-designed app where the UI is only doing a UI job, and passing all the logic and heavy lifting to a different app layer, a single-file solution will often end up being more elegant and easy enough to traverse. In a way, going with the single-file solution may -- in the right hands -- motivate a better separation of concerns, because you don't want that one file (which provides your UI) to get cluttered with a bunch of business logic. </p>
<p>In the ASP.NET MVC model, the default is single-file. This is, again, to stress separation of concerns and good application design. (I do not know off the top of my head if the ASP.NET MVC kit provides a code-behind concept. I have not used it if it does.)</p>
<p>Ultimately, YMMV. Good developers tend to write good code whether it uses the code-behind or single-file model. Bad developers tend to write bad code either way, too.</p>
<p><code>*</code> Obviously not ALL!</p>
http://stackoverflow.com/questions/1386824/hired-as-a-developer-to-maintain-and-update-current-code-base-no-docs/1387081#13870814Answer by John Rudy for Hired as a developer to maintain and update current code base, no docs!John Rudy2009-09-07T00:13:08Z2009-09-11T03:00:49Z<p>Adding to the mountains of great advice, there's another excellent book on this subject (though it's focused primarily on C and Assembler) called <a href="http://www.apress.com/book/view/9781590592342" rel="nofollow">Software Exorcism: A Handbook for Debugging and Optimizing Legacy Code</a>.</p>
<p>My techniques -- and I'm in the midst of such a beast right now from one of my clients -- are similar to many other answers you'll see here:</p>
<ol>
<li>Immediate task: Determine which (if any) third party libraries are used in the project. This is critical, because knowing which assemblies (.NET), packages or other libraries in the project are outside your control helps pare down the "working set" of code you have to trudge through. (Note that you still have to find documentation or samples for said 3rd-party libraries.) (Note #2: This was one of the hardest lessons I had to learn.)</li>
<li>Does anyone familiar with the project still exist in the firm? Great, they're your new best friends. Schedule as much face time with them as humanly possible. Buy them coffee, donuts and bagels. You want to know what this beast was <em>supposed</em> to do. (You don't care, yet, what it <em>actually</em> does. You will, but right now find out what the business needed this app to do, and then look at all of the code from that perspective.) Take notes. Lots and lots of notes.</li>
<li>Start small. Understand a single module or flow. Understand its immediate dependencies. Then start branching out into the dependencies' dependencies and so forth.</li>
<li>Don't start changing things yet. Get a halfway decent handle on the structure and standards of the project. And yes, the absence of structure and standards is (unfortunately) itself a standard. My old adage of "sometimes it's better to be consistent than correct" may apply -- but your mileage on that may vary. (As a consultant, I inherit a lot of code -- code which may or may not be permanently maintained by me. I'd usually rather match what's there so the next guy has an easier time.)</li>
<li>Begin developing some of your own documentation. It doesn't have to be formal, it can even be "just notes." If you're using Office 2007, OneNote is very handy for this, but a regular word processing document can work just as well. Just capture what you learn about the code.</li>
<li>Does the project have unit tests? Of course not -- I've never once inherited a project which did. So, sounds like a good way to get your feet wet with the code, doesn't it? Why would we write these now? Because unit tests are a great way to document what code does, and more importantly, what it's <em>intended</em> to do. You may not know what the intent of the previous developer was, but you know what your intent is. For better or for worse, the code is now yours; make sure you know what it does. You don't need to write tests for the entire app all at once, but make sure you do enough that you're ready for ... </li>
<li>Change time! Like others said, start small. And make sure you have unit tests that are already working for everything your change touches. That means all of your changes dependencies, both up- and down-stream. The unit tests not only ensure that the code works, but in this scenario provide some (small) level of regression testing for you.</li>
<li>Test your changes, both in and out of the debugger. Make sure your change "seems to work."</li>
<li>Now find someone in the business to test it.</li>
<li><code>GOTO 6</code></li>
</ol>
<p>Good luck! I'll be honest, the whole forensic analysis bit is probably my favorite part of a new app -- even if the codebases are typically rotten to their cores. It's some of the most challenging work you get to do as a developer.</p>
http://stackoverflow.com/questions/265395/expression-blend-2-issue-with-creating-silverlight-2-projects1Expression Blend 2 Issue with Creating Silverlight 2 Projects?John Rudy2008-11-05T15:02:17Z2009-09-10T18:50:22Z
<p>I have Expression Blend 2, Service Pack 1, and cannot create a Silverlight 2 project. When I attempt to create a Silverlight 2 project, I get the following error:</p>
<blockquote>
<p>Blend cannot continue because a compatible Silverlight version could not be found.</p>
</blockquote>
<p>I installed Blend a few weeks ago, and service packed it yesterday. The order I did things is as follows:</p>
<ol>
<li>"old school" dev stack (VS 2005 Pro, SQL Server 2005 Express, SQL Server Mgmt Studio 2005, Infragistics, etc., all ages ago)</li>
<li>Visual Studio 2008 Developer Team Edition</li>
<li>SQL Server Management Studio 2008</li>
<li>Expression Web 2</li>
<li>Expression Blend 2 (2 - 5 were a few weeks ago.)</li>
<li>Silverlight SDK 2 (yesterday)</li>
<li>Expression Blend 2 SP1 (downloaded then installed, yesterday)</li>
<li>Expression Blend 2 SP1 (installed straight from Microsoft site, yesterday, after reading <a href="http://social.expression.microsoft.com/Forums/en-US/blend/thread/2a58747b-1bd3-4bb3-8073-7d9ef912549b/" rel="nofollow">this</a> and <a href="http://social.expression.microsoft.com/Forums/en-US/blend/thread/821e1fe9-df0b-4461-bf4b-20ecf6c51088" rel="nofollow">this</a> online.</li>
<li>Silverlight Tools for Visual Studio 2008 (yesterday, after giving up on Blend)</li>
</ol>
<p>Aside from the techniques described in the two links (which I've exhausted, and none have worked), does anyone have any advice? Preferably advice that doesn't involve uninstalling and reinstalling my entire dev stack? :)</p>
<p>Oh, and for what it's worth, I'm on 64-bit Vista. However, Expression is a 32-bit app (and of course the runtime is 32-bit only).</p>
<p>I've posted (essentially) this same question on <a href="http://social.expression.microsoft.com/Forums/en-US/blend/thread/2442f10d-ac06-4633-a6c3-7e2d1e42681b" rel="nofollow">Blend's own forums</a>. If I get a response there that works, I'll post it here in case anyone else ever has this issue.</p>
http://stackoverflow.com/questions/1401636/inspiration-to-get-rid-of-mdi-ui/1401779#14017790Answer by John Rudy for Inspiration to get rid of MDI UIJohn Rudy2009-09-09T20:03:09Z2009-09-09T20:03:09Z<p>If you're document-oriented, tabbed- and pane-driven design seems to be the current major paradigm.</p>
<p>If it's a business-style forms-driven app, tabbed- or pane-driven design can work, but may not be the ideal solution. For those, I'm finding more and more that web-style navigation paradigms work best.</p>
<p>For inspiration, check out software on other operating systems, as well as the latest round of all the Microsoft software -- everything from Media Player through the Office 2010 Suite and VS2010. Consider some of the following resources as well:</p>
<ul>
<li><a href="http://www.flickr.com/photos/jasonrobb/sets/72157606470313238/" rel="nofollow">User Interface Inspiration set on Flickr</a></li>
<li><a href="http://www.guidebookgallery.org/" rel="nofollow">GUIdebook Gallery (GUIs throughout history)</a></li>
<li><a href="http://www.asktog.com/" rel="nofollow">AskTog</a></li>
<li><a href="http://www.cooper.com/insights/books/" rel="nofollow"><strong>ALL</strong> of Alan Cooper's books</a></li>
</ul>
<p>Ultimately, UI inspiration can strike from just about anywhere. Any piece of software -- even unrelated -- may have a UI idea that can be adapted to your needs. Even non-software; remember that a lot of the UI paradigms we take for granted now originated in the physical world. Keep your eyes and mind open all the time.</p>
http://stackoverflow.com/questions/1823420/how-to-turn-on-line-number-tooltip-while-scrolling-infragistics-ultrawebgridComment by John Rudy on How to turn on line number tooltip while scrolling infragistics ultrawebgridJohn Rudy2009-12-07T22:59:42Z2009-12-07T22:59:42ZDid you update the control set? Did the browser versions change? (A lot of the IG functionality traditionally got "weird" for me after control and/or browser updates.)http://stackoverflow.com/questions/1849340/mvc-asp-net-design-templates/1856998#1856998Comment by John Rudy on MVC / ASP.NET design templatesJohn Rudy2009-12-07T04:48:52Z2009-12-07T04:48:52ZIf you second TemplateMonster, upvote the other question & add a comment.http://stackoverflow.com/questions/1857826/how-can-i-create-and-maintain-authentication-sessions-on-an-iphoneComment by John Rudy on How can I create and maintain authentication sessions on an iPhone?John Rudy2009-12-07T04:34:11Z2009-12-07T04:34:11ZIs this a web app optimized for the iPhone, or a Cocoa app which will be in the store? If it's a web app, your web app framework of choice's authentication should "just work."http://stackoverflow.com/questions/1856379/how-can-read-a-file-split-the-strings-in-it-and-write-the-output-to-a-hashtableComment by John Rudy on How can read a file, split the strings in it, and write the output to a hashtable in C#?John Rudy2009-12-06T21:18:35Z2009-12-06T21:18:35ZIf I'm reading this correctly, it sounds like you're actually trying to use one key and store two items against it. Hashtables have exactly one value per key, so either "Hi this is the first entry / hi this is the second entry" will be the value, or you need two keys, or you need to store a different data structure for the two values (a class with 2 string values, for example -- a Tuple, which is coming in .NET 4).http://stackoverflow.com/questions/1840154/rpg-dialogue-engine-structure/1840223#1840223Comment by John Rudy on RPG dialogue engine / structureJohn Rudy2009-12-03T17:37:54Z2009-12-03T17:37:54ZNot being a pro in that world, I really don't have much else to go on. I'd recommend hitting the bookshelves -- there are actually books on CRPG design and development available; they should take you through the core architecture. Good luck!http://stackoverflow.com/questions/1840154/rpg-dialogue-engine-structureComment by John Rudy on RPG dialogue engine / structureJohn Rudy2009-12-03T14:33:55Z2009-12-03T14:33:55ZOpen questions should generally be marked community wiki, as well. http://stackoverflow.com/questions/1836415/net-document-management-system-design-performance-questionsComment by John Rudy on .NET document management system design - performance questionsJohn Rudy2009-12-02T22:55:05Z2009-12-02T22:55:05ZHow novice is "novice?" You have some fairly stringent requirements, and a pretty decently-sized scalability requirement. Handling potentially 20,000 simultaneous requests while deserializing large (yes, 200K is large in this scenario) BLOBs from a database will require serious design forethought. http://stackoverflow.com/questions/1833774/mass-emailing-isseComment by John Rudy on mass emailing isseJohn Rudy2009-12-02T15:51:32Z2009-12-02T15:51:32ZDon't download and run anything, just contract out to Constant Contact instead. Let them do the dirty work for you. Otherwise it's too easy to get spamhaused.http://stackoverflow.com/questions/1827172/are-frameworks-too-vulnerable-to-exploitsComment by John Rudy on Are frameworks too vulnerable to exploits?John Rudy2009-12-01T20:25:29Z2009-12-01T20:25:29ZI'd have closed that one, too. And "just because question <i>x</i> did it" doesn't make it valid on question <i>y</i>. This has been discussed on Meta many, many times. <i>Nine</i> people felt this question should be closed. That says something.http://stackoverflow.com/questions/1827172/are-frameworks-too-vulnerable-to-exploitsComment by John Rudy on Are frameworks too vulnerable to exploits?John Rudy2009-12-01T17:40:43Z2009-12-01T17:40:43Z@evolve: It <b>should</b> be closed. <a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a>: "Avoid asking questions that are subjective, argumentative, or require extended discussion. This is not a discussion board, this is a place for questions that can be answered!"http://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-frenchComment by John Rudy on Is it true that in France log files have to be French?John Rudy2009-12-01T17:07:46Z2009-12-01T17:07:46ZUnderstand that when a question is closed, not all of the voters necessarily voted the same way. The closure with the most votes is the one displayed.http://stackoverflow.com/questions/1827064/question-on-converting-decimal-to-binary-to-hex/1827086#1827086Comment by John Rudy on Question on converting decimal to binary to hexJohn Rudy2009-12-01T16:53:32Z2009-12-01T16:53:32ZEspecially in calc's Win7 incarnation.http://stackoverflow.com/questions/1827184/how-can-you-redefine-a-property-using-in-reflection-in-cComment by John Rudy on How can you redefine a property using in reflection in C#?John Rudy2009-12-01T16:51:48Z2009-12-01T16:51:48ZHave you considered just creating a wrapper class that encapsulates an instance of tx_fct and exposes your customized behavior via its own means?http://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-frenchComment by John Rudy on Is it true that in France log files have to be French?John Rudy2009-12-01T16:46:28Z2009-12-01T16:46:28ZIt's related to your app in that it is a requirement, but it's not programming-related, it's a legal question. We at SO really can't answer it with any true authority. It'd be like me asking (for example) about the various injuries that can happen to a knee, because I might be working on an EMR app.http://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-frenchComment by John Rudy on Is it true that in France log files have to be French?John Rudy2009-12-01T16:34:41Z2009-12-01T16:34:41ZThis is SO not a ServerFault question. But there are other valid reasons to vote-to-close on it. (Sorry, @kai, but it's not really an SO question either.)