User Nick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:10:59Zhttp://stackoverflow.com/feeds/user/30470http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1758830/is-ifobj-obj-nil-correct-and-necessary/1758857#1758857-1Answer by Nick for Is if(obj && obj != nil) correct and necessary?Nick2009-11-18T20:32:38Z2009-11-18T20:32:38Z<p>if (obj == nil) then if (obj) will evaluate false. You don't need both.</p>
http://stackoverflow.com/questions/1616448/broad-phase-collision-detection-methods/1703768#17037681Answer by Nick for Broad-phase collision detection methods?Nick2009-11-09T20:57:27Z2009-11-09T20:57:27Z<p>You might want to check out what Scott did in <a href="http://code.google.com/p/chipmunk-physics/" rel="nofollow">Chipmunk</a> with spacial hashing. The source is freely available. I think he used a similar technique to <a href="http://www.box2d.org/" rel="nofollow">Box-2D</a> if not for collision, definitely for contact persistence. </p>
http://stackoverflow.com/questions/1689590/suggestions-for-a-fast-two-way-encrypt0Suggestions for a fast two way encrypt?Nick2009-11-06T18:59:06Z2009-11-06T19:29:10Z
<p>Can someone suggest a fast 2 way encryption algorithm for long ints?</p>
<p>My candidates are:</p>
<ul>
<li>AES: the Advanced Encryption Standard specified by NIST FIPS-197.</li>
<li>BLOWFISH: the Blowfish algorithm defined by Bruce Schneier.</li>
<li>DES: the Data Encryption Standard algorithm defined by NIST FIPS-46-3.</li>
<li>DESEDE: the "Triple DES" algorithm defined by NIST FIPS-46-3. </li>
</ul>
<p><b>Edit - </b></p>
<p>Speed is more of a factor than security. The actual request was to "obfuscate" ids being passed over internal web services so in the event that an id is ever exposed one could not guess other ids by adding 1. (an argument for UUID keys over auto-increment longs??)</p>
http://stackoverflow.com/questions/1675147/coldfusion-xml-formatting-a-string-returned-from-api-call/1675240#16752401Answer by Nick for Coldfusion - XML formatting a string returned from API callNick2009-11-04T17:05:09Z2009-11-04T17:05:09Z<pre><code>replace(xml, '&','&amp;','all');
</code></pre>
<p>should allow it to be validated. You can also use a DTD to define these characters but as you stated you don't always know that the characters will be - I would probably just do the replace. </p>
http://stackoverflow.com/questions/1652183/how-should-i-save-and-load-user-configuration-files-for-a-game-in-c/1652397#16523971Answer by Nick for How should I save and load user configuration files for a game in C++?Nick2009-10-30T21:23:32Z2009-10-30T21:23:32Z<p>I am using Lua which is light weight and works well <a href="http://www.lua.org/pil/25.html" rel="nofollow">as a configuration language</a>. As years went by I started moving more and more out to the Lua scripts until everything but the core engine was coded in Lua. In the latest iteration even the game dynamics are coded in Lua using callbacks with very little hit on performance. I'm not saying you <i>should</i> do this but Lua will let you grow and is very easy to implement in c/c++.</p>
http://stackoverflow.com/questions/1638602/web-development-should-i-learn-php/1638668#16386680Answer by Nick for Web development: Should I learn PHP?Nick2009-10-28T17:08:23Z2009-10-28T17:08:23Z<p>PHP is not a very difficult language learn. If you have used c in your c++ work, the base libraries should be very familiar. If you take the good practices you hopefully have learned in java and try to apply them in PHP you will avoid most of its pitfalls. The biggest reason (IMO) that PHP has the bad name is that many new programmers hack together PHP monstrosities based on copy pasting code from various examples without having any grasp on good application design or security practices.</p>
http://stackoverflow.com/questions/1638437/given-an-angle-and-length-how-do-i-calculate-the-coordinates/1638461#16384614Answer by Nick for Given an angle and length, how do I calculate the coordinatesNick2009-10-28T16:38:02Z2009-10-28T16:45:25Z<pre><code>// edit to add conversion
#define radian2degree(a) (a * 57.295779513082)
#define degree2radian(a) (a * 0.017453292519)
x = start_x + len * cos(angle);
y = start_y + len * sin(angle);
</code></pre>
http://stackoverflow.com/questions/1608318/is-bool-a-native-c-type/1608351#16083511Answer by Nick for Is bool a native C type?Nick2009-10-22T16:16:29Z2009-10-22T16:16:29Z<p><a href="http://en.wikipedia.org/wiki/Stdbool.h" rel="nofollow">stdbool.h</a> was introduced in c99</p>
http://stackoverflow.com/questions/1596770/what-method-is-best-for-coldfusion-8-trigger-background-page/1596851#15968510Answer by Nick for What method is best for coldfusion 8 trigger background page?Nick2009-10-20T19:40:03Z2009-10-20T19:40:03Z<p>If you are trying to run some sort of task on the file uploaded by the user that the user does not care about you could use an <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=UseGateways_1.html" rel="nofollow">asynchronous gateway call</a> with the SendGatewayMessage function. This will not help you while uploading the file though. As was pointed out uploading via AJAX is at best a hack and much better done through a flash or java solution.</p>
<blockquote>
<p>The ColdFusion CFML event gateway lets
CFML code send a message to CFC
methods asynchronously. This event
gateway lets you initiate processing
by a CFC method without waiting for it
to complete or return a value.</p>
</blockquote>
http://stackoverflow.com/questions/1594963/sending-mass-email-campaign-via-asp-net/1595281#15952810Answer by Nick for Sending mass email campaign via ASP.NETNick2009-10-20T15:02:07Z2009-10-20T15:02:07Z<p>You can help your reputation on some email providers by contacting them and or filling out bulk mail registrations.</p>
<p>This is for yahoo:</p>
<p><a href="http://help.yahoo.com/l/us/yahoo/mail/postmaster/bulkv2.html" rel="nofollow">http://help.yahoo.com/l/us/yahoo/mail/postmaster/bulkv2.html</a></p>
<p>I would not recommend using exchange for anything like this. You will want a separate bulk mail server like Ironport.</p>
<p><a href="http://www.ironport.com/" rel="nofollow">http://www.ironport.com/</a></p>
<p>Otherwise your internal emails will get stuck in the queue with all of your bulk emails which you definitely don't want.</p>
<p>The actual code involved does not have to be that complex. In my case we used an asynchronous task to loop over an email list table in the DB pulling out a batch of 20 or so at a time sending then sleeping for a number of seconds. Email providers do not like receiving hundreds/thousands of emails from a source at one time. Even better if you can stagger the list by providers.</p>
http://stackoverflow.com/questions/1594476/what-bit-shifting-techniques-should-i-be-using/1594954#15949541Answer by Nick for What bit shifting techniques should I be using?Nick2009-10-20T14:21:41Z2009-10-20T14:21:41Z<p>They can be very useful with bit mask enumerations e.g.</p>
<pre><code> enum flags {
IMAGE_FLIP_HORIZONTAL =1 << 0,
IMAGE_FLIP_VERTICAL =1 << 1,
IMAGE_DESATURATE =1 << 2,
IMAGE_INVERT =1 << 3,
IMAGE_NOALPHA =1 << 4
};
</code></pre>
<p>Then you may provide an API which allows </p>
<pre><code>loadImage("pirate.gif", IMAGE_DESATURATE | IMAGE_FLIP_HORIZONTAL);
</code></pre>
<p>If you ever use libpng there is a chance you are using this type of enum. In pngread.c there is a block at the end of the file which uses masks like this to apply transformations:</p>
<pre><code>#if defined(PNG_READ_INVERT_SUPPORTED)
/* invert monochrome files to have 0 as white and 1 as black
*/
if (transforms & PNG_TRANSFORM_INVERT_MONO)
png_set_invert_mono(png_ptr);
#endif
#if defined(PNG_READ_BGR_SUPPORTED)
/* flip the RGB pixels to BGR (or RGBA to BGRA)
*/
if (transforms & PNG_TRANSFORM_BGR)
png_set_bgr(png_ptr);
#endif
#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED)
/* swap the RGBA or GA data to ARGB or AG (or BGRA to ABGR)
*/
if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
png_set_swap_alpha(png_ptr);
#endif
#if defined(PNG_READ_SWAP_SUPPORTED)
/* swap bytes of 16 bit files to least significant byte first
*/
if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
png_set_swap(png_ptr);
#endif
</code></pre>
http://stackoverflow.com/questions/340923/what-is-the-most-readable-appealing-font/341053#34105315Answer by Nick for What is the most readable, appealing font?Nick2008-12-04T15:45:58Z2009-09-10T05:14:08Z<p>Most municipal/government organizations use Helvetica for public signs. It is also the most widely used font in advertising. If you are at all interested in typography I very much recommend <img src="http://tstcpublishing.files.wordpress.com/2007/09/castposterdetail.jpg" alt="the Helvetica Documentary by Gary Hustwit" /></p>
http://stackoverflow.com/questions/1402320/nsmenu-with-ibaction-method-for-clicking-the-menu-header1NSMenu with IBAction method for clicking the menu header?Nick2009-09-09T21:49:44Z2009-09-09T22:13:22Z
<p>How can I capture the selection of a NSMenu header with an IBAction method created in connection with interface builder? I am not sure "header" is the right word so see the image below:</p>
<p><img src="http://physle.com/images/NSMenu.jpg" alt="alt text" /></p>
<p>Is it possible to create an action for this the way you can with the selection of regular NSMenuItems? I can create the relationship in interface builder but the method never fires.</p>
http://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notification3Respond to only the first WM_KEYDOWN notification?Nick2009-09-01T14:28:07Z2009-09-02T18:35:02Z
<p>How can a Win32 application respond to only the first WM_KEYDOWN notification? The MSDN docs claim bit 30 "Specifies the previous key state. The value is 1 if the key is down before the message is sent, or it is zero if the key is up." but bit 30 is always 0 in my WndProc.</p>
<pre><code>case WM_KEYDOWN:
// ToDo - stop multiple notifications for repeating keys
printf("WM_KEYDOWN %i %i", wParam, lParam & 30);
return 0;
</code></pre>
<p>Is <strong>lParam & 30</strong> the wrong way to ask for this? Am I doing something else wrong?</p>
http://stackoverflow.com/questions/420728/to-nda-or-not-to-nda6To NDA or not to NDA?Nick2009-01-07T15:29:35Z2009-08-21T16:22:20Z
<p>Assuming a small off-hours development project that may or may not have market value but which the project owner does not want to open source (or at least not at the moment). What is the proper way to formally state this intention to potential collaborators? Is a non-disclosure agreement over board? I know many people are weary of signing NDA's because they are somewhat ambiguous contracts that have the potential to open up lawsuits. Are there other less legally ensnaring ways to say "don't publish or disclose this code"?</p>
http://stackoverflow.com/questions/1289938/loop-or-sort-for-layered-draw1Loop or sort for layered draw?Nick2009-08-17T19:33:16Z2009-08-18T08:58:01Z
<p>Assuming a collection of objects, each of which needs to be drawn at a specific layer, at what point would it (or ever) be better to sort each object by layer rather than looping multiple times and drawing a layer at each pass? More importantly how would you arrive at this conclusion? Bonus points for a sort algorithm you would use if you would sort?</p>
<pre><code>for (obj = each in collection) {
for (i=0; i<=topLayer; i++) {
if (obj.layer == i) {
obj.draw()
}
}
}
/* vs. */
function layerCompare(obj1, obj2) {
return (obj1.layer > obj2.layer)
}
collection.sort(layerCompare)
for (obj = each in collection) {
obj.draw()
}
</code></pre>
http://stackoverflow.com/questions/1239998/how-can-i-remove-all-my-changes-in-my-svn-working-directory/1240022#12400221Answer by Nick for How can I remove all my changes in my SVN working directoryNick2009-08-06T16:25:24Z2009-08-06T16:25:24Z<p><a href="http://svnbook.red-bean.com/en/1.1/re25.html" rel="nofollow">svn revert</a></p>
http://stackoverflow.com/questions/1224708/how-can-i-create-a-secure-lua-sandbox/1228005#12280051Answer by Nick for How can I create a secure Lua sandbox?Nick2009-08-04T14:58:37Z2009-08-04T14:58:37Z<p>This question may be helpful:</p>
<p><a href="http://stackoverflow.com/questions/966162/best-way-to-omit-lua-standard-libraries">http://stackoverflow.com/questions/966162/best-way-to-omit-lua-standard-libraries</a></p>
http://stackoverflow.com/questions/1214370/any-favourite-niche-book/1214544#12145441Answer by Nick for Any favourite Niche book?Nick2009-07-31T19:54:53Z2009-07-31T19:54:53Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131429019" rel="nofollow">The Art of UNIX Programming</a>. I'm not even really a Unix programmer (unless you consider OSX Unix) but this book was very inspiring and well written.</p>
<p>Most if not all of it is online here:
<a href="http://catb.org/esr/writings/taoup/html/" rel="nofollow">http://catb.org/esr/writings/taoup/html/</a></p>
http://stackoverflow.com/questions/1138742/looking-for-a-good-hash-table-implementation-in-c/1138840#11388402Answer by Nick for Looking for a good hash table implementation in CNick2009-07-16T16:43:06Z2009-07-16T16:43:06Z<p>There are some good answers here:<br>
<a href="http://stackoverflow.com/questions/305611/container-class-library-for-c/306461#306461">http://stackoverflow.com/questions/305611/container-class-library-for-c/306461#306461</a></p>
<p><a href="http://sglib.sourceforge.net." rel="nofollow">http://sglib.sourceforge.net.</a>
<br>
<a href="http://cbfalconer.home.att.net/download/" rel="nofollow">http://cbfalconer.home.att.net/download/</a></p>
http://stackoverflow.com/questions/1137638/what-is-the-best-way-to-represent-the-levels-in-a-2d-side-scroller/1137916#11379161Answer by Nick for What is the best way to represent the levels in a 2D side-scroller?Nick2009-07-16T14:15:42Z2009-07-16T14:15:42Z<p>I have used Lua scripts to create the levels for <a href="http://physle.com/index.php?p=games" rel="nofollow">Physle games</a>. They are not as fast to load as a binary format but it makes it much easier to debug and integrate with other tools. Loading levels is also generally not where speed really pays off any way.</p>
http://stackoverflow.com/questions/1127677/from-pc-to-mac-good-or-bad-move-for-my-programming-career/1127758#11277581Answer by Nick for From PC to Mac - Good or bad move for my programming career?Nick2009-07-14T20:17:41Z2009-07-14T20:17:41Z<p>In my opinion learning both will make you a better developer than learning either exclusively. I would say this to a mac only user just as much as to a pc only user. objective-c is a very mature language and cocoa is a powerful framework. They both do things in a very different way than c# and .net so it will give you a new perspective. It is also interesting to try and develop cross platform projects. It will give you a lot of appreciation for standards.</p>
<p>You also do not need to run a vm to go back to your visual studio. You can boot from windows and be running a windows pc.</p>
http://stackoverflow.com/questions/1111539/is-the-endianness-of-format-params-guaranteed-in-riff-wav-files2Is the endianness of format params guaranteed in RIFF WAV files?Nick2009-07-10T19:32:47Z2009-07-10T19:56:58Z
<p>Is the endianness of format params guaranteed in RIFF WAV files? I have <a href="http://www.kvraudio.com/forum/viewtopic.php?t=204782" rel="nofollow">heard</a> <a href="http://ccrma.stanford.edu/courses/422/projects/WaveFormat/" rel="nofollow">conflicting</a> <a href="http://www.thisisnotalabel.com/How-to-Read-and-Write-WAV-Files---in-C-and-VB.php" rel="nofollow">answers</a> to this including references to a <a href="http://www.fileformat.info/format/riff/corion_rifx.htm" rel="nofollow">RIFX</a> file format.</p>
http://stackoverflow.com/questions/1102413/coldfusion-problem-about-onrequest-method-in-application-cfc/1104848#11048483Answer by Nick for coldfusion problem about onRequest method in Application.cfc Nick2009-07-09T16:00:19Z2009-07-10T19:16:45Z<p>Returning true from the onRequestStart method will load the page for you. As dwb stated your 'this' is referring to to the Application.cfc because you have included it from within one of the methods. If you need to refer to the Application use the application scope not 'this', unless you really are inside of the Application.cfc. </p>
http://stackoverflow.com/questions/1092832/how-to-create-a-class-subclass-and-properties-in-lua/1092917#10929172Answer by Nick for How to create a class, subclass and properties in lua?Nick2009-07-07T15:12:11Z2009-07-07T21:24:18Z<p>There are a number of ways you can do it but this is how I do (updated with a shot at inheritance):</p>
<pre><code>function newRGB(r, g, b)
local rgb={
red = r;
green = g;
blue = b;
setRed = function(self, r)
self.red = r;
end;
setGreen = function(self, g)
self.green= g;
end;
setBlue = function(self, b)
self.blue= b;
end;
show = function(self)
print("red=",self.red," blue=",self.blue," green=",self.green);
end;
}
return rgb;
end
purple = newRGB(128, 0, 128);
purple:show();
purple:setRed(180);
purple:show();
---// does this count as inheritance?
function newNamedRGB(name, r, g, b)
local nrgb = newRGB(r, g, b);
nrgb.__index = nrgb; ---// who is self?
nrgb.setName = function(self, n)
self.name = n;
end;
nrgb.show = function(self)
print(name,": red=",self.red," blue=",self.blue," green=",self.green);
end;
return nrgb;
end
orange = newNamedRGB("orange", 180, 180, 0);
orange:show();
orange:setGreen(128);
orange:show();
</code></pre>
<p>I don't implement private, protected, etc. <a href="http://www.lua.org/pil/16.4.html" rel="nofollow">although it is possible</a>.</p>
http://stackoverflow.com/questions/1093312/how-to-validate-characters-only-in-coldfusion-cfform/1093407#10934072Answer by Nick for How to validate characters ONLY in ColdFusion CFForm?Nick2009-07-07T16:35:44Z2009-07-07T16:35:44Z<p>personally I would avoid using the built in coldfusion javascript. You will have much more control if you roll your own and it will give you the ability to display errors in other ways than an alert box.</p>
<pre><code><script>
function checkit() {
var v = document.getElementById("text1").value;
if(!v.match(/^[a-zA-Z]+$/)) {
alert(v + ' contains invalid characters');
return false;
}
return true;
}
</script>
<form onsubmit="return checkit()">
<input type="text" id="text1">
<input type="submit">
</form>
</code></pre>
http://stackoverflow.com/questions/1089121/is-it-possible-somehow-to-exclude-files-with-cfdirectory/1089230#10892301Answer by Nick for Is it possible somehow to exclude files with cfdirectory?Nick2009-07-06T21:09:44Z2009-07-06T21:09:44Z<p>It may be possible to do this in a java object with..</p>
<pre><code>CreateObject("java", "java.io.File");
</code></pre>
<p>..and a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/FilenameFilter.html" rel="nofollow"> filename filter</a></p>
<p>Personally, I think you would be better off just using a query of queries.</p>
http://stackoverflow.com/questions/1071396/how-to-specify-only-some-optional-arguments-when-calling-function-in-coldfusion/1071420#10714202Answer by Nick for How to specify only some optional arguments when calling function in ColdFusion?Nick2009-07-01T21:12:13Z2009-07-01T21:12:13Z<p>if you use named args you have to name the first too</p>
<pre><code><cffunction name="foo" access="public" returntype="any">
<cfargument name="arg1" type="any" required="true" />
<cfargument name="arg2" type="any" required="false" default="arg2" />
<cfargument name="arg3" type="any" required="false" default="arg3" />
<cfreturn arg2 & " " & arg3>
</cffunction>
<cfset b = foo(arg1:1,arg3:2)>
<cfoutput>#b#</cfoutput>
</code></pre>
http://stackoverflow.com/questions/469445/last-words-of-a-programmer/470462#470462307Answer by Nick for Last words of a ??? programmerNick2009-01-22T19:22:42Z2009-07-01T09:09:11Z<p>Pre CSS:</p>
<pre><code> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1055534/how-to-call-functions-in-other-script-files-in-roblox/1059534#10595340Answer by Nick for How to call functions in other script files in Roblox.Nick2009-06-29T17:39:53Z2009-06-29T17:39:53Z<p>I am not familiar with Roblox but you can simply use <code> dofile('myFunctions.lua') </code> to load a file in Lua. Another solution would be to create a <a href="http://www.lua.org/manual/5.1/manual.html#5.3" rel="nofollow">module</a> for your functions.</p>
http://stackoverflow.com/questions/1758564/what-are-function-pointers-used-for-and-how-would-i-use-themComment by Nick on What are function pointers used for, and how would I use them?Nick2009-11-18T20:08:21Z2009-11-18T20:08:21Z<a href="http://stackoverflow.com/questions/840501/how-do-function-pointers-in-c-work/840669#840669" rel="nofollow" title="how do function pointers in c work">stackoverflow.com/questions/840501/…</a>
http://stackoverflow.com/questions/1758564/what-are-function-pointers-used-for-and-how-would-i-use-them/1758581#1758581Comment by Nick on What are function pointers used for, and how would I use them?Nick2009-11-18T20:07:44Z2009-11-18T20:07:44Zusing function pointers in iterators is perfectly valid there is an example here: <a href="http://stackoverflow.com/questions/840501/how-do-function-pointers-in-c-work/840669#840669" rel="nofollow" title="how do function pointers in c work">stackoverflow.com/questions/840501/…</a>
http://stackoverflow.com/questions/1689590/suggestions-for-a-fast-two-way-encrypt/1689651#1689651Comment by Nick on Suggestions for a fast two way encrypt?Nick2009-11-06T19:19:02Z2009-11-06T19:19:02ZOn of the environments will be ColdFusion which does not have built in support for XOR although this is about right. Quick and simple.http://stackoverflow.com/questions/1689590/suggestions-for-a-fast-two-way-encryptComment by Nick on Suggestions for a fast two way encrypt?Nick2009-11-06T19:06:16Z2009-11-06T19:06:16ZI don't need a public key. The requirement is to encrypt ids in a database as they pass between machines. Both machines will have the salt.http://stackoverflow.com/questions/1638437/given-an-angle-and-length-how-do-i-calculate-the-coordinates/1638461#1638461Comment by Nick on Given an angle and length, how do I calculate the coordinatesNick2009-10-29T13:47:27Z2009-10-29T13:47:27ZThis question was about trig not macros vs. inline functions. I was simply pointing out that degree to radian conversion is trivial.http://stackoverflow.com/questions/1551886/using-subversion-in-xcode/1562961#1562961Comment by Nick on Using Subversion in XcodeNick2009-10-20T19:55:28Z2009-10-20T19:55:28ZI think there are times when having a visual client is worthwhile but xcode just does not give you any real gains over the CLI. In fact I haven't really found any great GUI clients for svn on the mac (I'd love to be proven wrong).http://stackoverflow.com/questions/166221/how-can-i-upload-files-asynchronously-with-jquery/1594736#1594736Comment by Nick on How can I upload files asynchronously with JQuery?Nick2009-10-20T14:40:15Z2009-10-20T14:40:15ZI cant decide whether to give this a +1 or -1 http://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notificationComment by Nick on Respond to only the first WM_KEYDOWN notification?Nick2009-10-13T15:09:00Z2009-10-13T15:09:00ZI used: if ((lParam & (1 << 30)) == 0)... although if (lParam & 0x40000000) worked as well if I remember correctly. My choice was based on readability (1 << 30) makes more sense to me than 0x40000000
http://stackoverflow.com/questions/1402320/nsmenu-with-ibaction-method-for-clicking-the-menu-header/1402418#1402418Comment by Nick on NSMenu with IBAction method for clicking the menu header?Nick2009-09-22T12:16:38Z2009-09-22T12:16:38ZI could not end up getting this to work and noticed the following note in the docs: "Special Considerations - Do not modify the structure of the menu or the menu items during this method."http://stackoverflow.com/questions/1402320/nsmenu-with-ibaction-method-for-clicking-the-menu-header/1402418#1402418Comment by Nick on NSMenu with IBAction method for clicking the menu header?Nick2009-09-10T12:01:32Z2009-09-10T12:01:32ZMore complicated than I had hoped for but I'm going to give it a shot.http://stackoverflow.com/questions/1402320/nsmenu-with-ibaction-method-for-clicking-the-menu-headerComment by Nick on NSMenu with IBAction method for clicking the menu header?Nick2009-09-10T11:33:16Z2009-09-10T11:33:16ZThe application wraps a state machine and I want to setState:NSOnState/NSOffState by querying the machine before displaying the menuhttp://stackoverflow.com/questions/764247/why-are-regular-expressions-considered-so-controversial/764716#764716Comment by Nick on Why are regular expressions considered so controversial?Nick2009-09-03T21:31:43Z2009-09-03T21:31:43ZYeah email the address spec is a nasty mess <a href="http://stackoverflow.com/questions/611775/regular-expression-for-valid-email-address-closed" rel="nofollow" title="regular expression for valid email address closed">stackoverflow.com/questions/611775/…</a>http://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notification/1362825#1362825Comment by Nick on Respond to only the first WM_KEYDOWN notification?Nick2009-09-01T14:46:11Z2009-09-01T14:46:11ZYep this works too - thankshttp://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notification/1362824#1362824Comment by Nick on Respond to only the first WM_KEYDOWN notification?Nick2009-09-01T14:36:39Z2009-09-01T14:36:39ZThis worked - thank you. My bit fiddling-fu is a little shaky. What exactly is 0x40000000?http://stackoverflow.com/questions/1289938/loop-or-sort-for-layered-drawComment by Nick on Loop or sort for layered draw?Nick2009-08-18T18:15:29Z2009-08-18T18:15:29ZA lot of good answers here. They are all correct in their own way so picking one is hard.