User Hagelin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:32:26Z http://stackoverflow.com/feeds/user/5156 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects 19 Git ignore file for Xcode projects Hagelin 2008-09-08T11:07:49Z 2009-11-12T16:03:23Z <p>Which files should I include in .gitignore when using Git in conjunction with Xcode?</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/161743#161743 29 Answer by Hagelin for What are those little Xcode tips & tricks you wish you knew about 2 years ago? Hagelin 2008-10-02T10:57:09Z 2009-08-28T16:20:50Z <p>Get <a href="http://cocoasamurai.blogspot.com/2008/02/complete-xcode-keyboard-shortcut-list.html" rel="nofollow" title="Complete Xcode Keyboard Shortcut List">Colin Wheeler's Complete Xcode Keyboard Shortcut List</a> (available as PDF or PNG). Print it and keep it somewhere visible (I've got it on the wall next to my screen).</p> <p>edit: <a href="http://cocoasamurai.blogspot.com/2009/08/xcode-shortcuts-updated-for-xcode-32-on.html" rel="nofollow" title="Xcode Shortcuts Updated for Xcode 3.2 on Mac OS X 10.6 Snow Leopard">Updated versions for Xcode 3.2</a> </p> http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects/49488#49488 22 Answer by Hagelin for Git ignore file for Xcode projects Hagelin 2008-09-08T11:14:32Z 2009-07-06T12:39:56Z <p>Based on <a href="http://boredzo.org/blog/archives/2008-03-20/hgignore-for-mac-os-x-applications" rel="nofollow" title=".hgignore for Mac OS X applications">this guide for Mercurial</a> my .gitignore includes:</p> <pre><code>.DS_Store *.swp *~.nib build/ *.pbxuser *.perspective *.perspectivev3 </code></pre> <p>I've also chosen to include:</p> <pre><code>*.mode1v3 *.mode2v3 </code></pre> <p>which, according to <a href="http://lists.apple.com/archives/Xcode-users/2007/Oct/msg00465.html" rel="nofollow" title="Re: What are *.mode1v3 and *.mode2v3 files?">this Apple mailing list post</a>, are "user-specific project settings". </p> http://stackoverflow.com/questions/49442/when-to-create-interface-builder-plug-in-for-custom-view 1 When to create Interface Builder plug-in for custom view? Hagelin 2008-09-08T10:39:44Z 2008-11-10T15:07:07Z <p>When do you recommend integrating a custom view into Interface Builder with a plug-in? When skimming through Apple's <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/IBPlugInGuide/CreatingPluginBundle/chapter_2_section_3.html#//apple_ref/doc/uid/TP40004323-CH4-DontLinkElementID_15" rel="nofollow" title="Interface Builder Plug-In Programming Guide">Interface Builder Plug-In Programming Guide</a> I found:</p> <blockquote> <ul> <li>Are your custom objects going to be used by only one application?</li> <li>Do your custom objects rely on state information found only in your application?</li> <li>Would it be problematic to encapsulate your custom views in a standalone library or framework?</li> </ul> <p>If you answered yes to any of the preceding questions, your objects may not be good candidates for a plug-in.</p> </blockquote> <p>That answers some of my questions, but I would still like your thoughts on when it's a good idea. What are the benefits and how big of a time investment is it? </p> http://stackoverflow.com/questions/131435/using-applescript-to-hide-keynote-text-fields-in-a-slide/132399#132399 1 Answer by Hagelin for Using AppleScript to hide Keynote Text Fields in A Slide Hagelin 2008-09-25T09:53:40Z 2008-09-25T12:46:41Z <p>AFAIK, with Applescript you can only access the title and the body boxes of the slides. If the text you wish to remove is consistently in either of these boxes the simplest solution would be to loop through the slides replacing that text and then saving a copy of the document.</p> <pre><code>tell application "Keynote" open "/Path/To/Document" repeat with currentSlide in slides of first slideshow set title of currentSlide to " " set body of currentSlide to " " end repeat save first slideshow in "/Path/To/Document without answers" end tell </code></pre> <p>If the text is in a container created with the textbox tool, I don't think you can solve it with Applescript, but Keynote uses an XML based file format, so you could try doing it by editing the XML with your scripting language of choice. The XML schema is documented in <a href="http://developer.apple.com/documentation/AppleApplications/Conceptual/iWork2-0_XML/index.html" rel="nofollow" title="iWork Programming Guide">the iWork Programming Guide</a>.</p> http://stackoverflow.com/questions/121147/determine-if-a-directory-is-a-bundle-or-package-in-the-mac-os-x-terminal/121703#121703 3 Answer by Hagelin for Determine if a directory is a bundle or package in the Mac OS X terminal? Hagelin 2008-09-23T15:24:15Z 2008-09-23T19:04:46Z <p>While you can identify some bundles based on the existens of './contents/Info.plist", it isn't required for all bundle types (e.g. documents and legacy bundles). Finder also identifies a directory as a bundle based on file extension (.app, .bundle, etc) or if the bundle bit is set.</p> <p>To check the bundle bit from the command line use:</p> <pre><code>getFileInfo -aB directory_name </code></pre> <p>In order to catch all cases I would check:</p> <ul> <li>Is the bundle bit set?</li> <li>If not, does it have a file extension that identifies it as a bundle? (see <a href="http://stackoverflow.com/questions/121147/determine-if-a-directory-is-a-bundle-or-package-in-the-mac-os-x-terminal#122426">Mecki's answer</a>)</li> <li>If not, it probably isn't a bundle.</li> </ul> http://stackoverflow.com/questions/116657/how-do-you-create-an-osx-application-dmg-from-a-python-package/116946#116946 4 Answer by Hagelin for How do you create an osx application/dmg from a python package? Hagelin 2008-09-22T19:24:26Z 2008-09-23T09:34:57Z <p><strong>Creating custom disk image:</strong></p> <ul> <li>Software: <ul> <li><a href="http://freespace.virgin.net/jeremy.dronfield/skoobysoft/utilities/dmgp.html" rel="nofollow" title="DMG Packager">DMG Packager</a></li> <li><a href="http://sourcebits.com/dmg/" rel="nofollow" title="DMG Architect">DMG Architect</a></li> <li><a href="http://www.kingdom-era.com/products/dmgdesigns/" rel="nofollow" title="DMG Designs">DMG Designs</a></li> <li><a href="http://www.mindvision.com/filestorm.asp" rel="nofollow" title="Mindvision Filestorm">FileStorm</a></li> </ul></li> <li>Guides to doing it manually: <ul> <li><a href="http://digital-sushi.org/entry/how-to-create-a-disk-image-installer-for-apple-mac-os-x/" rel="nofollow" title="How to Create a Disk Image Installer for Apple Mac OS X">How to Create a Disk Image Installer for Apple Mac OS X</a></li> <li><a href="http://www.ploem.be/blog/?page_id=26" rel="nofollow" title="How to create a custom dmg installer on mac">How to create a custom dmg installer on mac</a></li> <li><a href="http://www.astoundingcookie.com/2008/07/creating-a-custom-dmg-replace-the-icon-background-and-more/" rel="nofollow" title="Creating a Custom DMG - replace the icon, background, and more!">Creating a Custom DMG - replace the icon, background, and more!</a></li> <li><a href="http://murphymac.com/slib/customized-dmg-container.htm" rel="nofollow" title="Video tutorial: Customized DMG Container">Video tutorial: Customized DMG Container</a></li> </ul></li> </ul> <p><strong>edit:</strong> The DMG part of the question is also answered in this question: <a href="http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools" rel="nofollow" title="How do I create a nice-looking DMG for Mac OS X using command-line tools?">"How do I create a nice-looking DMG for Mac OS X using command-line tools?"</a></p> http://stackoverflow.com/questions/111292/free-version-control-services/111414#111414 2 Answer by Hagelin for Free version control services? Hagelin 2008-09-21T17:02:21Z 2008-09-21T17:02:21Z <p><a href="http://unfuddle.com/" rel="nofollow" title="Unfuddle">Unfuddle.com</a> has a free plan with both svn and git hosting.</p> http://stackoverflow.com/questions/100959/mac-sqlite-editor/101262#101262 2 Answer by Hagelin for Mac SQLite editor Hagelin 2008-09-19T11:48:26Z 2008-09-19T12:58:20Z <p>Try a <a href="http://www.versiontracker.com/php/qs.php?mode=basic&amp;action=search&amp;str=sqlite&amp;srchArea=macosx&amp;submit=Go" rel="nofollow" title="Versiontracker.com: Search results for 'sqlite'">versiontracker search</a> instead. <a href="http://www.sqlabs.net/sqlitemanager.php" rel="nofollow">SqliteManager from SQLabs</a> ($49, Mac &amp; Windows) is the one I prefer, but I haven't really evaluated the other alternatives.</p> http://stackoverflow.com/questions/88691/whats-the-best-app-to-draw-ui-wireframes-on-the-mac-and-why/91444#91444 1 Answer by Hagelin for what's the best app to draw UI wireframes on the mac? (And why) Hagelin 2008-09-18T10:19:51Z 2008-09-18T10:25:36Z <p>I've been playing around with <a href="http://www.balsamiq.com/" rel="nofollow" title="Balsamiq Mockups">Balsamiq Mockups</a> and it's OK for basic wireframes. I still prefer pen and paper sketches that are later refined in Photoshop when working on my own, but Balsamiq is useful when working in a team. </p> http://stackoverflow.com/questions/56811/what-is-the-best-remote-backup-provider/56830#56830 4 Answer by Hagelin for What is the best remote backup provider? Hagelin 2008-09-11T15:10:39Z 2008-09-11T15:27:01Z <p><a href="http://www.amazon.com/gp/browse.html?node=16427261" rel="nofollow" title="Amazon S3">Amazon S3</a> with a front-end such as <a href="http://www.jungledisk.com/" rel="nofollow" title="Jungle Disk">Jungle Disk</a>. Well-known company behind it, reasonable pricing and a wealth of tools and libraries available.</p> http://stackoverflow.com/questions/55577/how-can-i-test-my-web-pages-in-microsoft-internet-explorer-on-a-mac/55832#55832 2 Answer by Hagelin for How can I test my web pages in Microsoft Internet Explorer on a Mac? Hagelin 2008-09-11T05:11:28Z 2008-09-11T05:11:28Z <p><a href="http://litmusapp.com/" rel="nofollow" title="Litmus">Litmus</a> is another web-based alternative.</p> http://stackoverflow.com/questions/53309/best-way-to-draw-text-with-opengl-and-cocoa/53959#53959 4 Answer by Hagelin for Best way to draw text with OpenGL and Cocoa? Hagelin 2008-09-10T13:02:20Z 2008-09-10T13:02:20Z <p>Have you taken a look at the <a href="http://developer.apple.com/samplecode/CocoaGL/index.html" rel="nofollow" title="Cocoa OpenGL">Cocoa OpenGL sample code</a>? It includes "a texture class for strings, showing how to use an NSImage to write a string into and then texture from for high quality font rendering."</p> http://stackoverflow.com/questions/47210/is-there-a-good-fogbugz-client-for-mac-os-x/49399#49399 2 Answer by Hagelin for Is there a good Fogbugz client for Mac OS X? Hagelin 2008-09-08T10:01:21Z 2008-09-08T10:01:21Z <p>I'm happy with using the web interface. I've used <a href="http://fluidapp.com/" rel="nofollow" title="Fluid">Fluid</a> to create a custom browser for it, and even gotten some help making <a href="http://www.flickr.com/groups/fluid_icons/discuss/72157605174142635/" rel="nofollow">a pretty icon</a>. </p> http://stackoverflow.com/questions/121147/determine-if-a-directory-is-a-bundle-or-package-in-the-mac-os-x-terminal/122426#122426 Comment by Hagelin on Determine if a directory is a bundle or package in the Mac OS X terminal? Hagelin 2008-09-23T19:00:42Z 2008-09-23T19:00:42Z In Leopard the command is &quot;/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump&quot;