Coding the Wheel
|
Registered User
|
If you're reading this you might as well take a break from SO (come on, you know you've been spending unhealthy amounts of time here) and visit me at my blog. Especially if you play poker.
http://www.codingthewheel.com
|
|
Oct 14 |
comment |
Should we support IE6 anymore? Thank God~ for the love of all things holy let's get IE6 into single digit percentages SOON. |
|
Aug 2 |
awarded | ● Yearling |
|
Jul 31 |
revised |
Programatically Hide Field in PropertyGrid added 4 characters in body |
|
Jul 31 |
answered | Programatically Hide Field in PropertyGrid |
|
Jul 23 |
accepted | How to repeat a mouse click in .NET |
|
Jul 23 |
answered | How to repeat a mouse click in .NET |
|
Jul 23 |
comment |
Surprising software vulnerabilities or exploits? Adobe Photoshop just makes it so easy...too easy... |
|
Jul 23 |
answered | Win32 Message Handler Error Propagation |
|
Jul 23 |
comment |
The type of namespace name ‘Control’ could not be found (are you missing a using directive or assembly reference?) Yeah 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. |
|
Jul 22 |
accepted | Can I change the text of a label in a masterpage when loading a content page? |
|
Jul 19 |
answered | Can I change the text of a label in a masterpage when loading a content page? |
|
Jul 19 |
answered | Creating search engine friendly URL’s in ASP.NET MVC |
|
Jul 19 |
comment |
Surprising software vulnerabilities or exploits? Agree +1. Advanced rootkitting stuff is like taking the red pill in the Matrix. |
|
Jul 18 |
revised |
Surprising software vulnerabilities or exploits? Typo |
|
Jul 18 |
awarded | ● Civic Duty |
|
Jul 18 |
answered | Surprising software vulnerabilities or exploits? |
|
Jul 18 |
comment |
Best Editor For C++ Development Under Windows Nathan, 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. |
|
Jul 17 |
accepted | ASP.NET MVC Extension-Less URLS on Shared Hosting? (GoDaddy, etc.) |
|
Jul 17 |
answered | ASP.NET MVC Extension-Less URLS on Shared Hosting? (GoDaddy, etc.) |
|
Jul 17 |
comment |
Regex for Encoded HTML We 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. |
|
Jul 17 |
comment |
Regex for Encoded HTML Thanks guys. Great answers. I have no idea which one of these to mark as answered now. :) |
|
Jul 17 |
comment |
Regex for Encoded HTML I 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! |
|
Jul 17 |
comment |
Regex for Encoded HTML That's what I was looking for - negative lookahead. Thanks~ |
|
Jul 17 |
comment |
Regex for Encoded HTML But 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! |
|
Jul 17 |
asked | Regex for Encoded HTML |
|
Jul 12 |
answered | Copying text from a textbox in C++ |
|
Jul 12 |
comment |
MSVC: union vs. class/struct with inline friend operators Well 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... :) |
|
Jul 12 |
revised |
MSVC: union vs. class/struct with inline friend operators added 191 characters in body |
|
Jul 12 |
comment |
MSVC: union vs. class/struct with inline friend operators Well, 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." gcc.gnu.org/onlinedocs/gcc/… But who knows.. |
|
Jul 12 |
answered | MSVC: union vs. class/struct with inline friend operators |
|
Jul 12 |
comment |
MSVC: union vs. class/struct with inline friend operators I 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. |
|
Jul 12 |
comment |
MSVC: union vs. class/struct with inline friend operators This 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. |
|
Jul 12 |
answered | Where can I get a list of all build properties in Visual Studio? |
|
Jul 11 |
comment |
C# - Visual Studio 2008 capable of Conditional Compilation? Nothing wrong with an occasional conditional compilation flag. I agree when you see more than a handful it's confusing, though |
|
Jul 11 |
comment |
Can one know how large a factorial would be before calculating it? Well, you'd calculate all N factorials from 1! to N! in a single consecutive pass. So you'd be looking at N total multiplications and at some point you'd bog down in heavy-number arithmetic but should this take decades? What's the correlation between N and processing time? |
|
Jul 11 |
comment |
Special Characters in web.config file In fairness, if a person fell out of bed tomorrow and decided to do .NET programming, the web.config/app.config would be their first exposure to XML. Nothing wrong with that. It's issues like this that force people to dabble in XML in the first place. |
|
Jul 11 |
answered | Can one know how large a factorial would be before calculating it? |
|
Jul 11 |
answered | From C++ Tools to… ? Trying to be exposed to modern tools |
|
Jul 11 |
answered | PostgreSQL Data Connection/Server Explorer in Visual Studio 2008 |
|
Jul 11 |
accepted | ActiveX for Browser. Which one should be choose VB6 or .NET? |
|
Jul 11 |
answered | ActiveX for Browser. Which one should be choose VB6 or .NET? |
|
Jul 10 |
comment |
Converting PostgreSQL database to MySQL The problem with pg2mysql: cutting and pasting an 800MB text file into a browser and posting it remotely. The other problem with pg2myql: downloading the source and running it locally, and passing an 800MB string into the converter. |
|
Jun 4 |
awarded | ● Nice Answer |
|
Jun 1 |
comment |
How to programmatically move a window slowly, as if the user were doing it? He's obviously trying to simulate authentic human input for some sort of intricate real-money online poker botting rig w/ enraged leprechauns. |
|
Jun 1 |
answered | How to tell the preprocessor to search for a particular folder for header files, when I say #include <xyz.h> |
