User Martin Cote - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T20:56:06Zhttp://stackoverflow.com/feeds/user/9936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1891238/uitableview-section-with-maximum-number-of-rows0UITableView section with maximum number of rowsMartin Cote2009-12-11T22:18:30Z2009-12-12T00:49:57Z
<p>I'm implementing a UITableView where the number of rows for a given section is limited to 4. For that matter, if the number of rows is less than 4, I add a row that is used as a placeholder for the next item to add (this is similar to the "Contacts" app).</p>
<p>I have a problem when I reach the maximum number of rows for the section. If I try to delete an object from that section, I get the following exception:</p>
<blockquote>
<p><em>Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 1. The number of rows contained in an existing section after the update (4) must be equal to the number of rows contained in that section before the update (4), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted).'</em></p>
</blockquote>
<p>Of course, the problem is that my <code>numberOfRowsInSection</code> methods returns N+1 if the number of rows is less than 4 (one extra cell for the placeholder), which triggers this inconsistency exception.</p>
<p>Is there anyway around this?</p>
http://stackoverflow.com/questions/348051/creating-static-library-for-iphone9Creating static library for iPhoneMartin Cote2008-12-07T20:43:24Z2009-12-08T15:43:51Z
<p>There's an open source library that I would like to use for my iPhone app. The library is written in C and compiles with Makefiles. I would like to use a static library.</p>
<p>If I add the .a file to my project dependencies, it works well with the simulator, but it doesn't link when targeting the iPhone SDK (certainly because the .a file is compiled for an Intel platform).</p>
<p>What GCC compiler flags should I use to compile a static library for the iPhone SDK? I thought that the '-arch' option would provide me with an iPhone architecture, but no luck.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/348051/creating-static-library-for-iphone/351761#3517610Answer by Martin Cote for Creating static library for iPhoneMartin Cote2008-12-09T04:14:48Z2009-12-08T15:43:51Z<p>After several attempts to use the arm GCC compiler with the tips provided <a href="http://www.simplifymedia.com/blog/?p=16" rel="nofollow">here</a>, I gave up. In my case, it is much simpler to simply port the library to XCode than trying to compile a static library for the iPhone.</p>
http://stackoverflow.com/questions/1829081/mixing-caeagllayer-with-other-calayers0Mixing CAEAGLLayer with other CALayersMartin Cote2009-12-01T21:33:49Z2009-12-04T00:06:27Z
<p>I'm trying, unsuccessfully, to combine OpenGL content with other CALayers. In particular, I would like to overlay the OpenGL content above the other layers (with alpha transparency).</p>
<p>I run into two problems:</p>
<ol>
<li>My OpenGL rendering is never displayed (even though the OpenGL functions succeeds).</li>
<li>The OpenGL rendering is awfully slow (around 1 fps).</li>
</ol>
<p>I should note that I'm not using a CAEAGLLayer-backed view. Instead, I'm using a custom CAEAGLLayer subclass directly. This may be the problem for #1. Using a layer-backed view may work, but I'm not sure how to proceed to make it transparent.</p>
<p>Regarding #2, I'm aware that the documentation says that there is a performance penalty into mixing EAGLLayers with other layers, and that settings the opaque property to NO is even more costly. But 1 fps seems unreasonably slow.</p>
<p>Any suggestion and/or comments would be appreciated.</p>
<p><strong>EDIT</strong></p>
<p>The GL layer do work when used as a backing-layer of a view. It is not convenient though as I want to use the GL layer in a CALayer hierarchy.</p>
<p><strong>SOLUTION</strong></p>
<p>My mistake, using a CAEAGLLayer works just fine. Silly mistake from my part (I wasn't adding the right layer in the hierarchy).</p>
http://stackoverflow.com/questions/1647769/iphone-pass-a-value-to-a-method-called-via-selector/1647816#1647816-1Answer by Martin Cote for iPhone: Pass a value to a method called via @selector()Martin Cote2009-10-30T03:14:57Z2009-10-30T03:14:57Z<p>The target-action mechanism will send the sender of the action to the argument of the selector, in your case, the button that was pressed. I don't think there's any way around it.</p>
<p>You will probably want to associate your uid with the button (in a NSDictionary, for example), and fetch it in the action method, for example:</p>
<pre><code>- (void)buttonEvent:(id)sender
{
NSDictionary *dict = self.buttonToUidDict;
NSString *uid = [dict valueForKey:sender];
}
</code></pre>
http://stackoverflow.com/questions/1618740/core-data-nstablecolumn-bindings-and-custom-nscell1Core Data, NSTableColumn bindings and custom NSCellMartin Cote2009-10-24T18:47:39Z2009-10-27T17:46:00Z
<p>I'm trying to display an array of <code>NSManagedObjects</code> in a <code>NSTableView</code> using a custom <code>NSCell</code> that is able to draw the managed object properly.</p>
<p>For that matter, the single column of my <code>NSTableView</code> is binded to the <code>arrangedObjects</code> of a <code>NSArrayController</code>. I'm not using any key paths on the object.</p>
<p>I was under the impression that my <code>NSCell</code> subclass would receive a <code>setObjectValue:</code> message when the table view wants to draw a particular item, but this isn't happening. But that wouldn't even work since the <code>NSManagedObjects</code> aren't conforming to the <code>Copying</code> protocol.</p>
<p>I suspect this is a common task and that there must be some simple way to do this, but I really don't see it right now.</p>
<p>Any insight would be appreciated.</p>
http://stackoverflow.com/questions/1618740/core-data-nstablecolumn-bindings-and-custom-nscell/1619889#16198890Answer by Martin Cote for Core Data, NSTableColumn bindings and custom NSCellMartin Cote2009-10-25T03:11:45Z2009-10-25T03:11:45Z<p>I managed to make it work by binding the table column with the <code>objectID</code> keypath of the managed object model (which is <code>NSCopying</code> conforming). The cell then retrieve the actual <code>NSManagedObject</code> using the ID. It works like a charm!</p>
http://stackoverflow.com/questions/1568930/interface-builder-and-xcode-integration-not-working2Interface Builder and Xcode integration not workingMartin Cote2009-10-14T20:52:33Z2009-10-15T11:11:05Z
<p>After having installed the iPhone SDK 3.1.2, Interface Builder is not in sync with Xcode anymore. The light indicator at the bottom of the XIB window is grey. IB doesn't see any files from the Xcode project. Xcode is always open when I start IB.</p>
<p>I tried rebooting. No luck.<br />
I tried removing the preferences files for Xcode/IB. No luck.<br />
I tried reinstalling Xcode/IB. Still no luck.</p>
<p><a href="http://cocoawithlove.com/2009/02/interprocess-communication-snooping.html" rel="nofollow">This page</a> explains how IB monitors the changes in Xcode. While it was an interesting read, it didn't provide any help about how to investigate my problem.</p>
<p>Any help would be appreciated.</p>
<p><strong>EDIT</strong><br />
Here's additional information. I enabled the debug logs for launchd, and I noticed the following line that appears every time Interface Builder is started:</p>
<pre><code>[0x0-0x1b01b].com.apple.InterfaceBuilder3[315]: Couldn't open shared capabilities memory GSCapabilities (No such file or directory)
</code></pre>
<p>This really seems to be related to my issue.</p>
http://stackoverflow.com/questions/1457688/how-to-show-a-nspanel-as-a-sheet0How to show a NSPanel as a sheetMartin Cote2009-09-22T01:17:02Z2009-09-22T16:24:31Z
<p>I'm trying to show a NSPanel as a sheet. I'm naively doing something along those lines:</p>
<pre><code>SheetController *sheetController = [[[SheetController alloc]
initWithWindowNibName:@"Sheet"] autorelease];
[[NSApplication sharedApplication] beginSheet:sheetController.window
modalForWindow:self.window
modalDelegate:self
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
contextInfo:nil];
</code></pre>
<p>For some reason that eludes me, this isn't working. When this part of the code is called, the sheet momentarily flashes (because of the <code>autorelease</code> message). The sheet is never hooked to window.</p>
<p>If anyone can point me to where I can find more information, that would be very appreciated.</p>
http://stackoverflow.com/questions/1439357/how-to-display-an-nsset-in-a-uitableview0How to display an NSSet in a UITableView?Martin Cote2009-09-17T14:49:40Z2009-09-17T15:25:07Z
<p>How would you proceed to display the content of an <code>NSSet</code> in a <code>UITableView</code>?</p>
<p>As you know, the table view will ask for the element at a given row, but since the <code>NSSet</code> elements aren't ordered, this doesn't mix well.</p>
<p>My current solution is to iterate through the <code>NSSet</code> until I reach the element at a given index, but this really doesn't feel right.</p>
<p>You may ask why I don't use an <code>NSArray</code> instead. This is because I'm using Core Data, which uses <code>NSSet</code>s to store collection of elements.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/1402641/xcode-how-to-set-debug-environment-with-multiple-xcconfig-files1XCode: How to set debug environment with multiple xcconfig files?Martin Cote2009-09-09T23:17:50Z2009-09-09T23:30:05Z
<p>I'm using XCode 3.2 with <code>xcconfig</code> files. The files are organized by target. For example, I have a <code>debug.xcconfig</code> file and a <code>release.xcconfig</code> one. Both uses common settings, so I added a <code>shared.xcconfig</code> file which is included by both.</p>
<p>The <code>shared.xcconfig</code> file looks like this:</p>
<pre><code>GCC_C_LANGUAGE_STANDARD = c99
GCC_WARN_ABOUT_RETURN_TYPE = YES
GCC_WARN_UNUSED_VARIABLE = YES
GCC_PREPROCESSOR_DEFINITIONS = SOME_COMMON_DEFINITIONS
</code></pre>
<p>The <code>debug.xcconfig</code> file looks like this:</p>
<pre><code>#include "Shared.xcconfig"
GCC_OPTIMIZATION_LEVEL = 0
</code></pre>
<p>Now, I would like to add a <code>DEBUG</code> preprocessor definition in the <code>debug.xcconfig</code> file. As shown in <a href="http://stackoverflow.com/questions/1393987/how-to-append-values-in-xcconfig-variables">this question</a>, the following method is supposed to work:</p>
<pre><code>GCC_PREPROCESSOR_DEFINITIONS = "$(GCC_PREPROCESSOR_DEFINITIONS) DEBUG"
</code></pre>
<p>This doesn't work in XCode 3.2. The XCode documentation also explicitly mention that modifying variables is not possible, you can only overwrite them.</p>
<p>How would you guys solve this problem?</p>
http://stackoverflow.com/questions/1393987/how-to-append-values-in-xcconfig-variables1How to append values in xcconfig variables?Martin Cote2009-09-08T13:19:34Z2009-09-09T19:44:00Z
<p>I'm using XCode and xcconfig files. I'm trying to append some values in the preprocessor definitions, but I simply can't make it work.</p>
<p>I tried the following (as well as many variations of this), but no luck so far:</p>
<p><code>GCC_PREPROCESSOR_DEFINITIONS = '$(GCC_PREPROCESSOR_DEFINITIONS) NEW_VALUE'</code></p>
<p>The <code>NEW_VALUE</code> symbol is simply never added to the preprocessor definitions.</p>
<p>Does anyone had success appending new values to variables in xcconfig files?</p>
http://stackoverflow.com/questions/1393987/how-to-append-values-in-xcconfig-variables/1401682#14016821Answer by Martin Cote for How to append values in xcconfig variables?Martin Cote2009-09-09T19:44:00Z2009-09-09T19:44:00Z<p>According to the XCode Build System Guide:</p>
<blockquote>
<p>When a configuration unit contains
more than one definition for a
particular build setting, Xcode uses
the last definition in the unit. Keep
in mind that configuration files do
not have access to build setting
definitions made in configuration
files they include. That is, you
cannot modify the definition made in
an included configuration file; you
can only replace it.</p>
</blockquote>
<p>So, I guess this mean that it is not possible to append values to a given variable.</p>
http://stackoverflow.com/questions/1370769/how-to-safely-create-an-nsinteger-from-an-cgfloat/1370791#13707911Answer by Martin Cote for How to safely create an NSInteger from an CGFloat?Martin Cote2009-09-02T23:58:47Z2009-09-02T23:58:47Z<p>There's always the risk that 2.0f may actually be 1.9999999999f when represented in binary. Your conversion to int would then lead to 1 instead of 2.</p>
<p>To avoid this, I would add 0.5f to your float value. This would also have the effect of rounding your float, instead of truncating it.</p>
<p><code>NSInteger niceInt = niceCGFloat + 0.5f;</code></p>
http://stackoverflow.com/questions/1337288/how-does-uiview-beginanimations-work3How does [UIView beginAnimations] work?Martin Cote2009-08-26T20:29:57Z2009-08-28T22:40:54Z
<p>I was wondering how animations work in Cocoa Touch. For example:</p>
<pre><code>[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
view1.alpha = 1.0;
view2.frame.origin.x += 100;
[UIView commitAnimations];
</code></pre>
<p>How does <code>UIView</code> tracks the changes to the properties of the two views?</p>
<p>I suspect that KVO is used, but does it really observe the changes to every views between the <code>beginAnimations</code> and <code>commitAnimations</code> calls?</p>
<p>Any insight would be appreciated!</p>
http://stackoverflow.com/questions/1252051/building-iphone-app-for-earlier-iphone-os-versions0Building iPhone app for earlier iPhone OS versionsMartin Cote2009-08-09T19:37:58Z2009-08-10T01:47:26Z
<p>I want to build my iPhone app to work on iPhone OS 2.0 up to 3.0. According to <a href="http://developer.apple.com/IPhone/library/documentation/Xcode/Conceptual/iphone%5Fdevelopment/120-Running%5FApplications/running%5Fapplications.html" rel="nofollow">this page</a>, you simply need to set the "Base SDK" to 3.0 and the "iPhone OS deployment target" to 2.0.</p>
<p>My question is, when actually building the application, which "Active SDK" should I choose? I get the following choices:</p>
<ul>
<li>2.0</li>
<li>2.1</li>
<li>2.2</li>
<li>2.2.1</li>
<li>3.0</li>
</ul>
<p>My guess is that it simply doesn't matter, but I would like to make sure.</p>
http://stackoverflow.com/questions/1251899/iphone-how-to-let-the-music-play-for-an-application-using-openal1iPhone: how to let the music play for an application using OpenAL?Martin Cote2009-08-09T18:16:44Z2009-08-09T21:03:49Z
<p>I'm writing an iPhone app that uses OpenAL. When the application starts, the music playing in background stops.</p>
<p>The music actually stops playing when I initialize the OpenAL library.</p>
<p>My question is, is there any way to use OpenAL while letting the background music play?</p>
http://stackoverflow.com/questions/1240178/objective-c-indentation-in-emacs2Objective-C indentation in emacsMartin Cote2009-08-06T16:58:55Z2009-08-08T05:32:32Z
<p>I'm using Emacs to edit my Objective-C code. The default indentation looks like this:</p>
<pre><code> NSTimer *timer =
[NSTimer timerWithTimeInterval:1.0
target:self
selector:@selector(callback:)
userInfo:nil
repeats:YES];
</code></pre>
<p>I would like Emacs to indent the code like XCode, that is, to align with the colons:</p>
<pre><code> NSTimer *timer =
[NSTimer timerWithTimeInterval:1.0
target:self
selector:@selector(callback:)
userInfo:nil
repeats:YES];
</code></pre>
<p>Is there any hope to achieve this?</p>
http://stackoverflow.com/questions/1218031/what-does-it-mean-when-someone-says-c-program-should-communicate-with-unmanaged/1218042#12180424Answer by Martin Cote for What does it mean when someone says "C# program should communicate with unmanaged COM code using the Single Threading Apartment"Martin Cote2009-08-02T02:50:26Z2009-08-02T02:50:26Z<p>To make a long story short:</p>
<p>Unmanaged COM code means that there's no garbage collector available for that code. The COM code deal with its own memory, the .NET garbage collector shouldn't try to collect that memory.</p>
<p>The single threaded apartment is a model in which every COM messages are serialized/deserialized between objects. The messages are pumped through the windows messaging model, so that the COM objects don't need to care about thread-safety issues. In the multi-threaded apartment, the messages sent to an object can occur at any time, so that the objects must be thread-safe.</p>
<p>This is a <em>very</em> simplified explanation. More details about the single-threaded apartment <a href="http://msdn.microsoft.com/en-us/library/ms680112%28VS.85%29.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/921648/how-to-make-a-flex-lexical-scanner-to-read-utf-8-characters-input0How to make a flex (lexical scanner) to read UTF-8 characters input?Martin Cote2009-05-28T15:54:05Z2009-07-09T07:34:20Z
<p>It seems that <a href="http://flex.sourceforge.net/" rel="nofollow">flex</a> doesn't support UTF-8 input. Whenever the scanner encounter a non-ASCII char, it stops scanning as if it was an EOF.</p>
<p>Is there a way to force flex to eat my UTF-8 chars? I don't want it to actually match UTF-8 chars, just eat them when using the '.' pattern.</p>
<p>Any suggestion?</p>
<p><strong>EDIT</strong></p>
<p>The most simple solution would be:</p>
<p>ANY [\x00-\xff] </p>
<p>and use 'ANY' instead of '.' in my rules.</p>
http://stackoverflow.com/questions/178045/when-should-you-start-optimising-code/1058507#10585070Answer by Martin Cote for When should you start optimising code?Martin Cote2009-06-29T14:05:15Z2009-06-29T14:05:15Z<p>The rules for optimizations at source level are:</p>
<ol>
<li>Don't do it</li>
<li>(For experts only) Don't do it yet</li>
</ol>
<p>If you really think that you need to optimize, you first need to identify the real bottleneck of the system (not to be confused with what you think is the bottleneck). Use a good profiler, it will tell you where most of the time is spent.</p>
http://stackoverflow.com/questions/1008189/programmers-notepad/1008203#10082030Answer by Martin Cote for Programmer's notepadMartin Cote2009-06-17T16:32:31Z2009-06-17T16:32:31Z<p>Although it's not exactly 'beautiful', Emacs is the only notepad I need.</p>
http://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin/1007475#10074750Answer by Martin Cote for Communication problem between Java and C++ app on stdinMartin Cote2009-06-17T14:40:34Z2009-06-17T14:40:34Z<p>I may be wrong, but does having a timeout of 0 for the <code>select</code> call makes sense? I would try to increase the timeout value.</p>
http://stackoverflow.com/questions/998425/why-does-const-imply-internal-linkage-in-c-when-it-doesnt-in-c/998445#9984452Answer by Martin Cote for Why does const imply internal linkage in C++, when it doesn't in C?Martin Cote2009-06-15T21:16:54Z2009-06-15T21:16:54Z<p>It doesn't. Writing the following:</p>
<pre><code>const int i = 0;
</code></pre>
<p>doesn't make <code>i</code> static (in either C or C++).</p>
http://stackoverflow.com/questions/986972/whats-the-advantage-of-using-com-over-a-plain-dll2What's the advantage of using COM over a plain DLL?Martin Cote2009-06-12T14:36:24Z2009-06-12T14:56:36Z
<p>Assume that you work only in the C++ world (cross-language interop is not required). What advantages/inconvenients do you see in using COM instead of a plain basic DLL? Do you think using COM is worth the trouble if you are not going to use the interface from different languages?</p>
http://stackoverflow.com/questions/983376/recursive-folder-scanning-in-c/983393#9833934Answer by Martin Cote for recursive folder scanning in c++Martin Cote2009-06-11T20:13:55Z2009-06-11T20:32:14Z<p>Boost.Filesystem allows you to do that. Check out the <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/filesystem/doc/index.htm" rel="nofollow">docs</a>!</p>
<p>EDIT:<br/>
If you are using Linux and you don't want to use Boost, you will have to use the Linux native C functions. <a href="http://developer.novell.com/wiki/index.php/Programming%5Fto%5Fthe%5FLinux%5FFilesystem" rel="nofollow">This page</a> shows many examples on how to do just that.</p>
http://stackoverflow.com/questions/895371/bubble-sort-homework/895405#8954058Answer by Martin Cote for Bubble Sort HomeworkMartin Cote2009-05-21T21:54:22Z2009-06-11T02:25:33Z<p>This is what happens when you use variable name of negative meaning, you need to invert their values. The following would be easier to understand:</p>
<pre><code>sorted = False
while not sorted:
...
</code></pre>
<p>On the other hand, the logic of the algorithm is a little bit off. You need to check whether two elements swapped during the for loop. Here's how I would write it:</p>
<pre><code>def bubble(values):
length = len(values) - 1
sorted = False
while not sorted:
sorted = True
for element in range(0,length):
if values[element] > values[element + 1]:
hold = values[element + 1]
values[element + 1] = values[element]
values[element] = hold
sorted = False
return values
</code></pre>
http://stackoverflow.com/questions/936928/how-to-return-multiple-error-codes-from-c-function/936994#9369946Answer by Martin Cote for how to return multiple error codes from C++ functionMartin Cote2009-06-01T21:54:18Z2009-06-02T02:21:40Z<p>I usually use a <code>boost::tuple</code>:</p>
<pre><code>typedef boost::tuple<int,int> return_value;
return_value r = my_function();
int first_value = boost::get<0>( r );
int second_valud = boost::get<1>( r );
</code></pre>
<p>EDIT</p>
<p>You can also use <code>boost::tie</code> to extract the values from a tuple:</p>
<pre><code>boost::tie( first_value, second_value ) = r;
</code></pre>
http://stackoverflow.com/questions/935144/can-bison-parse-utf-8-characters1Can Bison parse UTF-8 characters?Martin Cote2009-06-01T14:46:33Z2009-06-01T15:00:49Z
<p>I'm trying to make a Bison parser to handle UTF-8 characters. I don't want the parser to actually interpret the Unicode character values, but I want it to parse the UTF-8 string as a sequence of bytes.</p>
<p>Right now, Bison generates the following code which is problematic:</p>
<pre><code> if (yychar <= YYEOF)
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
</code></pre>
<p>The problem is that many bytes of the UTF-8 string will have a negative value, and Bison interprets negative values as an EOF, and stops.</p>
<p>Is there a way around this?</p>
http://stackoverflow.com/questions/927985/python-class-inheritance-issue/928004#9280044Answer by Martin Cote for Python Class Inheritance issueMartin Cote2009-05-29T20:32:36Z2009-05-29T20:32:36Z<p>You should explicitely call the superclass' init function:</p>
<pre><code>class Employee(Person):
def __init__(self):
Person.__init__(self)
self.empnum = "abc123"
</code></pre>
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/370257#370257Comment by Martin Cote on Can I embed a custom font in an iPhone application?Martin Cote2009-12-09T13:28:07Z2009-12-09T13:28:07ZI'm downvoting since the "magic number" trick is a pure hack that doesn't really work. The real solution is to get the cmap table from the TTF file.http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/370257#370257Comment by Martin Cote on Can I embed a custom font in an iPhone application?Martin Cote2009-12-08T21:47:30Z2009-12-08T21:47:30ZAFAICS, this only works with uppercase characters, hence the 'uppercaseString' call.http://stackoverflow.com/questions/1568930/interface-builder-and-xcode-integration-not-working/1571690#1571690Comment by Martin Cote on Interface Builder and Xcode integration not workingMartin Cote2009-10-15T12:42:16Z2009-10-15T12:42:16ZOMG, it works!! It does help me, thanks a bunch! I'm still waiting for a more "scientific" answer though ;)http://stackoverflow.com/questions/910267/nstableview-with-custom-cells/910506#910506Comment by Martin Cote on NSTableView with custom cellsMartin Cote2009-10-03T18:13:02Z2009-10-03T18:13:02ZThanks for the info! I found very few documentation regarding NSCells.http://stackoverflow.com/questions/1457688/how-to-show-a-nspanel-as-a-sheet/1459055#1459055Comment by Martin Cote on How to show a NSPanel as a sheetMartin Cote2009-09-23T02:00:11Z2009-09-23T02:00:11ZSpot on! Many thanks.http://stackoverflow.com/questions/1457688/how-to-show-a-nspanel-as-a-sheet/1457869#1457869Comment by Martin Cote on How to show a NSPanel as a sheetMartin Cote2009-09-22T02:36:40Z2009-09-22T02:36:40ZWhile removing the autorelease message prevents the panel from disappearing, it is still not hooked to the window... I'm really perplexed by this.http://stackoverflow.com/questions/1439357/how-to-display-an-nsset-in-a-uitableview/1439567#1439567Comment by Martin Cote on How to display an NSSet in a UITableView?Martin Cote2009-09-18T02:52:36Z2009-09-18T02:52:36ZI feel so stupid now that I've read your answer ;)http://stackoverflow.com/questions/1393987/how-to-append-values-in-xcconfig-variables/1398738#1398738Comment by Martin Cote on How to append values in xcconfig variables?Martin Cote2009-09-09T19:14:19Z2009-09-09T19:14:19ZNot much luck with XCode 3.2 :(http://stackoverflow.com/questions/1240178/objective-c-indentation-in-emacs/1248050#1248050Comment by Martin Cote on Objective-C indentation in emacsMartin Cote2009-08-12T03:41:21Z2009-08-12T03:41:21ZHmmm, none of that seems to work on my side. I'm probably using a too old version of emacs (22.3.1).http://stackoverflow.com/questions/1240178/objective-c-indentation-in-emacs/1248050#1248050Comment by Martin Cote on Objective-C indentation in emacsMartin Cote2009-08-10T03:41:04Z2009-08-10T03:41:04ZI can't find any documentation regarding c-lineup-ObjC-method-call-colons, any hints?http://stackoverflow.com/questions/1240178/objective-c-indentation-in-emacsComment by Martin Cote on Objective-C indentation in emacsMartin Cote2009-08-06T20:15:50Z2009-08-06T20:15:50Z@Trey: Interesting. I'm about to write my own alignment function, but I would like to avoid this if possible.http://stackoverflow.com/questions/1194551/when-is-the-right-point-in-your-career-to-move-away-from-coding/1194564#1194564Comment by Martin Cote on When is the right point in your career to move away from coding?Martin Cote2009-07-28T14:46:03Z2009-07-28T14:46:03ZHoward, probably when he dies? Unless I'm mistaken?http://stackoverflow.com/questions/1010539/changing-return-type-of-a-function-without-template-specialization-c/1010569#1010569Comment by Martin Cote on Changing return type of a function without template specialization. C++Martin Cote2009-06-18T03:06:40Z2009-06-18T03:06:40ZThis is hardly better than having "int parse_int(const string&)", "double parse_double(const string&)" etc.http://stackoverflow.com/questions/895371/bubble-sort-homework/895405#895405Comment by Martin Cote on Bubble Sort HomeworkMartin Cote2009-06-17T13:51:11Z2009-06-17T13:51:11ZIt's been corrected on June 11th, are there any errors left?http://stackoverflow.com/questions/243383/why-c-cannot-be-parsed-with-a-lr1-parser/1004737#1004737Comment by Martin Cote on Why C++ cannot be parsed with a LR(1) parser?Martin Cote2009-06-17T02:16:21Z2009-06-17T02:16:21ZWhile the 'x * y' example is interesting, the same can happen in C ('y' can be a typedef or a variable). But C can be parsed by a LR(1) parser, so what's the difference with C++?