User millenomi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:38:55Z http://stackoverflow.com/feeds/user/6061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1744000/how-do-i-link-to-an-objective-c-category-within-a-doxygen-comment 0 How do I link to an Objective-C category within a Doxygen comment? millenomi 2009-11-16T18:34:28Z 2009-11-18T08:43:01Z <p>Say I have an ObjC category defined as <code>@interface NSObject (L0SomeCategory)</code> that defines a <code>-doSomething</code> method that I documented. How do I link to its docs from another Doxygen block? I tried unsuccessfully:</p> <ul> <li><code>NSObject::doSomething</code></li> <li><code>NSObject(L0SomeCategory)::doSomething</code></li> <li><code>L0SomeCategory::doSomething</code></li> </ul> <p>Any ideas?</p> http://stackoverflow.com/questions/1256219/cocoa-automated-webview/1689660#1689660 1 Answer by millenomi for Cocoa automated WebView millenomi 2009-11-06T19:09:59Z 2009-11-06T19:09:59Z <p>You can obtain DOMNode* objects corresponding exactly to JavaScript Node objects by using a <code>WebView</code>'s <code>-windowScriptObject</code> method (that returns the <code>WebScriptingObject*</code> that corresponds to the JavaScript <code>window</code> object) or any frame's <code>-DOMDocument</code> method to return that frame's JavaScript <code>document</code> method.</p> <p>Example:</p> <pre><code>DOMDocument* d = [[webView mainFrame] DOMDocument]; [[[d getElementsByTagName:@"a"] item:0] click]; </code></pre> http://stackoverflow.com/questions/58424/a-lightweight-application-framework-for-php 5 A lightweight application framework for PHP? millenomi 2008-09-12T07:04:31Z 2009-09-14T17:06:02Z <p>I have long been a fan of <a href="http://code.whytheluckystiff.net/camping" rel="nofollow">_why's Camping</a> microframework -- lightweight, great for microscopic applications (low concurrency, easy to use and edit and maintain), which is what I do. I'd love to know if there's something similar for PHP; full-blown app frameworks like CakePHP or Symphony are very large for what I do, but I can't seem to find nothing "less".</p> <p>What PHP framework would you prefer, in this situation?</p> http://stackoverflow.com/questions/171633/accessing-crash-logs-on-iphones-used-for-ad-hoc-distribution/172035#172035 8 Answer by millenomi for Accessing crash logs on iPhones used for ad hoc distribution millenomi 2008-10-05T14:06:17Z 2009-08-20T21:58:14Z <p>Two ways:</p> <ul> <li><p>iTunes syncs all crash reports during a regular sync. They can be found in Library/Logs/CrashReporter/MobileDevice on a Mac and probably somewhere in %APPDATA% on Windows.</p></li> <li><p><strike> You can use the <a href="http://www.apple.com/downloads/macosx/apple/application%5Fupdates/iphoneconfigurationutility101formacosx.html" rel="nofollow">iPhone Configuration Utility for Mac OS X</a> on any Mac to access the phone's console and crash logs. Note: <em>the iPhone Web Configuration Utility, which is available for Windows and Mac (note the "web" in the name) <strong>does not</strong> allow this kind of access and only provides a portion of the Configuration Utility's features</em>. </strike> Er, no you can't. Xcode provides this facility in the Organizer (from the Window menu), but not iPCU.</p></li> </ul> http://stackoverflow.com/questions/1270762/what-can-cause-bonjour-to-not-call-me-back-during-browsing 0 What can cause Bonjour to not call me back during browsing? millenomi 2009-08-13T08:26:15Z 2009-08-13T08:33:47Z <p>I have a rather popular Bonjour-based application in App Store. It works perfectly, but around 0.2% of my users report a bizarre bug: "no arrows appear on the edges of the screen, so I can't share stuff with other people!". Needless to say, displaying these arrows is tied to the browsing of a particular Bonjour service on the local domain.</p> <p>The problem is, the Apple review team seems to intermittently happen to be in this 0.2%. This isn't good for review results, as you might imagine. No matter how much I try, I cannot reproduce this bug.</p> <p>From the few logs I have, it looks like my app is running correctly, just not receiving <code>NSNetServiceBrowser</code> delegate calls. What can cause this?</p> <p>Things I've tried:</p> <ul> <li>Having a shorter service name &lt; 14 chars in length to be in spec.</li> <li>Publishing on <code>@"local."</code> rather than <code>@""</code> (aka Go Look For The Default Registration Domain). My app is rather useless on a wide-area network anyway.</li> </ul> <p>Things I haven't tried: restarting the browsing machinery periodically. (I have two browsers, though, one looking for the legacy longer name, one for the new shorter one.)</p> <p>What to do?</p> http://stackoverflow.com/questions/885015/how-to-parse-a-rfc-2822-date-time-into-a-python-datetime 2 How to parse a RFC 2822 date/time into a Python datetime? millenomi 2009-05-19T21:03:05Z 2009-08-11T05:50:00Z <p>I have a date of the form specified by RFC 2822 -- say <code>Fri, 15 May 2009 17:58:28 +0000</code>, as a string. Is there a quick and/or standard way to get it as a <code>datetime</code> object in Python 2.5? I tried to produce a strptime format string, but the +0000 timezone specifier confuses the parser.</p> http://stackoverflow.com/questions/200850/are-there-any-open-source-iphone-applications-around/1163915#1163915 1 Answer by millenomi for Are there any Open-source iPhone applications around? millenomi 2009-07-22T08:45:54Z 2009-07-22T08:45:54Z <p>Mover is (regrettably, due to the code quality, but still) open source: <a href="http://github.com/millenomi/mover-packaging/" rel="nofollow">http://github.com/millenomi/mover-packaging/</a>.</p> http://stackoverflow.com/questions/873017/poedit-workaround-for-dynamic-gettext/874492#874492 1 Answer by millenomi for poedit workaround for dynamic gettext millenomi 2009-05-17T12:17:36Z 2009-05-17T12:17:36Z <p>No -- this is not possible, because the editor (and the <code>gettext</code> tools) are reading your sources, not executing your program. You'll have to keep the dummy calls or add the keys to the translation files yourself.</p> http://stackoverflow.com/questions/600660/the-file-an-iconref-comes-from/600753#600753 0 Answer by millenomi for The file an IconRef comes from millenomi 2009-03-01T23:05:50Z 2009-03-01T23:05:50Z <p>That's because, once loaded, the system does not keep a reference to the icon file the icon came from.</p> <p>Your best bet is to search for <code>*.icns</code> files in <code>/System</code>, unfortunately. Note that those icons are under Apple's copyright, and you shouldn't reuse them (except when loaded through their APIs).</p> http://stackoverflow.com/questions/123902/how-do-i-sign-a-java-applet-using-a-certificate-in-my-mac-keychain 9 How do I sign a Java applet using a certificate in my Mac keychain? millenomi 2008-09-23T21:09:07Z 2009-03-01T01:33:07Z <p>I have a self-signed root certificate with just the code signing extension (no other extensions) in my Mac keychain; I use it to sign all code coming out of ∞labs using Apple's codesign tool and it works great.</p> <p>I was looking to expand myself a little and doing some Java development. I know Apple provides a KeyStore implementation that reads from the Keychain, and I can list all certificates I have in the 'chain with:</p> <pre><code>keytool -list -provider com.apple.crypto.provider.Apple -storetype KeychainStore -keystore NONE -v </code></pre> <p>However, whenever I try to use jarsigner to sign a simple test JAR file, I end up with:</p> <pre><code>$ jarsigner -keystore NONE -storetype KeychainStore -providerName Apple a.jar infinitelabs_codesigning_2 Enter Passphrase for keystore: &lt;omitted&gt; jarsigner: Certificate chain not found for: infinitelabs_codesigning_2. infinitelabs_codesigning_2 must reference a valid KeyStore key entry containing a private key and corresponding public key certificate chain. </code></pre> <p>What am I doing wrong?</p> <p>(The certificate was created following <a href="http://developer.apple.com/documentation/Security/Conceptual/CodeSigningGuide/Procedures/chapter_3_section_2.html#//apple_ref/doc/uid/TP40005929-CH4-SW1" rel="nofollow">Apple's instructions for obtaining a signing identity</a>.)</p> http://stackoverflow.com/questions/574163/right-align-text-in-uipickerview/574739#574739 0 Answer by millenomi for right align text in UIPickerView millenomi 2009-02-22T11:05:15Z 2009-02-22T11:05:15Z <p>Make sure you:</p> <ul> <li>Provide an explicit frame that is as high and wide as needed;</li> <li>Set the label's display opaqueness (via .opaque = YES or NO) and background color appropriately (you usually want NO and [UIColor clearColor] respectively).</li> <li>Set the font explicitly.</li> </ul> http://stackoverflow.com/questions/574680/core-animation-sheet-like-window-sliding/574729#574729 1 Answer by millenomi for Core Animation - Sheet-like Window Sliding millenomi 2009-02-22T11:02:19Z 2009-02-22T11:02:19Z <p>Since you're talking of a NSView, you're probably using Cocoa's animation support, not CA directly. In this case, you just need to set the view's frame through the view's animator object:</p> <pre><code>[theView setFrame:offscreenFrame]; [[theView animator] setFrame:finalFrame]; </code></pre> <p>Unfortunately, Cocoa view animation interacts badly with the more advanced features of CA, like setting an easing. You might have more luck using NSViewAnimation instead, which is not Core Animation-backed and allows for a little more flexibility.</p> http://stackoverflow.com/questions/236220/is-there-a-windows-forms-native-way-to-flash-a-forms-title-bar 2 Is there a Windows Forms native way to flash a form's title bar? millenomi 2008-10-25T10:43:52Z 2008-12-19T11:22:45Z <p>Is there a correct way in Windows Forms to flash a titlebar without having to drop to P/Invoking FlashWindow?</p> <p>I'm using .NET 2.0 for compatibility and size reasons, so maybe I just missed the method because it's in newer versions of the .NET framework.</p> http://stackoverflow.com/questions/363889/webview-renders-in-the-wrong-location-in-my-screensaverview/364125#364125 1 Answer by millenomi for WebView renders in the wrong location in my ScreenSaverView millenomi 2008-12-12T21:00:59Z 2008-12-12T21:00:59Z <p>I think the frame you're giving the WebView is in the wrong coordinates. Remember that a view's frame is expressed in terms of the superview's coordinate system (bounds).</p> <p>You should be making the view as big as the superview's <code>-bounds</code>, if I get correctly what you want to do: usually a rect from (0,0) to (width,height).</p> http://stackoverflow.com/questions/347572/how-do-i-refresh-a-table-view-after-returning-from-a-detail-view/347598#347598 4 Answer by millenomi for How do I refresh a table view after returning from a "detail view?" millenomi 2008-12-07T13:56:52Z 2008-12-07T13:56:52Z <p>You should really do that in <code>viewWillAppear:</code>.</p> <p>Also, you can get the visible cells of the table view by using its <code>visibleCells</code> method. Due to the way table views work, other cells do not exist at all -- scrolling will trigger the delegate method and create new cells (or dequeue existing ones if you use <code>dequeue...</code>).</p> http://stackoverflow.com/questions/340232/animate-opacity-out-insert-html-animate-opacity-in/340310#340310 0 Answer by millenomi for animate opacity out, insert html, animate opacity in millenomi 2008-12-04T11:46:17Z 2008-12-04T11:46:17Z <p>Apply the animation to a container instead, or use the .css() method to set the opacity (inline styles might interfere with jQuery's ability to animate the corresponding properties).</p> http://stackoverflow.com/questions/59129/what-platforms-javafx-is-will-be-supported-on 2 What platforms JavaFX is/will be supported on? millenomi 2008-09-12T14:28:14Z 2008-12-03T19:43:41Z <p>I have read about JavaFX, and like all new technologies I wanted to get my hands "dirty" with it. However, although it talks of multiplatform support, I can't find specifics on this.</p> <p>What platforms support a JavaFX application? All those with Java SE? ME? Does it depend upon the APIs in JavaFX that I use?</p> http://stackoverflow.com/questions/306453/quantum-computing-hype-or-hyper/306481#306481 0 Answer by millenomi for Quantum Computing - Hype Or Hyper? millenomi 2008-11-20T19:07:15Z 2008-11-20T19:07:15Z <p>Quantum computing is a tool; it's just a tool too raw to have any sort of useful application as of this moment, but who knows.</p> http://stackoverflow.com/questions/293956/jquery-with-elements-generated-dynamically/293990#293990 0 Answer by millenomi for jQuery with elements generated dynamically millenomi 2008-11-16T15:28:26Z 2008-11-16T15:28:26Z <p>Also look at <a href="http://blogs.sun.com/greimer/entry/reglib_javascript_library_now_available" rel="nofollow">reglib</a>, a similar library that allows for the style of programming you're looking for.</p> http://stackoverflow.com/questions/233621/os-x-file-duplication-converts-text-encoding-by-default/237053#237053 1 Answer by millenomi for OS X file duplication converts text encoding by default millenomi 2008-10-25T21:37:38Z 2008-10-25T21:37:38Z <p>Please note that there is indeed an extended attribute in OS X that stores the file's encoding for text files produced through <code>-[NSString writeToFile:...]</code> or similar facilities, which may not be getting copied along with the file.</p> http://stackoverflow.com/questions/236220/is-there-a-windows-forms-native-way-to-flash-a-forms-title-bar/236275#236275 0 Answer by millenomi for Is there a Windows Forms native way to flash a form's title bar? millenomi 2008-10-25T11:43:52Z 2008-10-25T11:43:52Z <p>@DrJokepu:</p> <p>The .Activate() method, in 2.0, also brings the window to the front despite what the documentation says (i.e. other applications that are in front lose focus). Just tried this.</p> <p>This is unfortunately exactly what I was trying to avoid.</p> http://stackoverflow.com/questions/226365/is-it-possible-to-remove-the-cancel-button-in-uiimagepickercontroller/226998#226998 1 Answer by millenomi for Is it possible to remove the "cancel" button in UIImagePickerController? millenomi 2008-10-22T18:26:19Z 2008-10-22T18:26:19Z <p>Not in a supported way. UIImagePickerController is designed to be shown as a modal controller.</p> http://stackoverflow.com/questions/218450/loading-custom-framework-in-iphone/218465#218465 3 Answer by millenomi for loading custom framework in iphone millenomi 2008-10-20T13:39:54Z 2008-10-20T13:39:54Z <p>Dynamic linking of any kind is not supported on the iPhone. I think the fact you're trying to do dynamic linking is confusing the simulator's careful library loading thingamagig (which if I'm not mistaken it's the source of the errors above).</p> <p>If the license allows this, link the external UPnP code statically into your app instead.</p> http://stackoverflow.com/questions/218388/stitch-picture-in-iphone/218454#218454 5 Answer by millenomi for stitch picture in iphone millenomi 2008-10-20T13:36:35Z 2008-10-20T13:36:35Z <p>Use <code>UIGraphicsBeginImageContext()</code>, draw in it, then use <code>UIGraphicsGetImageFromCurrentImageContext()</code>. Remember to pop the context with <code>UIGraphicsEndImageContext()</code> afterwards.</p> <p>You should avoid creating an extra image if you simply want to display the two images onscreen, due to the limited memory available on the device. Instead, display them using appropriate <code>drawInRect:</code> calls to avoid copying.</p> http://stackoverflow.com/questions/218252/is-there-a-way-to-place-a-pin-into-the-google-maps-iphone-app-using-openurl/218376#218376 0 Answer by millenomi for Is there a way to place a pin into the google maps iphone app using openURL? millenomi 2008-10-20T13:16:02Z 2008-10-20T13:16:02Z <p>A reference guide to all URLs supported by the iPhone OS: <a href="http://developer.apple.com/iphone/library/featuredarticles/iPhoneURLScheme_Reference/index.html" rel="nofollow">iPhone URL Scheme Reference</a>. Requires logging in as a registered iPhone developer (free).</p> http://stackoverflow.com/questions/215457/display-wpf-modal-window-dialog-panel-the-same-way-as-a-nswindow-can-be-displayed/218370#218370 3 Answer by millenomi for Display WPF modal window/dialog/panel the same way as a NSWindow can be displayed like a sheet in Cocoa millenomi 2008-10-20T13:14:15Z 2008-10-20T13:14:15Z <p>Don't. It's not the expected user experience on Windows. Use modal dialogs or in-window navigation instead.</p> http://stackoverflow.com/questions/183426/how-to-change-the-height-of-an-nsprogressindicator/183890#183890 1 Answer by millenomi for How to change the height of an NSProgressIndicator? millenomi 2008-10-08T17:26:05Z 2008-10-08T17:26:05Z <p>Those calls should have worked. In Interface Builder, in the Geometry pane (the one whose icon is a ruler), there is an equivalent control size selector that offers "Regular" and "Small" sizes.</p> http://stackoverflow.com/questions/181886/xcode-performance-tool-thinks-the-iphone-simulator-has-a-camera/181980#181980 1 Answer by millenomi for xCode Performance Tool thinks the iPhone simulator has a camera millenomi 2008-10-08T09:54:35Z 2008-10-08T09:54:35Z <p><a href="http://bugreport.apple.com/" rel="nofollow">File a bug with Apple</a>. They <em>do</em> read them.</p> http://stackoverflow.com/questions/175264/synchronizing-svn-repo-from-local-to-server/175439#175439 1 Answer by millenomi for Synchronizing SVN repo from local to server? millenomi 2008-10-06T17:59:17Z 2008-10-06T17:59:17Z <p>If you are stuck with an SVN server, but want a local repository and easy sync between the two, you should use <a href="http://svk.bestpractical.com/view/HomePage" rel="nofollow">SVK</a>. It creates a local mirror you can branch; commits to the mirror get merged back to the trunk.</p> http://stackoverflow.com/questions/174309/uitableview-didselectrow-while-editing/174603#174603 4 Answer by millenomi for UITableView didSelectRow while editing? millenomi 2008-10-06T14:49:09Z 2008-10-06T14:49:09Z <p>Set <code>table.allowsSelectionDuringEditing</code> to <code>YES</code>.</p> http://stackoverflow.com/questions/171633/accessing-crash-logs-on-iphones-used-for-ad-hoc-distribution/172035#172035 Comment by millenomi on Accessing crash logs on iPhones used for ad hoc distribution millenomi 2009-08-20T21:58:38Z 2009-08-20T21:58:38Z Edited to fix the error. http://stackoverflow.com/questions/885015/how-to-parse-a-rfc-2822-date-time-into-a-python-datetime/885049#885049 Comment by millenomi on How to parse a RFC 2822 date/time into a Python datetime? millenomi 2009-05-20T07:21:02Z 2009-05-20T07:21:02Z Thank you; that does the trick. :) http://stackoverflow.com/questions/873551/iphone-api-for-power-configuration-parameters/873605#873605 Comment by millenomi on iPhone API for power, configuration parameters millenomi 2009-05-17T12:22:13Z 2009-05-17T12:22:13Z Reminder: Private methods use can cause Apple to reject your software, and can change between releases of the OS with no warning (hence user crashes). http://stackoverflow.com/questions/574288/uitabbar-app-and-button-that-plays-music-in-a-tab/574447#574447 Comment by millenomi on UITabBar app and button that plays music in a tab millenomi 2009-02-22T11:03:32Z 2009-02-22T11:03:32Z viewDidDisappear: isn't called by UITabBarController unfortunately. http://stackoverflow.com/questions/159934/one-to-many-to-itself/159968#159968 Comment by millenomi on One To Many To Itself millenomi 2008-10-01T22:25:05Z 2008-10-01T22:25:05Z I'm pretty sure this counts as a degenerate case of transitivity. http://stackoverflow.com/questions/159221/how-do-i-create-a-bundle-of-reusable-code-in-xcode/159403#159403 Comment by millenomi on How do I create a bundle of reusable code in Xcode? millenomi 2008-10-01T20:31:27Z 2008-10-01T20:31:27Z As I state below, it IS possible to use project interdependency to divide common code into a library; it IS possible to share a static library target among projects out of the box. http://stackoverflow.com/questions/123902/how-do-i-sign-a-java-applet-using-a-certificate-in-my-mac-keychain/137559#137559 Comment by millenomi on How do I sign a Java applet using a certificate in my Mac keychain? millenomi 2008-09-27T09:23:01Z 2008-09-27T09:23:01Z The keystore entry alias is right, if it's the one displayed by the first keytool -list command and not something else I'm not aware of. http://stackoverflow.com/questions/107903/how-to-create-a-zip-file-in-the-same-format-as-the-finders-compress-menu-item/107920#107920 Comment by millenomi on How to create a zip file in the same format as the Finder's "Compress" menu item? millenomi 2008-09-20T11:29:11Z 2008-09-20T11:29:11Z Automator, including the command line tool, requires access to the window manager, and therefore can only be launched as part of a console session, not unattended. http://stackoverflow.com/questions/104022/localize-strings-in-javascript/104051#104051 Comment by millenomi on Localize Strings in Javascript millenomi 2008-09-19T18:03:46Z 2008-09-19T18:03:46Z Note that this isn't correct. phrases will be an Array, but you're just setting one of its properties to a string (eg phrases.fatalError = 'Oh no'; is equivalent to your second line). Use object literals for cleanliness instead. http://stackoverflow.com/questions/102866/json-string-to-list-or-other-usable-format-in-asp-net-2-0/102951#102951 Comment by millenomi on JSON string to list or other usable format in asp.net 2.0 millenomi 2008-09-19T15:35:30Z 2008-09-19T15:35:30Z Of course this must VEEEERY CAREFULLY be audited as it's a likely security breach. http://stackoverflow.com/questions/90855/how-can-i-tell-whether-i-am-on-x64-or-x86-using-net/90863#90863 Comment by millenomi on How can I tell whether I am on x64 or x86 using .NET? millenomi 2008-09-18T08:22:15Z 2008-09-18T08:22:15Z This would differentiate between a 32-bit and a 64-bit platform, although the 64-bit platform could be, say, Itanium and not x64. (Unlikely, I know, but possible.) http://stackoverflow.com/questions/88141/will-i-need-a-computer-science-education-for-soft-computing-machine-learning/88175#88175 Comment by millenomi on Will I Need a Computer Science Education for Soft Computing/Machine Learning? millenomi 2008-09-17T22:17:57Z 2008-09-17T22:17:57Z <a href="http://en.wikipedia.org/wiki/Soft_computing" rel="nofollow">en.wikipedia.org/wiki/Soft_computing</a> has it better than I could ever explain. http://stackoverflow.com/questions/88011/make-apache-automatically-strip-off-the-www/88034#88034 Comment by millenomi on Make apache automatically strip off the www.? millenomi 2008-09-17T21:51:06Z 2008-09-17T21:51:06Z Attention to ^www.domain.com$: the dots match everything and thus should be escaped. See my answer. http://stackoverflow.com/questions/69391/in-applescript-how-can-i-get-to-the-help-menu-search-field-like-spotlight/69393#69393 Comment by millenomi on In Applescript, how can I get to the Help menu Search field, like Spotlight? millenomi 2008-09-16T13:17:18Z 2008-09-16T13:17:18Z Reminder: you <i>might</i> need GUI Scripting enabled before that script will run.