User Dirk Stoop - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:45:33Z http://stackoverflow.com/feeds/user/24051 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1653153/install-pyobjc-on-python-2-6-on-os-x-10-5/1655073#1655073 1 Answer by Dirk Stoop for Install PyObjC on Python 2.6 on OS X 10.5? Dirk Stoop 2009-10-31T17:47:33Z 2009-10-31T17:47:33Z <p>You should probably try to build PyObjC from trunk, which will work fine on the official Python 2.6 distribution, but not on Python 2.5. There are quite a lot of fixes in the trunk right now that weren't in 2.2b2, which afaik. is the most current version available through easy_install.</p> <p>There are some little snags that you may run into when building with py2app on 10.5 + 2.6 + PyObjC 2.2 (which for a lot of reasons is what you should probably do, instead of using the Xcode templates from 10.5 that build differently), especially if you still have Python 2.5 installed somewhere, so you'll probably want to build and install py2app from trunk as well, this particular issue I ran into with PyObjC 2.2 on 2.6 on 10.5 has been fixed by now.</p> http://stackoverflow.com/questions/1654857/nested-transactions-with-sqlalchemy-and-sqlite/1654940#1654940 0 Answer by Dirk Stoop for Nested transactions with SQLAlchemy and sqlite Dirk Stoop 2009-10-31T17:01:33Z 2009-10-31T17:01:33Z <p>SQLAlchemy uses pysqlite to interact with an SQLite database, if I'm not mistaken pysqlite will by default wrap up any query you send it in a transaction.</p> <p>The answer might lie in correctly setting the isolation level when you connect.</p> <p><a href="http://groups.google.com/group/sqlalchemy-devel/browse%5Fthread/thread/653b6b2f49a940b8" rel="nofollow">Some discussion about that over here</a></p> http://stackoverflow.com/questions/900415/cocoa-prevent-caching-of-javascript-in-webkit-safari-beta-4-bug/900470#900470 2 Answer by Dirk Stoop for Cocoa - Prevent caching of Javascript in WebKit - Safari Beta 4 bug? Dirk Stoop 2009-05-22T23:55:24Z 2009-05-22T23:55:24Z <p>Not a solution, but a workaround that might work:</p> <p>Try appending something like "?version=some_random_number" to your URL, with a different random number each time you reload. In my experience, that's pretty effective at forcing webkit to reload. </p> http://stackoverflow.com/questions/841551/nsview-setframe-not-working/842077#842077 4 Answer by Dirk Stoop for [NSView setFrame:] not working? Dirk Stoop 2009-05-08T22:26:05Z 2009-05-08T22:26:05Z <p>15px is exactly the size of an NSScroller at NSRegularControlSize.</p> <p>My guess is that you have your NSScrollView configured to automatically hide scrollers.</p> <p>Try turning off the horizontal and vertical scrollers of your scrollView in the NIB, if that solves the problem, you'll know where to look from there.  It is something related to the clipView of the scrollView autoresizing the documentView. The clipView itself is being autoresized when the scrollers appear; directly after you set the documentView to a frameSize (the 100% setting I'd guess) that requires scrollers.</p> http://stackoverflow.com/questions/841968/catch-odbc-exception/842023#842023 0 Answer by Dirk Stoop for catch odbc exception Dirk Stoop 2009-05-08T22:04:56Z 2009-05-08T22:13:07Z <p>From the <a href="http://www.python.org/doc/2.5/tut/node10.html" rel="nofollow">Python documentation</a>:</p> <blockquote> <p>A try statement may have more than one except clause, to specify handlers for different exceptions.</p> </blockquote> <p>For example:</p> <pre><code>try: do_something_crazy except AttributeError: print 'there was an AttributeError' except NameError: print 'there was a NameError' except: print 'something else failed miserably' </code></pre> <p>The last except acts as a catch-all here, and is only executed if an exception different than an AttributeError or NameError occurs.  In production code it's best to steer clear from such catch-all except clauses, because in general you'll want your code to fail whenever an error that you didn't expect occurs.</p> <p>In your specific case you'll need to import the different exceptions that can be raised from the dbi module, so you can check for them in different except clauses.</p> <p>So something like this:</p> <pre><code># No idea if this is the right import, but they should be somewhere in that module import dbi try: cursor.execute("delete from TABLE") except dbi.internal-error: print 'internal-error' except dbi.program-error: print 'program-error' </code></pre> <p>As you'll see in the above-lined documentation page, you can opt to include additional attributed in each except clause.  Doing so will let you access the actual error object, which might be necessary for you at some point when you need to distinguish between two different exceptions of the same class.  Even if you don't need such a fine level of distinction, it's still a good idea to do a bit more checking than I outlined above to make sure you're actually dealing with the error you think you're dealing with.</p> <p>All that said and done about try/except, what I'd really recommend is to search for a method in the database library code you're using to check whether a table exist or not before you try to interact with it.  Structured try/excepts are very useful when you're dealing with outside input that needs to be checked and sanitized, but coding defensively around the tentative existence of a database table sounds like something that's going to turn around and bite you later.</p> http://stackoverflow.com/questions/815063/how-do-you-make-your-app-open-at-login/815151#815151 4 Answer by Dirk Stoop for How do you make your App open at login? Dirk Stoop 2009-05-02T16:36:01Z 2009-05-02T16:36:01Z <p>Call the method pasted below with a file URL pointing at your application to add it to the current user's login items.</p> <p>To disable again, you'll need to get that same loginListRef, convert it to an array, and iterate through it until you find the item with the url you want to disable. Finally, call LSSharedFileListItemRemove with the appropriate arguments.</p> <p>Good luck :)</p> <pre><code>- (void)enableLoginItemWithURL:(NSURL *)itemURL { LSSharedFileListRef loginListRef = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); if (loginListRef) { // Insert the item at the bottom of Login Items list. LSSharedFileListItemRef loginItemRef = LSSharedFileListInsertItemURL(loginListRef, kLSSharedFileListItemLast, NULL, NULL, (CFURLRef)itemURL, NULL, NULL); if (loginItemRef) { CFRelease(loginItemRef); } CFRelease(loginListRef); } } </code></pre> http://stackoverflow.com/questions/764879/is-file-export-always-redundant-when-you-have-file-save-as/766448#766448 3 Answer by Dirk Stoop for Is File >> Export always redundant when you have File >> Save As...? Dirk Stoop 2009-04-19T23:59:12Z 2009-04-19T23:59:12Z <p>I'm not sure how this works on other platforms but on the Mac there is the following clear distinction in document-based applications, which has little to do with file format fidelity:</p> <p><strong>Save As...</strong> causes all subsequent <strong>Save</strong>'s to overwrite the file you just created using <strong>Save As...</strong>, so <strong>Save As...</strong> modifies the location of the document that you are working with and stores its current state in that new location, while leaving the original copy untouched.</p> <p><strong>Export</strong> does not have this effect, you export to a specific path only once, after that a <strong>Save</strong> operation will still save to the location of the document as it was before the <strong>Export</strong> was done.</p> <p>So, even in an application that supports a plethore of file formats, such as e.g. Excel, which allows you to <strong>Save As...</strong> to various formats of varying fidelity, an <strong>Export</strong> command may still make sense.  In fact it makes way more sense than saving (as) a complicated document to .CSV, seemingly retaining any formatting/graphs/etc. in the document, while affecting any subsequent saves to also save to that same lo-fi .CSV file.</p> <p>Summarizing:  The fundamental difference is not in file format fidelity, or 'how native' a format is, but the conceptual difference —as I described above— leads to a logical distinction in what qualifies (fidelity) a file format to appear in your <strong>Save As...</strong> choices, and when you might want to relegate it to an <strong>Export</strong> feature.</p> http://stackoverflow.com/questions/765416/can-nsalert-be-used-to-create-a-floating-window/766370#766370 1 Answer by Dirk Stoop for Can NSAlert Be Used to Create a Floating Window? Dirk Stoop 2009-04-19T23:23:30Z 2009-04-19T23:23:30Z <p>I wrecked my brain about this exact thing a while ago.</p> <p>The only way that I could get this to work (sort of), was to subclass NSApplication, and override -sendEvent. In -sendEvent, you'd first call super's implementation, then do something like this:</p> <pre><code>id *modalWindow = [self modalWindow]; if (modalWindow &amp;&amp; [modalWindow level] != MY_DESIRED_MODAL_WINDOW_LEVEL) [modalWindow setLevel: MY_DESIRED_MODAL_WINDOW_LEVEL]; </code></pre> <p>Apart from that even this didn't work quite spotlessly – when switching apps – you'd never want to do this anyway because it's a blatant, crude hack.</p> <p>So yes, sadly you're better off writing your own version of NSAlert.  If you really care about this possibility, I'd file a bug on it.  It is pretty weird that [[alert window] setLevel: someLevel] isn't honored by NSApplication and it's a waste to have to re-build NSAlert with all its neat little auto-layout features just to be able to do this.</p> http://stackoverflow.com/questions/766111/multiple-recessed-nsbuttoncells-in-a-custom-control/766329#766329 0 Answer by Dirk Stoop for Multiple recessed NSButtonCells in a custom control Dirk Stoop 2009-04-19T23:06:02Z 2009-04-19T23:06:02Z <p>First off, a band-aid might be the first thing that could help. ;)</p> <p>Have you tried using NSButtonCell's -updateTrackingAreaWithFrame:inView: method?  It's not documented, but shows up in the NSButtonCell header that class-dump generates on Leopard.  I'm not sure what the official word or general consensus is regarding usage of non-documented methods that don't start with underscores, so caveat emptor.</p> <p>On another note: You might want to – instead of using multiple buttonCells – look at using multiple buttons in a view for this task.  Modeling your own class after an existing class like NSMatrix is admirable, but for complex behaviors like what you're looking for, it's often more fruitful to deviate a little.  The concept that <em>using many views instead of using a single view with a bunch of cells is expensive</em> still has some merit, but if going that route requires a hacky implementation, I'd go the other way.</p> http://stackoverflow.com/questions/721092/forcing-reading-of-a-text-field-before-dismissing-modal-dialog-in-cocoa/722596#722596 1 Answer by Dirk Stoop for Forcing Reading of a Text Field Before Dismissing Modal Dialog in Cocoa Dirk Stoop 2009-04-06T18:23:37Z 2009-04-06T20:28:10Z <p>A slightly abrupt way to end editing can be achieved with the following call:</p> <pre><code>[startTimerDialog endEditingFor:nil]; </code></pre> <p>This always works, but it's a bit more intense than you'll need most of the time. <em>(for a more official description of "intense" see the documentation link below)</em>.</p> <p>In short: <strong>-endEditingFor:</strong> should only be used as a last resort when you can't get the fieldEditor to resign first responder. So you might want to try a more subtle approach before you resort to the extreme measures like this.</p> <p>To be more subtle, in the <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWindow/endEditingFor:" rel="nofollow">NSWindow class documentation</a> for <strong>-endEditingFor:</strong> Apple proposes something resembling this:</p> <pre><code>if ( ![startTimerDialog makeFirstResponder:startTimerDialog] ) /* Making the window firstResponder failed, proceed to force the first responder to resign */ [startTimerDialog endEditingFor:nil]; </code></pre> <p>Follow the above link to see their exact example code, I shortened it here because you're obviously not interested in using the fieldEditor after this in your described use case.</p> http://stackoverflow.com/questions/616410/cocoa-iphone-how-to-i-keep-ibtool-from-outputing-non-localizable-strings-in-a-xi/623734#623734 2 Answer by Dirk Stoop for Cocoa/iPhone: How to I keep ibtool from outputing non-localizable strings in a xib file? Dirk Stoop 2009-03-08T15:27:41Z 2009-03-08T15:27:41Z <p>Ibtool is extremely verbose in its string-files output and generates stirngs by object-id, instead of by unique source string.  This type of output is extremely useful when you're trying to re-create interface builder or otherwise need extensive control over the objects in your xib files, but less so when you simply want to localize your software.</p> <p>Matteo at Digitalwaters.net found a way to convert the output from ibtool to and from the format used by nibtool, its predecessor, which was less powerful, but a lot easier to use for localization. More info <a href="http://www.digitalwaters.net/koan/ing/2007/11/27/from-nibtool-to-ibtool.html" rel="nofollow">here</a>.</p> <p>I have re-purposed his scripts to streamline the localization of our Mac OS X app, and they work well for me.  Good luck :)</p> http://stackoverflow.com/questions/570160/throttling-login-attempts/573170#573170 3 Answer by Dirk Stoop for Throttling login attempts Dirk Stoop 2009-02-21T15:02:01Z 2009-02-21T15:20:23Z <p>The last thing you want to do is storing all unsuccessful login attempts in a database, that'll work well enough but also makes it extremely trivial for DDOS attacks to bring your database server down.</p> <p>You are probably using some type of server-side cache on your webserver, memcached or similar. Those are perfect systems to use for keeping track of failed attempts by IP address and/or username.  If a certain threshold for failed login attempts is exceeded you can then decide to deactivate the account in the database, but you'll be saving a bunch of reads and writes to your persisted storage for the failed login counters that you don't need to persist.</p> <p>If you're trying to stop people from brute-forcing authentication, a throttling system like Gumbo suggested probably works best.  It will make brute-force attacks uninteresting to the attacker while minimizing impact for legitimate users under normal circumstances or even while an attack is going on.  I'd suggest just counting unsuccessful attempts by IP in memcached or similar, and if you ever become the target of an extremely distributed brute-force attack, you can always elect to also start keeping track of attempts per username, assuming that the attackers are actually trying the same username often.  As long as the attempt is not extremely distributed, as in still coming from a countable amount of IP addresses, the initial by-IP code should keep attackers out pretty adequately.</p> <p>The key to preventing issues with visitors from countries with a limited number of IP addresses is to not make your thresholds too strict; if you don't receive multiple attempts in a couple of seconds, you probably don't have much to worry about re. scripted brute-forcing.  If you're more concerned with people trying to unravel other user's passwords manually, you can set wider boundaries for subsequent failed login attempts by username.</p> <p>One other suggestion, that doesn't answer your question but is somewhat related, is to enforce a certain level of password security on your end-users.  I wouldn't go overboard with requiring a mixed-case, at least x characters, non-dictionary, etc. etc. password, because you don't want to bug people to much when they haven't even signed up yet, but simply stopping people from using their username as their password should go a very long way to protect your service and users against the most unsophisticated – guess why they call them brute-force ;) – of attacks.</p> http://stackoverflow.com/questions/543283/remove-correctly-selected-nsmanagedobjects/543888#543888 1 Answer by Dirk Stoop for Remove correctly selected NSManagedObjects Dirk Stoop 2009-02-12T22:56:10Z 2009-02-12T22:56:10Z <p>If I understand your description of how everything is built up correctly, selectedObject in your NSPopupButton is bound to some value in your NSTableView.  My guess is that you are using dataSource methods to provide the table with data, and bindings to match the data in the popup with the table.</p> <p>You should probably use an NSArrayController for the actual dataset, bind its content array to an NSMutablearray in your controller, and bind both the tableView and the NSPopupButton to the arrayController, instead of binding one control to the other.  The problem you describe does not seem to have very much to do with NSManagedObject, except for seeing a default implementation of -description in this situation, but moreso with using bindings in an unconventional way.</p> http://stackoverflow.com/questions/527322/binding-nstextfield-to-nsnumber/527417#527417 0 Answer by Dirk Stoop for binding NSTextField to NSNumber Dirk Stoop 2009-02-09T08:31:42Z 2009-02-09T08:31:42Z <p>Like Ben mentioned, one way to do this is to attach an NSNumberFormatter to your textfield, which is pretty trivial to set up in interface builder and will likely Just Work™.</p> <p>If you don't like the modal dialogs NSNumberFormatter throws at your users when they enter non-numeric values, you can subclass NSNumberFormatter to implement different, ‘more forgiving’ formatting behavior. I think overriding – numberFromString: to strip out non-numeric characters before calling super's implementation should do the trick.</p> <p>Another approach is to create and register your own NSValueTransformer subclass to parse strings into NSNumbers and back, but I'd try using an NSNumberFormatter first since it's pretty clearly the class that has been designed for this exact purpose.</p> <p><a href="http://www.cocoadev.com/index.pl?NSValueTransformer" rel="nofollow">More about value transformers</a></p> http://stackoverflow.com/questions/521340/nsnumberformatter-plussign-vs-positiveprefix/522627#522627 2 Answer by Dirk Stoop for NSNumberFormatter: plusSign vs. positivePrefix Dirk Stoop 2009-02-06T23:15:20Z 2009-02-06T23:15:20Z <p>plusSign and minusSign are used for the mathematical addition and subtraction operators. positivePrefix and suffix and negativePrefix and suffix are used to describe what characters/strings are used todisplay whether a certain numeric value is positive or negative.</p> <p>To illustrate why they are different: most of the times, when a positive numeric value is displayed anywhere you'll just see numbers, No prefix or suffix. Negative numeric values have a minus in front, or behind them, or, in some styles of accounting they're just enclosed in brackets. Either way we'll still need a + and a - to express mathematical operations. </p> http://stackoverflow.com/questions/500693/should-programmers-care-about-their-customers-businesses/500720#500720 3 Answer by Dirk Stoop for Should programmers care about their customer's businesses? Dirk Stoop 2009-02-01T12:34:01Z 2009-02-01T13:57:08Z <p>Depends entirely on who your customer is.  We have two products that address two completely different markets, and our approach is different for both.</p> <p>The first product is a point of sale system for retail busineses.  The two lead developers for this app had a couple of years of retail experience when we started out with it, but it's been a while since either worked in retail and even though we use the app to create invoices for consulting work, it's not the same as using it to run a retail operation ourselves.  To make sure our application actually remains relevant to retail business owners we need to pro-actively approach them to figure out what their needs and concerns are.  If we don't drop by at people's stores from time to time to sit down with them and look at how they use our software, we risk losing touch.</p> <p>The other product is a Subversion client, which we use ourselves every day for all of our software development work, maintaining our websites and even for managing our business administration.  It is still very important to listen to customers, but because we dogfood the product alomst excessively and most of our end-users have a workflow that's very similar to ours, we can rely more on public fora and emails from end-users for feedback.</p> <p>Both products are grounded in a thorough understanding of the end-users business and real-world experience of their designers in the target audiences domain.  I feel strongly that domain knowledge is always a requirement to create and maintain a good product, but when you risk losing touch with reality in the domain, go out and talk with your customers – and I mean beyond the point of bug reports and feature requests, you need to understand what their day looks like.</p> http://stackoverflow.com/questions/500374/how-does-one-reproduce-the-inset-text-style-when-drawing-text-with-mac-os-x-cocoa/500571#500571 5 Answer by Dirk Stoop for How does one reproduce the inset text style when drawing text with Mac OS X Cocoa? Dirk Stoop 2009-02-01T10:43:02Z 2009-02-01T13:55:09Z <p>If you want it to look perfect, you'll need to draw the text twice.</p> <p>As you can see when zooming in on labels below toolbar items in any app, or for instance the bookmarks bar in Safari (Control+scroll up, control+option+\ to toggle smoothing of the zoomed in image), the text is rendered with sub-pixel anti-aliasing, at least when "Font smoothing style:" in the "Appearance" system preferences is set to medium, which it will be by default on Macs with a built-in or external Apple flat-panel display.</p> <p>NSShadow can not be used with sub-pixel anti-aliasing, so if you simply set an NSShadowAttributeName in the attributes dictionary you're drawing your string with, you will notice sub-pixel anti-aliasing is MIA when you zoom in on your rendered text.  Due to the way NSShadow is designed, no matter what color you set your NSShadow instance to —even if it is opaque— it will always be drawn with an alpha channel, making sub-pixel antialiasing impossible.</p> <p>The solution is really very simple:</p> <ol> <li>Draw your text once with a white color with some transparancy,</li> <li>Then draw it once more on top of that, a pixel higher in a shade of grey of your liking with no transparancy.</li> </ol> <p>Your 'shadow' will draw without sub-pixel antialiasing, but the actual text on top op of it will draw with it, giving you the exact same effect as standard Cocoa toolbar button item labels, or items in the Safari bookmarks bar.</p> <p>EDIT: It seems that Safari's bookmarks bar items draw their 'shadows' with sub-pixel accuracy as well, so the way they did it is probably by choosing an opaque shade of gray for the white 'shadow' text as well; drawback of that approach: you are tying your drawing code to only work well on a particular background color, e.g. if your elements will be used on a blue background, you'll want to set that color to a light shade of blue, to appear like it's semi-transparent white.</p> http://stackoverflow.com/questions/498964/the-difficulty-in-learning-new-languages-by-yourself/500737#500737 0 Answer by Dirk Stoop for The difficulty in learning new languages by yourself. Dirk Stoop 2009-02-01T12:54:22Z 2009-02-01T12:54:22Z <p>Define a project for yourself and use the tools and language best suited for it.</p> <ul> <li>You'll need to learn Objective-C to make a good iPhone app.</li> <li>You can't make a good website if you can only code in C# and Java. </li> </ul> <p>When you have a ‘mission’, learning the best languages and frameworks to complete it is easy.  Learning a language for the sake of learning a language is a lot harder.  Additionally, the hard part often is learning some new framework, the grammar of a language is much easier to internalize than figuring out what The Right Way™ of building something with a specific framework is.</p> <p>In your carreer you'll want to balance being an expert in something with being flexible enough to learn something new when you have a ‘mission’ that's best built using something you've never worked with before.</p> <p>Like others have said, the more programming you do, the less important knowledge of specific languages becomes and the easier it will become for you to solve the real hard questions, like how to code for readability, maintainability and flexibility using the skills you've built up over the years.</p> http://stackoverflow.com/questions/310479/good-database-library-orm-for-cocoa-development/468461#468461 2 Answer by Dirk Stoop for Good database library/ORM for cocoa development Dirk Stoop 2009-01-22T08:54:40Z 2009-01-22T08:54:40Z <p>We faced a similar question when we first started work on <a href="http://checkoutapp.com" rel="nofollow">Checkout</a>, our solution was to code the entire app in Python, using PyObjC.  Checkout 1 had an sqlite backend, Checkout 2 has a postgres backend.</p> <p>There are a couple of really mature and powerful ORMs on the Pyton side, such as <a href="http://www.sqlobject.org/" rel="nofollow">SQLObject</a>, which is pretty simple to work with (we used it for Checkout 1.0) and <a href="http://www.sqlalchemy.org/" rel="nofollow">SQLAlchemy</a>, which is more powerful but a bit harder to wrap your brain around (we used it for Checkout 2.0).</p> <p>One approach you could evaluate, is building the application in Objective-C, but writing the data model and database connectivity/adminstration code in Python. You can use PyObjC to create a plugin bundle from this code, that you then load into your app  That's more or less the approach we took for Checkout Server, which uses a Foundation command-line tool to administer a postgres server and the databases in it, this CLI tool in turn loads in a Python plugin bundle that has all of the actual database code in it.  End-users mostly interact with the database through a System Preferences pane, that has no clue what the database looks like, but instead uses the command-line tool to interact with it.</p> <p>Loading a plugin is simple:</p> <pre><code>NSBundle *pluginBundle = [NSBundle bundleWithPath:pluginPath]; [pluginBundle load]; </code></pre> <p>You will probably need to create .h files for the classes in your bundle that you want to have access to from your Obj-C code.</p> http://stackoverflow.com/questions/464677/mouseover-in-nstableview/464828#464828 1 Answer by Dirk Stoop for Mouseover in NSTableView Dirk Stoop 2009-01-21T10:59:08Z 2009-01-21T10:59:08Z <p>You're on the right track with -mouseEntered: and -mouseExited:.</p> <p>Look into NSView's -addTrackingRect:owner:userData:assumeInside: and -removeTrackingRect: methods. You can either set up your tableView to create trackingRects for every row that's in there whenever the contents of the tableView change, or alternatively, set up/update one tracking area on the entire tableView whenever -tile or another layout related method is called.</p> http://stackoverflow.com/questions/442808/techniques-for-implementing-hash-on-mutable-cocoa-objects/446070#446070 0 Answer by Dirk Stoop for Techniques for implementing -hash on mutable Cocoa objects Dirk Stoop 2009-01-15T08:53:03Z 2009-01-15T08:53:03Z <p>Since you are already overriding -isEqual: to do a value-based comparison, are you sure you really need to bother with -hash?</p> <p>I can't guess what exactly you need this for of course, but if you want to do value-based comparison without deviating from the expected implementation of -isEqual: to only return YES when hashes are identical, a better approach might be to mimick NSString's -isEqualToString:, so to create your own -isEqualToFoo: method instead of using or overriding -isEqual:.</p> http://stackoverflow.com/questions/431881/scm-for-xcode/432267#432267 2 Answer by Dirk Stoop for SCM for Xcode? Dirk Stoop 2009-01-11T02:53:58Z 2009-01-11T02:53:58Z <p>You can't really go wrong with using Subversion.</p> <p>If, like me, you don't like Xcode's SVN integration too much you can always choose to use the command-line tools, or one of the several GUI apps like Versions, CornerStone or SvnX. Most of these tools work together pretty well, so you're not necessarily tied in to the tool you start out with.</p> <p>I personally do most of my work with Versions, and use the command-line tools with the same working copies every once in a while.</p> <p>If you're comfortable working with command-line tools exclusively until someone creates a good GUI app around it, git is a pretty viable option too.</p> <p>disclosure: I'm one of the people who work on Versions, so I might be slightly biased ;)</p> http://stackoverflow.com/questions/418692/best-resource-to-learn-application-programming-net-cocoa-etc/419447#419447 1 Answer by Dirk Stoop for Best resource to learn application programming? (.Net/Cocoa/etc) Dirk Stoop 2009-01-07T07:02:09Z 2009-01-07T07:02:09Z <p>A good book on design patterns will take you a long way in getting a feel for how to work with some of the built in structures in cocoa, like awakwFromNib, windowDidLoad, etc.</p> <p>Here's one recommendation:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">http://www.amazon.com/dp/0201633612/</a></p> <p>After you've read a couple of chapters in that book, you might want to pick up a good book that goes specifically into the framework and development environment you want to start learning about.</p> http://stackoverflow.com/questions/397572/how-to-give-nswindow-a-particular-background-color/399243#399243 2 Answer by Dirk Stoop for How to give NSWindow a particular background color Dirk Stoop 2008-12-30T00:50:34Z 2008-12-30T00:50:34Z <p>Try calling the instance method setBackgroundColor: with a color on your window instance. What's in a name.. ;)</p> http://stackoverflow.com/questions/394372/finding-when-the-activeapplication-changes-in-osx-through-python/394416#394416 0 Answer by Dirk Stoop for Finding when the ActiveApplication changes in OSX through Python... Dirk Stoop 2008-12-26T22:52:05Z 2008-12-26T22:52:05Z <p>I'm not aware of an 'official'/good way to do this, but one hackish way to go about this is to listen for any distributed notifications and see which ones are always fired when the frontmost app changes, so you can listen for that one:</p> <p>You can set something like this up:</p> <pre><code>def awakeFromNib(self): NSDistributedNotificationCenter.defaultCenter().addObserver_selector_name_object_( self, 'someNotification:', None, None) def someNotification_(self, notification): NSLog(notification.name()) </code></pre> <p>After you've found a notification that always fires when apps are switched, you can replace the first 'None' in the addObserver_etc_ call with the name of that notification and check for the frontmost app in your 'someNotification_' method.</p> <p>In my case I noticed that the 'AppleSelectedInputSourcesChangedNotification' fired everytime I switched apps, so I would listen to that..</p> <p>Keep in mind that this can break any moment and you'll prolly be checking for a change in the frontmost app more often than needed.</p> <p>There must be a better way though.. hopefully :)</p> http://stackoverflow.com/questions/119540/business-logic-database-or-application-layer/384727#384727 1 Answer by Dirk Stoop for Business Logic: Database or Application Layer Dirk Stoop 2008-12-21T17:57:30Z 2008-12-21T17:57:30Z <p>Imho. there are two conflicting concerns with deciding where business logic goes in a relational database-driven app:</p> <ul> <li>maintainability</li> <li>reliability</li> </ul> <p>Re. maintainability:  To allow for efficient future development, business logic belongs in the part of your application that's easiest to debug and version control.</p> <p>Re. reliability:  When there's significant risk of inconsistency, business logic belongs in the database layer.  Relational databases can be designed to check for constraints on data, e.g. not allowing NULL values in specific columns, etc.  When a scenario arises in your application design where some data needs to be in a specific state which is too complex to express with these simple constraints, it can make sense to use a trigger or something similar in the database layer.</p> <p>Triggers are a pain to keep up to date, especially when your app is supposed to run on client systems you don't even have access too.  But that doesn't mean it's impossible to keep track of them or update them.  S.Lott's arguments in his answer that it's a pain and a hassle are completely valid, I'll second that and have been there too.  But if you keep those limitations in mind when you first design your data layer and refrain from using triggers and functions for anything but the absolute necessities it's manageable.</p> <p>In our application, most business logic is contained in the application's model layer, e.g. an invoice knows how to initialize itself from a given sales order.  When a bunch of different things are modified sequentially for a complex set of changes like this, we roll them up in a transaction to maintain consistency, instead of opting for a stored procedure.  Calculation of totals etc. are all done with methods in the model layer.  But when we need to denormalize something for performance or insert data into a 'changes' table used by all clients to figure out which objects they need to expire in their session cache, we use triggers/functions in the database layer to insert a new row and send out a notification (Postgres listen/notify stuff) from this trigger.</p> <p>After having our app in the field for about a year, used by hundreds of customers every day, the only thing I would change if we were to start from scratch would be to design our system for creating database functions (or stored procedures, however you want to call them) with versioning and updates to them in mind from the get-go.</p> <p>Thankfully, we do have some system in place to keep track of schema versions, so we built something on top of that to take care of replacing database functions.  It would've saved us some time now if we'd considered the need to replace them from the beginning though.</p> <p><hr /></p> <p>Of course, everything changes when you step outside of the realm of RDBMS's into tuple-storage systems like Amazon SimpleDB and Google's BigTable.  But that's a different story :)</p> http://stackoverflow.com/questions/377000/need-help-variable-creation-in-python-continuation/381712#381712 0 Answer by Dirk Stoop for need help-variable creation in Python (continuation) Dirk Stoop 2008-12-19T18:03:18Z 2008-12-19T18:03:18Z <p>Just keep in mind that 'exec' executes whatever string you pass in to it as if you typed it in your .py file or the interpreter.</p> <p>When debugging exec() related code, it's helpful to log whatever you're about to 'exec' when you run into trouble, if you did that you'd easily have noticed that E0 wasn't being assigned to the string "zbc" but to the non-existent object zbc.</p> <p>Aside from that, this code sample is really weird.  There are some legitimate uses for parsing strings into instance variables, or objects in other namespaces, most notably when you're coding a highly dynamic class that needs to do sensible stuff with messy input, or needs to setup a bunch of instance variables from a dict or string.  But without context, the code in your question looks like you're avoiding, or don't understand how, to use list() and dict() objects..</p> <p>I'd recommend telling a bit more about what you're trying to achieve next time you ask a question around something as peculiar as this.  That would give people a good opportunity to suggest a better solution, or –if you're approaching a particular problem in a completely sensible way– prevent a bunch of answers telling you that you're doing something completely wrong.</p> http://stackoverflow.com/questions/380875/looking-for-info-on-custom-drawing-of-interface-components-cocoa/381011#381011 10 Answer by Dirk Stoop for Looking for info on custom drawing of interface components (Cocoa) Dirk Stoop 2008-12-19T13:46:25Z 2008-12-19T13:46:25Z <p>It depends entirely on what you want to do.</p> <p>The "Show Raw Properties" button in Versions for instance is an NSButton subclass, because basically what we needed is standard button behavior with our own look.  One way to subclass a button is to simply implement your own -drawRect:(NSRect)rect method in the NSButton subclass, but we decided to stick with the way NSButton is implemented in Cocoa, meaning most drawing is done by the button's cell, so the implementation looks like this:</p> <p>In the NSButton subclass:</p> <pre><code>+ (Class) cellClass { return [OurButtonCell class]; } - (void)drawRect:(NSRect)rect { // first get the cell to draw inside our bounds // then draw a focus ring if that's appropriate } </code></pre> <p>In the NSButtonCell subclass (OurButtonCell):</p> <pre><code>- (void)drawInteriorWithFrame: (NSRect) rect inView: (id *) controlView { // a bunch of drawing code } </code></pre> <p>The Timeline view in Versions is actually a WebView, the page that you see in it uses javascript to collapse headers you click on. </p> <p>The rule of thumb I use for where to start out with a custom control is:</p> <ul> <li>To customize the look of a standard Cocoa control: <ul> <li>subclass the appropriate control (like e.g. NSButton and NSButtonCell)</li> <li>stick as close as makes sense to the way the default control is implemented (e.g. in a buttoncell, start from the existing attributedTitle instance method to draw the button title, unless you always want to draw with the same attributes regardless of what's set up in IB or if you need to draw with different attributes based on state, such as with the trial expiration button in Versions' main window)</li> </ul></li> <li>Creating an entirely new UI element: <ul> <li>subclass NSView and implement pretty much all mouse and key event handling (within the view, no need to redo "hitTest:") and drawing code yourself.</li> </ul></li> <li>To present something that's complex, of arbitrary height, but isn't a table: <ul> <li>See if you can do it in HTML, CSS and JS and present it in a WebView.  The web is great at laying out text, so if you can offload that responsibility to your WebView, that can be a huge savings in pain in the neck.</li> </ul></li> </ul> <p>Recommended reading on learning how to draw stuff in your own custom view's drawing methods: <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaDrawingGuide/DrawingEnviron/chapter_2_section_1.html#//apple_ref/doc/uid/TP40003290-CH202-BBCJDGHJ" rel="nofollow">Cocoa Drawing Guide</a></p> <p>Customizing the look of for instance an NSTableView is an entirely other cup of tea, thanks to the complexity of a tableview, that can happen all over the place.  You'll be implementing your own custom cells for some things you want to do in a table, but will have to change the way rows are highlighted in a subclass of the actual NSTableView object itself.  See for instance the source code for iTableView on <a href="http://mattgemmell.com/source" rel="nofollow">Matt Gemmell's site</a> for a clear example of where to draw what.</p> <p>Finally, I think Abizer's suggestion to go check out the code of BWToolkit is a great idea.  It might be a bit overwhelming at first, but if you can read and understand that code you'll have no trouble implementing your own custom views and controls.</p> http://stackoverflow.com/questions/378927/what-is-the-best-idiomatic-way-to-check-the-type-of-a-python-variable/379740#379740 4 Answer by Dirk Stoop for What is the best (idiomatic) way to check the type of a Python variable? Dirk Stoop 2008-12-18T23:48:43Z 2008-12-18T23:48:43Z <p>isinstance is preferrable over type because it also evaluates as True when you compare an object instance with it's superclass, which basically means you won't ever have to special-case your old code for using it with dict or str subclasses.</p> <p>For example:</p> <pre><code> &gt;&gt;&gt; class a_dict(dict): ... pass ... &gt;&gt;&gt; type(a_dict()) == type(dict()) False &gt;&gt;&gt; isinstance(a_dict(), dict) True &gt;&gt;&gt; </code></pre> <p>Of course, there might be situations where you wouldn't want this behavior, but those are –hopefully– a lot less common than situations where you do want it.</p> http://stackoverflow.com/questions/373020/finding-the-current-active-window-in-mac-os-x-using-python/373310#373310 4 Answer by Dirk Stoop for Finding the Current Active Window in Mac OS X using Python Dirk Stoop 2008-12-17T00:44:22Z 2008-12-17T00:44:22Z <p>This should work:</p> <pre><code>#!/usr/bin/python from AppKit import NSWorkspace activeAppName = NSWorkspace.sharedWorkspace().activeApplication()['NSApplicationName'] print activeAppName </code></pre> <p>Only works on Leopard, or on Tiger if you have PyObjC installed and happen to point at the right python binary in line one (not the case if you've installed universal MacPython, which you'd probably want to do on Tiger). But Peter's answer with the Carbon way of doing this will probably be quite a bit faster, since importing anything from AppKit in Python takes a while, or more accurately, importing something from AppKit for the first time in a Python process takes a while.</p> <p>If you need this inside a PyObjC app, what I describe will work great and fast, since you only experience the lag of importing AppKit once. If you need this to work as a command-line tool, you'll notice the performance hit. If that's relevant to you, you're probably better off building a 10 line Foundation command line tool in Xcode using Peter's code as a starting point.</p> http://stackoverflow.com/questions/1654967/python-scoping-static-misunderstanding Comment by Dirk Stoop on Python Scoping/Static Misunderstanding Dirk Stoop 2009-10-31T17:27:46Z 2009-10-31T17:27:46Z Not an answer to your question, but also noteworthy: &quot;while len(arrayOfFruit) &gt; 0:&quot; is equivalent to &quot;while arrayOfFruit:&quot;. The latter is preferable, according to the Python Style Guide at least. http://stackoverflow.com/questions/498964/the-difficulty-in-learning-new-languages-by-yourself/500737#500737 Comment by Dirk Stoop on The difficulty in learning new languages by yourself. Dirk Stoop 2009-08-26T10:12:20Z 2009-08-26T10:12:20Z Yeah, discussions of whether writing HTML/CSS should be considered 'coding', that's more or less what I was going for: Not a concrete answer to the question but merely an illustration for my idea that learning a language is easiest when you have a need to learn it. http://stackoverflow.com/questions/295333/nsalert-without-bouncing-dock-icon/295453#295453 Comment by Dirk Stoop on NSAlert without bouncing dock icon Dirk Stoop 2009-08-18T19:40:20Z 2009-08-18T19:40:20Z Glad to be of help :) http://stackoverflow.com/questions/900415/cocoa-prevent-caching-of-javascript-in-webkit-safari-beta-4-bug/900470#900470 Comment by Dirk Stoop on Cocoa - Prevent caching of Javascript in WebKit - Safari Beta 4 bug? Dirk Stoop 2009-05-23T22:07:24Z 2009-05-23T22:07:24Z Glad it worked out :) http://stackoverflow.com/questions/846141/how-do-i-check-what-current-view-is Comment by Dirk Stoop on How do I check what current view is? Dirk Stoop 2009-05-10T23:21:35Z 2009-05-10T23:21:35Z You need to be a bit more specific in your questions in order to get useful answers. http://stackoverflow.com/questions/845248/how-would-you-make-a-status-items-title-be-an-image-not-text/845253#845253 Comment by Dirk Stoop on How would you make a status item's title be an image not text? Dirk Stoop 2009-05-10T21:33:30Z 2009-05-10T21:33:30Z Google for NSImage, the first hit is the class documentation. In there you can find how to initialize an image from a file path with approximately 5 minutes of reading work. http://stackoverflow.com/questions/841551/nsview-setframe-not-working/842077#842077 Comment by Dirk Stoop on [NSView setFrame:] not working? Dirk Stoop 2009-05-09T11:30:03Z 2009-05-09T11:30:03Z Yep, exactly :) If you surround your setFrame: call with [[theScrollView contentView] setAutoresizesSubviews: NO]; and toggle it back on when done, I think that should do the trick. http://stackoverflow.com/questions/840729/whats-the-name-of-the-object-that-has-an-delegate Comment by Dirk Stoop on What's the name of the object, that has an delegate? Dirk Stoop 2009-05-08T22:32:22Z 2009-05-08T22:32:22Z Usually one uses a name to describe the 'dog'. e.g. if you're working with an NSTableView, your instance variable in the delegate could be called 'tableView' http://stackoverflow.com/questions/431881/scm-for-xcode/432267#432267 Comment by Dirk Stoop on SCM for Xcode? Dirk Stoop 2009-05-05T17:22:40Z 2009-05-05T17:22:40Z A paradigm by itself does not make for a great workflow. &#160;The mere fact that you can choose between the command line client, Cornerstone, Versions, SvnX, etc. gives SVN a very tangible advantage. http://stackoverflow.com/questions/815063/how-do-you-make-your-app-open-at-login/815151#815151 Comment by Dirk Stoop on How do you make your App open at login? Dirk Stoop 2009-05-02T20:30:06Z 2009-05-02T20:30:06Z Hi Joshua, There's quite a lot of ground to cover there. The code I posted should help you figure out how to add something to the login items. Actually hooking that up to a checkbox should be trivial if you're already a bit comfortable working on a Cocoa project. If you're not, I'd recommend starting here: <a href="http://tinyurl.com/3z4r9b" rel="nofollow">tinyurl.com/3z4r9b</a> http://stackoverflow.com/questions/765104/how-can-you-use-an-image-as-a-background-for-a-text-field-in-cocoa/766061#766061 Comment by Dirk Stoop on How Can You Use An Image As A Background For A Text Field In Cocoa? Dirk Stoop 2009-04-19T23:13:22Z 2009-04-19T23:13:22Z With your example above, the textField's cell won't draw. If you add [super drawRect:rect]; at the end of it, both that, and the focus ring drawing should work again. Since you already setDrawsBackground to NO, super's drawRect shouldn't mess anything up. Another thing that might mess things up is the fieldEditor's drawing of a background; not sure about that though. Final thing: You'll want to make sure the textField has a nearby opaque ancestor to prevent poor drawing performance. http://stackoverflow.com/questions/491681/how-to-add-one-record-to-a-bound-mutablearray-with-code/500704#500704 Comment by Dirk Stoop on How to add one 'record' to a bound MutableArray with code Dirk Stoop 2009-02-01T23:50:44Z 2009-02-01T23:50:44Z Could it be that in IB, you're hooking that button up to the NSArrayController, and in code you're trying to work with the array directly? NSArrayController has methods to add new objects... http://stackoverflow.com/questions/500693/should-programmers-care-about-their-customers-businesses/500720#500720 Comment by Dirk Stoop on Should programmers care about their customer's businesses? Dirk Stoop 2009-02-01T13:59:30Z 2009-02-01T13:59:30Z Thanks Mat :) — Just wanted to add that even if it may seem like a waste of time that your developers could use to fix bugs, etc. it can be very inspiring to take a look from the other side.&#160; Whenever we visit a customer, I return to my desk with extra drive to keep going and improving our app. http://stackoverflow.com/questions/396856/how-to-instantiate-a-class-in-python/396884#396884 Comment by Dirk Stoop on How to instantiate a class in python Dirk Stoop 2008-12-29T00:11:38Z 2008-12-29T00:11:38Z Sorry f/t downvote; You're absolutely right, but that's not a very helpful answer http://stackoverflow.com/questions/396856/how-to-instantiate-a-class-in-python/396876#396876 Comment by Dirk Stoop on How to instantiate a class in python Dirk Stoop 2008-12-29T00:10:48Z 2008-12-29T00:10:48Z Sorry for the downvote, but I think you misinterpreted the question. It seems that stu is new to Python, so directing him to good resources about Python basics is probably better than showing him how to use static methods ;)