User Coding the Wheel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T09:22:59Zhttp://stackoverflow.com/feeds/user/90http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/626803/programatically-hide-field-in-propertygrid/1210260#12102601Answer by Coding the Wheel for Programatically Hide Field in PropertyGridCoding the Wheel2009-07-31T01:40:02Z2009-07-31T07:20:55Z<p>Actually this is entirely possible. The first and easiest way is to set the grid's BrowsableAttributes property:</p>
<pre><code>propGraph.BrowsableAttributes = new AttributeCollection(
new Attribute[]
{
new CategoryAttribute("Appearance")
});
</code></pre>
<p>This will filter out all properties that do NOT match the attribute-types you supply. Unfortunately this is a positive filter rather than a negative filter which makes it less useful IMHO.</p>
<p>Second, and equally easy, you can create a simple wrapper around the object you want to display in the PropertyGrid and re-define whatever properties you want to hide/etc. as passthrough properties:</p>
<pre><code>public class MyDerivedControl : public TextBox
{
[Browsable(false)]
[Category("MyCustomCategory")]
public new bool Enabled
{
get { return base.Enabled }
set { base.Enabled = value; }
}
}
</code></pre>
<p>Pop that into a property grid and the Enabled property will be hidden.</p>
<p>Third, you can customize the PropertyGrid itself and get into the world of type descriptors and so forth, but if all you want to do is hide a couple properties, this is overkill.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1174280/how-to-repeat-a-mouse-click-in-net/1174340#11743401Answer by Coding the Wheel for How to repeat a mouse click in .NETCoding the Wheel2009-07-23T20:38:37Z2009-07-23T20:38:37Z<p>Mouse click simulation seems a little messy here, but you can always simulate any mouse click at any (X,Y) via the <a href="http://www.pinvoke.net/default.aspx/user32.SendInput" rel="nofollow">SendInput API</a> through P/Invoke:</p>
<pre><code>[DllImport("user32.dll", SetLastError=true)]
static extern uint SendInput(uint nInputs, INPUT [] pInputs, int cbSize);
</code></pre>
<p>You can also fiddle around with propagating/generating WM_MOUSEXXXXX messages directly but I've played with this a lot and believe me when I say it's a total kludge.</p>
http://stackoverflow.com/questions/1169010/win32-message-handler-error-propagation/1169083#11690831Answer by Coding the Wheel for Win32 Message Handler Error PropagationCoding the Wheel2009-07-23T01:09:15Z2009-07-23T01:09:15Z<p>I would stay away from registering custom Window messages for error-handling purposes. I mean this approach will work fine, but there's not really a need.</p>
<p>By the way, your catch handler above should catch all 3 exceptions. Your dialog procedure runs on the same thread that calls CreateDialog. Creating a modeless dialog doesn't spawn off a worker thread. The modeless dialog still gets its messages via your GetMessage/Translate/Dispatch loop. There's a stack frame there, which means when you throw, it should unwind all the way out to your WinMain try/catch block.</p>
<p>Is this not the behavior you're seeing?</p>
http://stackoverflow.com/questions/1149680/can-i-change-the-text-of-a-label-in-a-masterpage-when-loading-a-content-page/1149686#11496863Answer by Coding the Wheel for Can I change the text of a label in a masterpage when loading a content page?Coding the Wheel2009-07-19T11:20:03Z2009-07-19T11:20:03Z<p>Yes.</p>
<p>You want to create a <a href="http://msdn.microsoft.com/en-us/library/c8y19k6h.aspx" rel="nofollow">strongly-type master page</a> and you can then access it's properties from your content page during Page_Load or wherever else.</p>
http://stackoverflow.com/questions/1148955/creating-search-engine-friendly-urls-in-asp-net-mvc/1148973#11489731Answer by Coding the Wheel for Creating search engine friendly URL's in ASP.NET MVCCoding the Wheel2009-07-19T00:41:07Z2009-07-19T00:41:07Z<p>The standard practice here is to store a 'slug' with each post that will function as the post's outward-facing URL. For example, your slug for the above post would be:</p>
<pre><code>best-product-in-the-world
</code></pre>
<p>A decent CMS will do this for you automatically, and allow you to tweak the slug before saving.</p>
http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1148864#11488644Answer by Coding the Wheel for Surprising software vulnerabilities or exploits?Coding the Wheel2009-07-18T23:24:58Z2009-07-18T23:24:58Z<p>:-)</p>
<p><img src="http://www.codingthewheel.com/image.axd?picture=transparent%5Fintercept.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1144421/asp-net-mvc-extension-less-urls-on-shared-hosting-godaddy-etc/1144484#11444843Answer by Coding the Wheel for ASP.NET MVC Extension-Less URLS on Shared Hosting? (GoDaddy, etc.)Coding the Wheel2009-07-17T16:51:12Z2009-07-17T16:51:12Z<p>Yes, I have a couple sites that are currently hosted on GoDaddy shared w/ extensionless URLs in ASP.NET. You need to <a href="http://help.godaddy.com/article/4179" rel="nofollow">enable IIS7 integrated pipeline mode</a> as you can't access wildcard mappings or add ISAPI filters on a shared box. Once that's turned on, you can route incoming (extensionless) URLs to .aspx or whatever else through an HTTP Module or via URLRewriter.NET or whatever else.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/1143351/regex-for-encoded-html1Regex for Encoded HTMLCoding the Wheel2009-07-17T13:40:46Z2009-07-17T14:55:31Z
<p>I'd like to create a regex that will match an opening <code><a></code> tag containing an href attribute only:</p>
<pre><code><a href="doesntmatter.com">
</code></pre>
<p>It should match the above, but not match when other attributes are added:</p>
<pre><code><a href="doesntmatter.com" onmouseover="alert('Do something evil with Javascript')">
</code></pre>
<p>Normally that would be pretty easy, but the HTML is encoded. So encoding both of the above, I need the regex to match this:</p>
<pre><code>&#60;a href&#61;&#34;doesntmatter.com&#34; &#62;
</code></pre>
<p>But not match this:</p>
<pre><code>&#60;a href&#61;&#34;doesntmatter.com&#34; onmouseover&#61;&#34;alert&#40;&#39;do something evil with javascript.&#39;&#41;&#34; &#62;
</code></pre>
<p>Assume all encoded HTML is "valid" (no weird malformed XSS trickery) and assume that we don't need to follow any HTML sanitization best practices. I just need the simplest regex that will match A) above but not B).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1115075/copying-text-from-a-textbox-in-c/1115560#11155600Answer by Coding the Wheel for Copying text from a textbox in C++Coding the Wheel2009-07-12T08:25:47Z2009-07-12T08:25:47Z<p>See <a href="http://www.codingthewheel.com/archives/how-i-built-a-working-online-poker-bot-7" rel="nofollow">How I Built a Working Online Poker Bot: Extracting Text from 3rd-Party Applications</a> for an explanation of the inject-and-subclass techniques mentioned by @DeusAduro as well as a couple other techniques for the same, such as hooking the GDI text-output APIs. And of course if it's a standard textbox you can always send a WM_GETTEXT this works even across process boundaries (was designed to work across process boundaries in fact).</p>
http://stackoverflow.com/questions/1115464/msvc-union-vs-class-struct-with-inline-friend-operators/1115518#11155180Answer by Coding the Wheel for MSVC: union vs. class/struct with inline friend operatorsCoding the Wheel2009-07-12T07:59:23Z2009-07-12T08:09:52Z<p>You need to declare those friend function in the enclosing scope, as once you declare them within the class, they're no longer visible in the external scope. So either move the function body out of the class as avakar said, or keep them in the class and add the following line to reintroduce the name into the enclosing scope:</p>
<pre><code>extern const buggedUnion operator-(const buggedUnion& A, const buggedUnion&B);
int main()
{
...etc
</code></pre>
<p>Hope this helps. Not sure whether it's a bug but it appears (?) to me to be correct behavior, now implemented correctly, which many compilers used to interpret differently. See: --ffriend-injection in <a href="http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html</a>.</p>
http://stackoverflow.com/questions/1115357/where-can-i-get-a-list-of-all-build-properties-in-visual-studio/1115460#11154602Answer by Coding the Wheel for Where can I get a list of all build properties in Visual Studio?Coding the Wheel2009-07-12T07:04:49Z2009-07-12T07:04:49Z<p>These properties can also be defined by 3rd-party tools so to get the complete list I just use (in a C++ project for example): Properties -> Configuration Properties -> General -> then on the Output or Intermediate Directory drop down choose Edit... and you should see a list of all defined properties.</p>
http://stackoverflow.com/questions/1113167/can-one-know-how-large-a-factorial-would-be-before-calculating-it/1113202#11132021Answer by Coding the Wheel for Can one know how large a factorial would be before calculating it?Coding the Wheel2009-07-11T08:01:47Z2009-07-11T08:01:47Z<p>Well about four people have mentioned Stirling so... another option is a LUT storing the number of digits for each of the first N factorials. Assuming 4 bytes for the integer and 4 bytes for the number of digits, you could store the first 1,000,000 factorials in around 8MB.</p>
http://stackoverflow.com/questions/1113095/from-c-tools-to-trying-to-be-exposed-to-modern-tools/1113187#11131871Answer by Coding the Wheel for From C++ Tools to.... ? Trying to be exposed to modern toolsCoding the Wheel2009-07-11T07:48:33Z2009-07-11T07:48:33Z<p>Well I think you answered your own question. Given your background in C++/Windows, there's no question that exposure to two of the richest languages/toolsets/communities on the market - .NET and Java - will be a win. And the cleanliness of managed language tools vis a vis their native counterparts really allows those tools to focus on problem solving rather than the minutiae of dealing with DLL exports and 7 flavors of native string types.</p>
http://stackoverflow.com/questions/867879/postgresql-data-connection-server-explorer-in-visual-studio-2008/1113172#11131721Answer by Coding the Wheel for PostgreSQL Data Connection/Server Explorer in Visual Studio 2008Coding the Wheel2009-07-11T07:37:59Z2009-07-11T07:37:59Z<p>Npgsql is a .NET provider for PostgreSQL. Whether or not a given provider integrates with Server Explorer depends on whether it supports <a href="http://msdn.microsoft.com/en-us/library/ms379576.aspx" rel="nofollow">DDEX</a>, which Npgsl as of now does not, but <a href="http://npgsql.projects.postgresql.org/roadmap.html" rel="nofollow">this support is planned for future versions</a>.</p>
<p>However, if all you want to do is to be able to browse a PostgreSQL database in Server Explorer, you can do this by installing the <a href="http://psqlodbc.projects.postgresql.org/" rel="nofollow">psqlODBC</a>, the PostgreSQL ODBC driver, and connecting via the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6ccd8427-1017-4f33-a062-d165078e32b1&displaylang=en" rel="nofollow">.NET Framework Data Provider for ODBC</a>.</p>
<p><img src="http://www.codingthewheel.com/image.axd?picture=postgre%5Fsql%5Fserver%5Fexplorer.png" alt="alt text" /></p>
<p>Also, I should mention that Npgsql DOES have some <a href="http://npgsql.projects.postgresql.org/docs/manual/UserManual.html" rel="nofollow">design-time integration with Visual Studio</a> - for example you can use NpgsqlConnection objects from the toolbar and so forth.</p>
http://stackoverflow.com/questions/1113012/activex-for-browser-which-one-should-be-choose-vb6-or-net/1113027#11130271Answer by Coding the Wheel for ActiveX for Browser. Which one should be choose VB6 or .NET?Coding the Wheel2009-07-11T05:32:46Z2009-07-11T05:32:46Z<p>You can implement an ActiveX control in .NET but you'll need .NET on the client machine. A "cleaner" ActiveX control can be built with VB, C++ w/ MFC, or C++ w/ ATL, or any other language that's COM binary-compatible.</p>
http://stackoverflow.com/questions/934627/how-to-tell-the-preprocessor-to-search-for-a-particular-folder-for-header-files/934653#9346530Answer by Coding the Wheel for How to tell the preprocessor to search for a particular folder for header files, when I say #include <xyz.h>Coding the Wheel2009-06-01T12:39:36Z2009-06-01T12:39:36Z<p>In the project settings (under C/C++ in VS2005/2008) there's an option for "additional include directories". You can add the folders containing your header files here, using relative paths.</p>
<p>You can also do this at the IDE level in Tools -> Options -> Projects and Solutions -> VC++ Directories -> Include Files. Typically this method is reserved for headers included as part of a formal library. The first option is typically preferred as it's portable (you can ship your project file to another developer and, provided you use relative/macro'd paths, they can build the project as-is).</p>
http://stackoverflow.com/questions/790668/np-hard-algorithmic-complexity-of-online-poker-collusion-detection5NP-Hard? Algorithmic complexity of online poker collusion detection?Coding the Wheel2009-04-26T11:22:46Z2009-05-02T02:25:30Z
<p>What's the best way to describe the algorithmic complexity of collusion detection for a ten-million-player online poker site?</p>
<p>Assume (I don't think these assumptions make much difference so feel free to ignore them, but just to clarify):</p>
<ul>
<li>That the site has 10,000,000 registered users.</li>
<li>That these players have played a total of 5 billion hands.</li>
<li>That the only information you're given is the "master hand history database" for the site, containing all player hole cards and betting actions for each hand.</li>
<li>In other words, you may NOT take shortcuts such as examining IP addresses, looking for unusual rake/profit patterns, and so forth.</li>
<li>Assume you are given a function which, when passed a group of exactly N (where N is between 2 and 10) players, returns TRUE if ALL of the players in the group have colluded TOGETHER. If some but not all of the players are colluders, the function returns FALSE. A return value of TRUE is made with (for example) 75% confidence.</li>
</ul>
<p>Your job is to produce an exhaustive list of every player who's colluded, along with a complete list of the players he's colluded with. I have recently heard this problem described as NP-hard but is this accurate? Sometimes we call things "NP" or "NP-hard" that are merely "hard".</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/380798/x86-possible-to-debug-break-when-a-particular-pointer-to-string-is-pushed-on-the1x86: Possible to debug-break when a particular pointer-to-string is pushed on the stack?Coding the Wheel2008-12-19T12:02:15Z2009-05-01T17:28:59Z
<p>Hi,</p>
<p>I am debugging a third-party DLL for which I don't have the source code. This DLL maintains a pool of strings. I want to trap the earliest occurrence at which one of these strings is passed into a function...any function at all...</p>
<p>In other words, I want to detect when a pointer-to-a-null-terminated-string having a certain format is pushed onto the stack...by anybody, and I want to execute a Debug Break when that occurs.</p>
<p>I know you can set a "break-on-access" breakpoint which will trigger when the CPU reads/writes/executes a particular address. What I want is similar to this: for each string pushed onto the stack, I want to test it against a certain format, and if it matches, execute the break.</p>
<p>Using WinDbg, OllyDb, VS2008, whatever..any ideas?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/790553/thread-safe-c-stack/790712#7907120Answer by Coding the Wheel for Thread-safe C++ stackCoding the Wheel2009-04-26T11:54:12Z2009-04-26T11:54:12Z<p>There is no built-in mechanism to support this in C++ nor in the Boost libraries (note: some people have written <a href="http://svn.int64.org/svnroot/int64/snips/lockfree/" rel="nofollow">thread-safe stacks/etc. in the Boost style</a>). You'll have to borrow some code or cook in your own synchronization.</p>
<p>Note that your case probably calls for a single-writer multiple-reader guard (SWMRG) in which multiple writer threads can access the stack (but only one at a given point in time) and in which multiple readers can access the stack (many at a given point in time). Richter has the <a href="http://ymei.freeshell.org/gopher/Book/Programming%20Applications%20for%20MS%20Windows%204thed/ch10d.htm" rel="nofollow">reference implementation</a>.</p>
http://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c/785169#7851690Answer by Coding the Wheel for How do I implement a Bézier curve in C++?Coding the Wheel2009-04-24T09:33:22Z2009-04-24T09:33:22Z<ul>
<li><p>If you just want to display a Bezier curve, you can use something like <a href="http://msdn.microsoft.com/en-us/library/dd162811.aspx" rel="nofollow">PolyBezier</a> for Windows.</p></li>
<li><p>If you want to implement the routine yourself, you can find <a href="http://www.google.com/search?q=linear%2Binterpolation%2BC%2B%2B" rel="nofollow">linear interpolation code</a> all over the Intarnetz.</p></li>
<li><p>I believe the <a href="http://boost.org" rel="nofollow">Boost libraries</a> have support for this. Linear interpolation, not Beziers specifically. Don't quote me on this, however.</p></li>
</ul>
http://stackoverflow.com/questions/784617/can-it-be-morally-defensible-to-release-a-program-which-games-an-mmorpg/785133#7851336Answer by Coding the Wheel for Can it be morally defensible to release a program which games an MMORPG?Coding the Wheel2009-04-24T09:21:04Z2009-04-24T09:21:04Z<p>I've been building (but never selling) bots for online poker and chess for over a decade (insert promotional web link here) so this question caught my attention. I agree with @Simucal in that you need to tread lightly, especially where MMORPG's are concerned. Blizzard in particular has a draconian stance towards automation.</p>
<p><a href="http://www.rootkit.com/blog.php?newsid=358" rel="nofollow">4.5 million copies of EULA-compliant spyware</a></p>
<p>Then again, <strong>the idea that a private company's TOS/EULA = LAW is a bit of herdthink</strong>. The moreso when that company markets to a worldwide audience across international borders. This introduces additional complexities into the TOS/EULA, which is already a vague piece of legalistic verbiage in the first place. The common practice is to structure the TOS/EULA to make it as aggressive, all-encompassing, and wide-reaching as possible. This is just good legal sense. It doesn't necessarily mean that every line of the TOS is legally binding. A TOS is a deterrent and the company will insert whatever language they think they can get away with, and hope it holds up when/if it's tested in court.</p>
<p>Nothing wrong with this.</p>
<p>At the same time, building a bot is, in and of itself, neither morally or ethically wrong. There's a very strong and convincing argument to be made that provided your bot doesn't actually "hack the servers", <strong>you have every right to run whatever piece of software you like on your machine in the privacy of your home</strong>. This is especially the case when the servers are inundated with bots anyway, so by not running a bot you put yourself at a disadvantage. Everquest PVP (for example) has been dominated by botting pretty much since the beginning.</p>
<p>Anywhere, there are two important criteria to consider:</p>
<ul>
<li>Does the bot depend on information which other player's don't have?</li>
<li>Does the bot enable superhuman reactions, stamina, or coordination?</li>
</ul>
<p>This puts wallhacks (unfair information) and aimbots (superhuman reaction) firmly in the "unfair/cheating" category. On the other hand, <strong>a simple farmbot is most probably NOT cheating</strong>, because the bot doesn't have access to any insider information and it doesn't allow you to do something you couldn't otherwise have done. You could, if you wanted to, sit there for 10 hours a day and farm ore or roots or whatever. It's not much fun, but you could easily do so.</p>
<p>This is a good acid test for whether your use of automation has crossed the line. Trying to cheat people is a bad idea. But writing a bot to essentially ward off carpal tunnel is understandable, and it can actually be a rewarding project.</p>
<p>But again, I wouldn't advise actually <strong>selling</strong> a bot. Because if you make any money on it, you open yourself up to the sort of retaliation @simucal mentioned.</p>
http://stackoverflow.com/questions/754355/cross-platform-generic-text-processing-in-c-c2Cross-Platform Generic Text Processing in C/C++Coding the Wheel2009-04-16T00:42:46Z2009-04-16T10:22:21Z
<p>Hi,</p>
<p>What's the current best practice for handling generic text in a platform independent way? </p>
<p>For example, on Windows there are the "A" and "W" versions of APIs. Down at the C layer we have the "_tcs" functions (like _tcscpy) which map to either "wcscpy" or "strcpy". And in the STL I've frequently used something like:</p>
<pre><code>typedef std::basic_string<TCHAR> tstring;
</code></pre>
<p>What issues if any arise from these sorts of patterns on other systems?</p>
http://stackoverflow.com/questions/236632/most-succinct-linq-to-sql-for-taking-count-of-either-side-of-many-to-many2Most succinct LINQ To SQL for taking COUNT(*) of either side of many-to-many?Coding the Wheel2008-10-25T16:17:43Z2009-03-09T09:54:13Z
<p>Please help me with a sanity check. Assuming a many-to-many relationship:</p>
<p><img src="http://www.codingthewheel.com/pics/many_to_many.gif" alt="Post, PostTagAssoc, Tag" /></p>
<p>What's the most succinct way (using LINQ to SQL) to get a result set showing, for <strong>each</strong> tag (or post), the aggregate number of posts (or tags) assigned to it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/431686/windows-vista-desaturated-grayscale-ui1Windows Vista Desaturated: Grayscale UICoding the Wheel2009-01-10T20:29:42Z2009-02-23T20:49:59Z
<p>Hi,</p>
<p>Occasionally working in Windows Vista the O.S. will desaturate the screen, rendering all colors as grayscale. <strong>Is there a way to do this programatically?</strong> Failing that, is there a way to do it by tweaking Vista settings?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/292186/finding-dll-function-parameters/293638#2936382Answer by Coding the Wheel for Finding Dll Function ParametersCoding the Wheel2008-11-16T07:36:26Z2008-11-16T07:36:26Z<p>You need to disassemble the application using, as Paul noted, something like IDA Pro (or the free version of the same).</p>
<p>A good introductory resource is the Wikibook, <a href="http://en.wikibooks.org/wiki/X86_Disassembly" rel="nofollow">x86 Disassembly</a>. Specifically, take a look at the section on <a href="http://en.wikibooks.org/wiki/X86_Disassembly/Functions_and_Stack_Frames" rel="nofollow">functions and stack frames</a>. Deducing function parameters can be straightforward for simple functions taking a few parameters of standard type.</p>
<p>Probably the best way to get started with this sort of thing is to create a small test DLL, create a few functions with known parameters, and then disassemble your DLL to see the patterns. Learn disassembly from your own functions (for which you have the source code and know the full signature) rather than plunging into disassembling third-party stuff.</p>
http://stackoverflow.com/questions/223363/asp-net-mvc-best-way-to-get-form-checkboxes-into-many-to-many-db-assoc-table-wit6ASP.NET MVC: Best way to get form checkboxes into many-to-many DB assoc table with LINQ To SQL?Coding the Wheel2008-10-21T20:25:26Z2008-11-14T19:42:38Z
<p>Hi,</p>
<p>I have an ASP.NET MVC view which contains checkboxes for user-defined categories.</p>
<pre><code><td><% foreach (Category c in (List<Category>)ViewData["cats"]) {
if (selCats.ContainsKey(c.ID)) { %>
<input name="CategoryIDs" type="checkbox" value="<%=c.ID %>" checked="checked" />&nbsp;<%= c.Name%><% }
else { %>
<input name="CategoryIDs" type="checkbox" value="<%=c.ID %>" />&nbsp;<%= c.Name%> <% } %>
<% } %>
</td>
</code></pre>
<p>The form is posted to the following controller action:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, int [] CategoryIDs)
{
PostsDataContext db = new PostsDataContext();
var post = db.Posts.Single(p => p.ID == id);
UpdateModel(post, new[] { "Title", "Subtitle", "RawContent", "PublishDate", "Slug" });
db.SubmitChanges();
return Redirect("/archives/" + post.Slug);
}
</code></pre>
<p>The form checkboxes will be converted to an array of integer IDs "CategoryIDs", each representing a selected category. I then want to put these into a association table containing two columns: PostID and CategoryID. This is used to set up a many-to-many association between Posts and Categories.</p>
<p>Currently I am brute-forcing it: looping through the categories, and for each one, adding a row to the association table containing the category ID, and the ID of the post to which it belong.</p>
<p>But I'm wondering if there's a cleaner way to do this automagically in the context of ASP.NET MVC and LINQ to SQL?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/254787/how-to-develop-shippable-components-for-asp-net-mvc/254802#2548020Answer by Coding the Wheel for How to develop "shippable" components for ASP.NET MVC?Coding the Wheel2008-10-31T20:13:10Z2008-10-31T20:13:10Z<p>ASP.NET MVC fully supports custom controls and user controls in addition to Html helpers. Nothing stops you from developing a custom control (for a fancy grid, let's say), encapsulating it in an assembly, and shipping it. Am I missing the point of the question?</p>
http://stackoverflow.com/questions/247093/edit-registry-values/247323#2473231Answer by Coding the Wheel for Edit Registry ValuesCoding the Wheel2008-10-29T15:48:40Z2008-10-29T15:48:40Z<p>RegSetValueEx returns a descriptive error code. You can get a human-readable message out of this error code using FormatMessage and possibly via the Error Lookup tool, or the @ERR facility in VS. The code you have looks correct so see what the error message tells you.</p>
http://stackoverflow.com/questions/247167/exclusive-or-in-regular-expression/247212#2472120Answer by Coding the Wheel for Exclusive Or in Regular ExpressionCoding the Wheel2008-10-29T15:20:05Z2008-10-29T15:20:05Z<p>Can you clarify what text you are matching against? The regex you supplied matches:</p>
<ul>
<li>/foo/</li>
<li>/bar/</li>
</ul>
<p>But does NOT match:</p>
<ul>
<li>/foobar/</li>
</ul>
<p>Which seems to be the behavior you want. Just curious.</p>
http://stackoverflow.com/questions/247045/how-do-i-get-footer-content-on-a-master-page-to-push-down-when-main-content-req/247077#2470773Answer by Coding the Wheel for How do I get 'footer' content on a master page to push down when main content requires it?Coding the Wheel2008-10-29T14:46:34Z2008-10-29T14:46:34Z<p>This doesn't sound like a master page issue, this sounds like an HTML/CSS layouting issue. What you haven't stated is whether your DIVs are absolutely positioned or whether they occur within page flow.</p>
<p>Normally, assuming you're NOT positioning those DIVs absolutely, the header DIV will be statically sized, the footer will be statically sized, but the content DIV should be allowed to stretch vertically to fit the content. This in turn pushes your footer DIV below the last line of content, which is what you want. But in order for that to happen, we usually omit "position: absolute;" from the footer DIV. It needs to flow.</p>
<p>Your question is basically asking, "I have 3 DIVs, one on top of the other. They're not pushing each other downward appropriately."</p>
<p>The answer is almost always a rogue "position: absolute;" tag, a margin issue, or maybe you're using a "page container DIV" that's not set appropriately to expand as its interior DIVs expand.</p>
http://stackoverflow.com/questions/13786/should-we-support-ie6-anymore/13796#13796Comment by Coding the Wheel on Should we support IE6 anymore?Coding the Wheel2009-10-14T20:32:26Z2009-10-14T20:32:26ZThank God~ for the love of all things holy let's get IE6 into single digit percentages SOON.http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1148864#1148864Comment by Coding the Wheel on Surprising software vulnerabilities or exploits?Coding the Wheel2009-07-23T05:17:42Z2009-07-23T05:17:42ZAdobe Photoshop just makes it so easy...too easy...http://stackoverflow.com/questions/1169026/the-type-of-namespace-name-control-could-not-be-found-are-you-missing-a-using/1169029#1169029Comment by Coding the Wheel on The type of namespace name 'Control' could not be found (are you missing a using directive or assembly reference?)Coding the Wheel2009-07-23T00:50:42Z2009-07-23T00:50:42ZYeah I mean just make sure you have the reference to the DLL and you've got the using directive or access it via its fully-qualified name.http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1148899#1148899Comment by Coding the Wheel on Surprising software vulnerabilities or exploits?Coding the Wheel2009-07-19T00:01:39Z2009-07-19T00:01:39ZAgree +1. Advanced rootkitting stuff is like taking the red pill in the Matrix.http://stackoverflow.com/questions/1148740/best-editor-for-c-development-under-windowsComment by Coding the Wheel on Best Editor For C++ Development Under WindowsCoding the Wheel2009-07-18T23:17:11Z2009-07-18T23:17:11ZNathan, I would add that Visual Studio supports editor plugins, so in any case you should certainly use the VS IDE if you're doing C++ development for Windows. The question is what editor motif do you want within that IDE.http://stackoverflow.com/questions/1143351/regex-for-encoded-htmlComment by Coding the Wheel on Regex for Encoded HTMLCoding the Wheel2009-07-17T15:22:02Z2009-07-17T15:22:02ZWe allow users to submit HTML via comments, so we encode everything using AntiXSS (which returns decimal char references) and then selectively decode the safe stuff using a whitelist-based approach.http://stackoverflow.com/questions/1143351/regex-for-encoded-html/1143378#1143378Comment by Coding the Wheel on Regex for Encoded HTMLCoding the Wheel2009-07-17T15:05:53Z2009-07-17T15:05:53ZThanks guys. Great answers. I have no idea which one of these to mark as answered now. :)http://stackoverflow.com/questions/1143351/regex-for-encoded-html/1143396#1143396Comment by Coding the Wheel on Regex for Encoded HTMLCoding the Wheel2009-07-17T13:59:57Z2009-07-17T13:59:57ZI upvoted this as this was going to be my 2nd solution but I'd prefer not to have to encode/decode and possibly re-encode the HTML if it has those extra attributes. Thanks for the help!http://stackoverflow.com/questions/1143351/regex-for-encoded-html/1143382#1143382Comment by Coding the Wheel on Regex for Encoded HTMLCoding the Wheel2009-07-17T13:58:34Z2009-07-17T13:58:34ZThat's what I was looking for - negative lookahead. Thanks~http://stackoverflow.com/questions/1143351/regex-for-encoded-html/1143378#1143378Comment by Coding the Wheel on Regex for Encoded HTMLCoding the Wheel2009-07-17T13:49:36Z2009-07-17T13:49:36ZBut correct me if I'm wrong: when you use the .* even if you make it non-greedy with .*?, it will capture everything up until the last quote in the onmouseover attribute, matching both of the expressions. This is exactly the problem I am having!http://stackoverflow.com/questions/1115464/msvc-union-vs-class-struct-with-inline-friend-operators/1115518#1115518Comment by Coding the Wheel on MSVC: union vs. class/struct with inline friend operatorsCoding the Wheel2009-07-12T08:14:36Z2009-07-12T08:14:36ZWell it appears I'm outnumbered. Luckily this is the top priority on the MS development stack, so if it is a bug, we can all rest easy knowing it will be fixed in just a couple days... :)http://stackoverflow.com/questions/1115464/msvc-union-vs-class-struct-with-inline-friend-operators/1115484#1115484Comment by Coding the Wheel on MSVC: union vs. class/struct with inline friend operatorsCoding the Wheel2009-07-12T08:06:52Z2009-07-12T08:06:52ZWell, no, I wouldn't bet the farm on it. But I do note that according to the GCC docs "However, in ISO C++ a friend function which is not declared in an enclosing scope can only be found using argument dependent lookup." <a href="http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html" rel="nofollow">gcc.gnu.org/onlinedocs/gcc/…</a> But who knows..
http://stackoverflow.com/questions/1115464/msvc-union-vs-class-struct-with-inline-friend-operators/1115484#1115484Comment by Coding the Wheel on MSVC: union vs. class/struct with inline friend operatorsCoding the Wheel2009-07-12T07:55:19Z2009-07-12T07:55:19ZI never said they are members of the class. I said that friend functions whose bodies are placed inside the class are no longer visible in the enclosing scope, even though yes, the function itself lives in the enclosing scope. This is a name-lookup issue. The code in the examples above is malformed though lenient compilers will accept it.http://stackoverflow.com/questions/1115464/msvc-union-vs-class-struct-with-inline-friend-operators/1115484#1115484Comment by Coding the Wheel on MSVC: union vs. class/struct with inline friend operatorsCoding the Wheel2009-07-12T07:49:55Z2009-07-12T07:49:55ZThis is NOT a bug in Visual C++ this is the correct behavior as per spec. Friend functions defined inside a class have no visibility outside the class, and should have none.http://stackoverflow.com/questions/1113666/c-visual-studio-2008-capable-of-conditional-compilation/1113670#1113670Comment by Coding the Wheel on C# - Visual Studio 2008 capable of Conditional Compilation?Coding the Wheel2009-07-11T13:18:45Z2009-07-11T13:18:45ZNothing wrong with an occasional conditional compilation flag. I agree when you see more than a handful it's confusing, though