User Nick - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:10:59Z http://stackoverflow.com/feeds/user/30470 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1758830/is-ifobj-obj-nil-correct-and-necessary/1758857#1758857 -1 Answer by Nick for Is if(obj && obj != nil) correct and necessary? Nick 2009-11-18T20:32:38Z 2009-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#1703768 1 Answer by Nick for Broad-phase collision detection methods? Nick 2009-11-09T20:57:27Z 2009-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-encrypt 0 Suggestions for a fast two way encrypt? Nick 2009-11-06T18:59:06Z 2009-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#1675240 1 Answer by Nick for Coldfusion - XML formatting a string returned from API call Nick 2009-11-04T17:05:09Z 2009-11-04T17:05:09Z <pre><code>replace(xml, '&amp;','&amp;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#1652397 1 Answer by Nick for How should I save and load user configuration files for a game in C++? Nick 2009-10-30T21:23:32Z 2009-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#1638668 0 Answer by Nick for Web development: Should I learn PHP? Nick 2009-10-28T17:08:23Z 2009-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#1638461 4 Answer by Nick for Given an angle and length, how do I calculate the coordinates Nick 2009-10-28T16:38:02Z 2009-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#1608351 1 Answer by Nick for Is bool a native C type? Nick 2009-10-22T16:16:29Z 2009-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#1596851 0 Answer by Nick for What method is best for coldfusion 8 trigger background page? Nick 2009-10-20T19:40:03Z 2009-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#1595281 0 Answer by Nick for Sending mass email campaign via ASP.NET Nick 2009-10-20T15:02:07Z 2009-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#1594954 1 Answer by Nick for What bit shifting techniques should I be using? Nick 2009-10-20T14:21:41Z 2009-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 &lt;&lt; 0, IMAGE_FLIP_VERTICAL =1 &lt;&lt; 1, IMAGE_DESATURATE =1 &lt;&lt; 2, IMAGE_INVERT =1 &lt;&lt; 3, IMAGE_NOALPHA =1 &lt;&lt; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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#341053 15 Answer by Nick for What is the most readable, appealing font? Nick 2008-12-04T15:45:58Z 2009-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-header 1 NSMenu with IBAction method for clicking the menu header? Nick 2009-09-09T21:49:44Z 2009-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-notification 3 Respond to only the first WM_KEYDOWN notification? Nick 2009-09-01T14:28:07Z 2009-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 &amp; 30); return 0; </code></pre> <p>Is <strong>lParam &amp; 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-nda 6 To NDA or not to NDA? Nick 2009-01-07T15:29:35Z 2009-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-draw 1 Loop or sort for layered draw? Nick 2009-08-17T19:33:16Z 2009-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&lt;=topLayer; i++) { if (obj.layer == i) { obj.draw() } } } /* vs. */ function layerCompare(obj1, obj2) { return (obj1.layer &gt; 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#1240022 1 Answer by Nick for How can I remove all my changes in my SVN working directory Nick 2009-08-06T16:25:24Z 2009-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#1228005 1 Answer by Nick for How can I create a secure Lua sandbox? Nick 2009-08-04T14:58:37Z 2009-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#1214544 1 Answer by Nick for Any favourite Niche book? Nick 2009-07-31T19:54:53Z 2009-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#1138840 2 Answer by Nick for Looking for a good hash table implementation in C Nick 2009-07-16T16:43:06Z 2009-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#1137916 1 Answer by Nick for What is the best way to represent the levels in a 2D side-scroller? Nick 2009-07-16T14:15:42Z 2009-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#1127758 1 Answer by Nick for From PC to Mac - Good or bad move for my programming career? Nick 2009-07-14T20:17:41Z 2009-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-files 2 Is the endianness of format params guaranteed in RIFF WAV files? Nick 2009-07-10T19:32:47Z 2009-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#1104848 3 Answer by Nick for coldfusion problem about onRequest method in Application.cfc Nick 2009-07-09T16:00:19Z 2009-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#1092917 2 Answer by Nick for How to create a class, subclass and properties in lua? Nick 2009-07-07T15:12:11Z 2009-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#1093407 2 Answer by Nick for How to validate characters ONLY in ColdFusion CFForm? Nick 2009-07-07T16:35:44Z 2009-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>&lt;script&gt; function checkit() { var v = document.getElementById("text1").value; if(!v.match(/^[a-zA-Z]+$/)) { alert(v + ' contains invalid characters'); return false; } return true; } &lt;/script&gt; &lt;form onsubmit="return checkit()"&gt; &lt;input type="text" id="text1"&gt; &lt;input type="submit"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1089121/is-it-possible-somehow-to-exclude-files-with-cfdirectory/1089230#1089230 1 Answer by Nick for Is it possible somehow to exclude files with cfdirectory? Nick 2009-07-06T21:09:44Z 2009-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#1071420 2 Answer by Nick for How to specify only some optional arguments when calling function in ColdFusion? Nick 2009-07-01T21:12:13Z 2009-07-01T21:12:13Z <p>if you use named args you have to name the first too</p> <pre><code>&lt;cffunction name="foo" access="public" returntype="any"&gt; &lt;cfargument name="arg1" type="any" required="true" /&gt; &lt;cfargument name="arg2" type="any" required="false" default="arg2" /&gt; &lt;cfargument name="arg3" type="any" required="false" default="arg3" /&gt; &lt;cfreturn arg2 &amp; " " &amp; arg3&gt; &lt;/cffunction&gt; &lt;cfset b = foo(arg1:1,arg3:2)&gt; &lt;cfoutput&gt;#b#&lt;/cfoutput&gt; </code></pre> http://stackoverflow.com/questions/469445/last-words-of-a-programmer/470462#470462 307 Answer by Nick for Last words of a ??? programmer Nick 2009-01-22T19:22:42Z 2009-07-01T09:09:11Z <p>Pre CSS:</p> <pre><code> &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1055534/how-to-call-functions-in-other-script-files-in-roblox/1059534#1059534 0 Answer by Nick for How to call functions in other script files in Roblox. Nick 2009-06-29T17:39:53Z 2009-06-29T17:39:53Z <p>I am not familiar with Roblox but you can simply use <code>&nbsp; dofile('myFunctions.lua') &nbsp;</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-them Comment by Nick on What are function pointers used for, and how would I use them? Nick 2009-11-18T20:08:21Z 2009-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/&hellip;</a> http://stackoverflow.com/questions/1758564/what-are-function-pointers-used-for-and-how-would-i-use-them/1758581#1758581 Comment by Nick on What are function pointers used for, and how would I use them? Nick 2009-11-18T20:07:44Z 2009-11-18T20:07:44Z using 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/&hellip;</a> http://stackoverflow.com/questions/1689590/suggestions-for-a-fast-two-way-encrypt/1689651#1689651 Comment by Nick on Suggestions for a fast two way encrypt? Nick 2009-11-06T19:19:02Z 2009-11-06T19:19:02Z On 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-encrypt Comment by Nick on Suggestions for a fast two way encrypt? Nick 2009-11-06T19:06:16Z 2009-11-06T19:06:16Z I 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#1638461 Comment by Nick on Given an angle and length, how do I calculate the coordinates Nick 2009-10-29T13:47:27Z 2009-10-29T13:47:27Z This 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#1562961 Comment by Nick on Using Subversion in Xcode Nick 2009-10-20T19:55:28Z 2009-10-20T19:55:28Z I 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#1594736 Comment by Nick on How can I upload files asynchronously with JQuery? Nick 2009-10-20T14:40:15Z 2009-10-20T14:40:15Z I cant decide whether to give this a +1 or -1 http://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notification Comment by Nick on Respond to only the first WM_KEYDOWN notification? Nick 2009-10-13T15:09:00Z 2009-10-13T15:09:00Z I used: if ((lParam &amp; (1 &lt;&lt; 30)) == 0)... although if (lParam &amp; 0x40000000) worked as well if I remember correctly. My choice was based on readability (1 &lt;&lt; 30) makes more sense to me than 0x40000000 http://stackoverflow.com/questions/1402320/nsmenu-with-ibaction-method-for-clicking-the-menu-header/1402418#1402418 Comment by Nick on NSMenu with IBAction method for clicking the menu header? Nick 2009-09-22T12:16:38Z 2009-09-22T12:16:38Z I could not end up getting this to work and noticed the following note in the docs: &quot;Special Considerations - Do not modify the structure of the menu or the menu items during this method.&quot; http://stackoverflow.com/questions/1402320/nsmenu-with-ibaction-method-for-clicking-the-menu-header/1402418#1402418 Comment by Nick on NSMenu with IBAction method for clicking the menu header? Nick 2009-09-10T12:01:32Z 2009-09-10T12:01:32Z More 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-header Comment by Nick on NSMenu with IBAction method for clicking the menu header? Nick 2009-09-10T11:33:16Z 2009-09-10T11:33:16Z The application wraps a state machine and I want to setState:NSOnState/NSOffState by querying the machine before displaying the menu http://stackoverflow.com/questions/764247/why-are-regular-expressions-considered-so-controversial/764716#764716 Comment by Nick on Why are regular expressions considered so controversial? Nick 2009-09-03T21:31:43Z 2009-09-03T21:31:43Z Yeah 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/&hellip;</a> http://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notification/1362825#1362825 Comment by Nick on Respond to only the first WM_KEYDOWN notification? Nick 2009-09-01T14:46:11Z 2009-09-01T14:46:11Z Yep this works too - thanks http://stackoverflow.com/questions/1362799/respond-to-only-the-first-wmkeydown-notification/1362824#1362824 Comment by Nick on Respond to only the first WM_KEYDOWN notification? Nick 2009-09-01T14:36:39Z 2009-09-01T14:36:39Z This 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-draw Comment by Nick on Loop or sort for layered draw? Nick 2009-08-18T18:15:29Z 2009-08-18T18:15:29Z A lot of good answers here. They are all correct in their own way so picking one is hard.