User Joe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:00:46Z http://stackoverflow.com/feeds/user/41880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1775330/code-snippet-paths-in-gcc 1 Code snippet paths in GCC Joe 2009-11-21T12:19:51Z 2009-11-21T12:44:39Z <p>Background: Keil C51 on a PC, currently moving to GCC (CrossPack-AVR) on an iMac.</p> <p>Since I write firmware for micro's I have a lot of 'driver' source files etc. that I need to include with my programs, e.g. a LCD driver, i.e. reusing code. These code snippets (.c and .h files) live sub folders in a <code>/snippets/</code> folder, i.e. <code>/snippets/lcd/</code>. My <code>/snippets/</code> used to be in a folder that also had a <code>/projects/</code> folder for, well, projects or applications. I had considered putting them in a library but I use various architectures so it would not always work.</p> <p>The Question: How can one set that up in GCC without having to specify absolute paths to the snippets in, for example, the various <code>#include</code> paths etc. so that the source file, of the included snippet, gets re-compiled along with the project that uses/includes it? Thus, if I improve on a snippet, it benefits all projects that is compiled/re-compiled subsequently?</p> <p>I looked around on google but must be using the wrong search term.</p> <p>Thanks!</p> http://stackoverflow.com/questions/555276/convertpoint 1 convertPoint: Joe 2009-02-17T01:51:55Z 2009-02-17T02:07:47Z <p>Hi</p> <p>I'm learning Objective-C and Cocoa (in fits and starts when time allows) so be gentle OK.</p> <p>A example app has the following lines:</p> <pre><code>NSPoint down = [mouseEvent locationInWindow]; //...some other stuff NSPoint p = [self convertPoint:down fromView:nil]; </code></pre> <p>It then proceeds to use p for a drag and drop operation (using the pasteBoard). But, what I don't get is this is all in one view, why not just use <code>down</code>, why do a <code>convertPoint:</code> ? Or have I missed something basic?</p> <p>Thanks!</p> http://stackoverflow.com/questions/336367/encoding-c-structs 1 Encoding C Structs Joe 2008-12-03T06:48:12Z 2009-01-17T23:23:03Z <p>I have a struct defined like follows as part of an object. I'm trying to encode this for use with NSCoder with the aim of saving as well as Undo/Redo functionality.</p> <pre><code>struct myCol { float rd; float grn; float blu; float alp; } toolColor; </code></pre> <p>So, there are methods to encode e.g. <code>-encodeBool:</code>, <code>-encodeFloat:</code>, <code>-encodeObject:</code> etc. But how do you do this for a struct?</p> http://stackoverflow.com/questions/351932/mouseup-and-nsarraycontroller 1 MouseUp and NSArrayController Joe 2008-12-09T06:10:31Z 2009-01-12T15:36:49Z <p>How do you associate a <code>-mouseUp:</code> event with the <code>-add:</code> method of a NSArrayController? The <code>-mouseUp:</code> event lives in a different object but is <code>#import</code>'ed and instantiated in the object that holds the array being controlled.</p> <p>Usually, with an NSButton you command-drag from the button to the NSArrayController's <code>-add:</code> method but obviously this is not possible with a mouse event. <br /><br /> -- ADDED CONTENT --<br /> MATT: Thanks for the answer and on first read it made sense. Being a beginner to Obj-C/Cocoa with a procedural and NON-GUI language (PLM51 and C51 for embedded controllers) background, I'm having a hard time to grasp the practical implementation of IBOutlets and connecting. I have no problems with buttons and the like (i.e. visible things in IB) but here is what I understand: I need to declare <code>-IBOutlet NSArrayControler * arryCtrl;</code> in my myDocuments.h file. Now keep in mind, the object where I override the <code>-mouseUp</code> method is called Canvas and in myDocuments.h I have a <code>Canvas * canvas</code> declaration hence, I have a canvas object instantiated by myDocument at runtime. In IB, I drag from File's Owner (myDocument right) to ArrayController and a link is established BUT not to <code>-add:</code> as that option is not available. In the nib (myDocument) there is no object for Canvas But, in mouseUp (the canvas method), if I send a message to the IBOutput, i.e. <code>[arrayCtrl add:self]</code> arrayCtrl is not known. <br /><br /> Anyhow, I'm sure you guys are having a giggle as the answer is probably so obvious. However, I'm really trying to understand it all and realize that the problem is my novice coding. Thanks for pointing this newbie in the right direction</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/377714#377714 2 Answer by Joe for What are those little Xcode tips & tricks you wish you knew about 2 years ago? Joe 2008-12-18T12:45:33Z 2008-12-18T12:45:33Z <p>Some tips to be found here: <a href="http://www.meandmark.com/xcodetips.html" rel="nofollow">http://www.meandmark.com/xcodetips.html</a></p> http://stackoverflow.com/questions/370265/undo-and-object-release 1 Undo and Object release Joe 2008-12-16T01:35:39Z 2008-12-16T06:58:45Z <p>Newbie question.</p> <p>I have a NSMutableArray that holds multiple objects (objects that stores bezier paths and related variables e.g. path colour ect.) These are properly released whenever the relevant <code>-dealloc</code> method is called. Each object is instansiated with <code>+alloc/-init</code> and added to the array. After adding them to the array I <code>release</code> the object and hence their retainCount=1 (due to the array). Thus, when the array is released, the objects are also properly <code>dealloc</code>ated.</p> <p>But, I'm also implementing an undo/redo mechanism that removes/adds these objects from/to the NSMutable array. </p> <p>My question is, when an undo removes the object from the array, they are not released (oterwise redo will not work) so if redo is never called, how do you properly release these object?</p> <p>Hope that makes sense! Thanks!</p> http://stackoverflow.com/questions/366073/instantiating-new-object-within-switch-block-why-does-it-fail 2 Instantiating new object within switch block - why does it fail? Joe 2008-12-14T02:06:47Z 2008-12-15T08:42:25Z <p>Why does </p> <pre><code>switch ([document currentTool]) { case DrawLine: NSBezierPath * testPath = [[NSBezierPath alloc]init]; //...rest of code that uses testPath.... </code></pre> <p>result in </p> <p><code>error:syntax error before "*" token</code></p> <p>for testPath?</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/365043#365043 9 Answer by Joe for What are those little Xcode tips & tricks you wish you knew about 2 years ago? Joe 2008-12-13T09:34:30Z 2008-12-13T09:34:30Z <p><strong>Debugging - how to using gdb</strong><br /> Being a newbie still, I find trapping and identifying faults a rather daunting job. The console, despite it being a powerful tool, usually does not yield very intuitive results and knowing what you are looking at in the debugger can be equally difficult to understand. With the help of some of they guys on StackOverFlow and the good article about debugging that can be found at <a href="http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html" rel="nofollow">Cocoa With Love</a> it becomes a little more friendly.</p> <p><a href="http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html" rel="nofollow">http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html</a><br /> <br /></p> http://stackoverflow.com/questions/364631/memory-management-should-release-be-used-in-this-case 0 memory management, should release be used in this case? Joe 2008-12-13T01:28:27Z 2008-12-13T02:18:59Z <p>Given the following code snippet from inside a method; </p> <pre><code>NSBezierPath * tempPath = [NSBezierPath bezierPathWithOvalInRect:pathRect]; [tempPath retain]; [path release]; [self setPath:tempPath]; </code></pre> <p>Am I responsible for releasing <code>tempPath</code> or will it be done for me? <br />The setPath is <code>@synthesize</code>d so I probably would be able to leave out the <code>[path release]</code> as well?</p> <p>I know the better way of doing this is simply;</p> <pre><code>[path appendBezierPathWithOvalInRect:pathRect]; </code></pre> <p>But, being new to Objective C and Cocoa, I'm trying to understand how things stick together. <br /> <br /> ---ADDED CONTENT<br /><br /> Leaving out the <code>[tempPath retain]</code> results in a crash in the <code>NSView</code> object that uses the paths. <br />The result from the debugger:<br /></p> <blockquote> <pre><code>(gdb) po [0x145dc0 path] Program received signal EXC_BAD_ACCESS, Could not access </code></pre> <p>memory. Reason: KERN_PROTECTION_FAILURE at address: 0x00000021 0x93c56688 in objc_msgSend ()</p> </blockquote> <p><br /><br /> <strong>CONFESSION OF GUILT</strong> - my mistake. Hope someone else will get something useful from my mistake. I had used <code>assign</code> in place of <code>retain</code> in the <code>@property</code> declaration. Fixing those made the code work as expected.</p> <p>THANKS FOR THE HELP GUYS</p> http://stackoverflow.com/questions/345704/basic-php-form-help-currency-display/351974#351974 0 Answer by Joe for basic php form help (currency display) Joe 2008-12-09T06:41:02Z 2008-12-09T06:41:02Z <p><code>money_format()</code> is a function that returns a string value of a formatted number. You have control over the formatting and, obviously, your number. A simple example, if you have your value in the variable <code>$myNumber</code>, you could incorporate the result into a given table's data cell like so;</p> <pre><code>&lt;?php echo ("&lt;td&gt;".money_format('%n',$myNumber)."&lt;/td&gt;"); ?&gt; </code></pre> <p>And you would need to do this for every value, e.g. via a <code>for</code> loop if you had all your values in an array. The <code>n</code> here is one of the formatting options - there are several. A good place to look would be on the PHP web page at <a href="http://au2.php.net/manual/en/function.money-format.php" rel="nofollow">http://au2.php.net/manual/en/function.money-format.php</a> Hope this helps.</p> http://stackoverflow.com/questions/339266/basic-php-form-help/339347#339347 1 Answer by Joe for basic php form help Joe 2008-12-04T01:22:15Z 2008-12-04T01:22:15Z <p>Not enough detail provided for an answer but let's simplify and assume you have the 'savings' numbers in an array, say, companySavings . So, you need to subtract each of these from the value the user specifies right? You don't need to call something (you could if you want...)</p> <p>when the user clicks 'Submit' and the page is loaded again pull the monthlybill into a var e.g.</p> <pre><code>$monthlyBill = $_GET['monthlybill']; //you should do some checking to prevent attacks but that's another matter </code></pre> <p>Then, when you are building the list of savings it would look something like this</p> <pre><code> &lt;?php //...code for the rest of the page and starting your table foreach($companySavings as $savings){//insert each row into the table echo("&lt;tr&gt;&lt;td&gt;".(comapnyName/Image whatever..)."&lt;/td&gt;&lt;td&gt;$".$monthlyBill-$savings."&lt;/td&gt;&lt;/tr&gt;); } //... end the table and rest of code ?&gt; </code></pre> http://stackoverflow.com/questions/1775330/code-snippet-paths-in-gcc Comment by Joe on Code snippet paths in GCC Joe 2009-11-21T12:47:03Z 2009-11-21T12:47:03Z I have a lot of c source files (&amp; their associated h files) for various pieces of hardware (LCD's, DUART's, Keypads..) Each live in their own folder (/lcd /duart /keypad). All these are in a folder called /snippets which in turn is in a folder called /dev. Also in /dev there is a /projects folder.So, if I'm working on a project, e.g. robot, there will be a folder called /dev/projects/robot with files that make up the robot app. But, if the robot needs a LCD, how do I tell gcc to include /dev/snippets/lcd/lcd.h &amp; lcd.c without specifying the absolute path, something like $SNIPPETPATH/lcd/lcd.h. http://stackoverflow.com/questions/555276/convertpoint/555301#555301 Comment by Joe on convertPoint: Joe 2009-02-17T02:15:24Z 2009-02-17T02:15:24Z Thanks, appreciate the help. I did notice the results were different but could not figure why. http://stackoverflow.com/questions/370265/undo-and-object-release/370285#370285 Comment by Joe on Undo and Object release Joe 2008-12-16T07:24:26Z 2008-12-16T07:24:26Z Thanks. I'll keep it in mind. http://stackoverflow.com/questions/370265/undo-and-object-release/370438#370438 Comment by Joe on Undo and Object release Joe 2008-12-16T07:22:49Z 2008-12-16T07:22:49Z Thanks! I figured keeping track in a separate list seemed like there should be a better way. I am using the NSUndoManager - just getting used to Cocoa and programming in Oop. http://stackoverflow.com/questions/366073/instantiating-new-object-within-switch-block-why-does-it-fail/366100#366100 Comment by Joe on Instantiating new object within switch block - why does it fail? Joe 2008-12-14T02:51:21Z 2008-12-14T02:51:21Z Thanks Graeme! Shoulda figured that. http://stackoverflow.com/questions/364631/memory-management-should-release-be-used-in-this-case/364649#364649 Comment by Joe on memory management, should release be used in this case? Joe 2008-12-13T01:47:53Z 2008-12-13T01:47:53Z Thanks Ashley. If I leave out the retain, the program crashes later on in an NSView object that uses the paths. http://stackoverflow.com/questions/351932/mouseup-and-nsarraycontroller/355160#355160 Comment by Joe on MouseUp and NSArrayController Joe 2008-12-10T06:19:52Z 2008-12-10T06:19:52Z Thanks Ashley, I'll work through that. Appreciate the answer. http://stackoverflow.com/questions/351932/mouseup-and-nsarraycontroller/351956#351956 Comment by Joe on MouseUp and NSArrayController Joe 2008-12-09T06:42:43Z 2008-12-09T06:42:43Z Ah! Thanks. I'll give that a go. http://stackoverflow.com/questions/336367/encoding-c-structs/336376#336376 Comment by Joe on Encoding C Structs Joe 2008-12-04T02:07:08Z 2008-12-04T02:07:08Z Thanks guys. Since an object is required I decided to use NSColor instead of struct. I guess I should have in the first place! But I'm learning.