User Jarin Udom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:30:13Z http://stackoverflow.com/feeds/user/574 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/29168/deploying-a-git-subdirectory-in-capistrano 2 Deploying a Git subdirectory in Capistrano Jarin Udom 2008-08-26T23:15:41Z 2009-09-16T19:27:50Z <p>My master branch layout is like this:</p> <p>/ &lt;-- top level</p> <p>/client &lt;-desktop client source files</p> <p>/server &lt;- Rails app</p> <p>What I'd like to do is only pull down the /server directory in my deploy.rb, but I can't seem to find any way to do that. The /client directory is huge, so setting up a hook to copy /server to / won't work very well, it needs to only pull down the Rails app.</p> http://stackoverflow.com/questions/639672/how-can-i-create-a-button-with-a-uiactivityindicator-in-my-navigation-bar-with-th 6 How can I create a button with a UIActivityIndicator in my navigation bar with the same style as normal buttons? Jarin Udom 2009-03-12T17:33:53Z 2009-08-21T22:58:26Z <p>All of the examples I've seen on here and other sites involved creating a UIActivityIndicatorView and loading it with something like:</p> <pre><code>self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithCustomView:myActivityIndicatorView target:nil action:nil] autorelease]; </code></pre> <p>However, that just creates a plain activity indicator in the navigation bar. What I want to do is have a button that looks just like the normal UIBarButtonSystemItem buttons but with an activity indicator instead of one of the default images. I've tried doing initWithImage and initWithTitle with nil images or titles and then adding the activity indicator as a subview, but that doesn't work.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/641249/what-does-iphone-os-3-0-need-from-a-programming-perspective/646763#646763 0 Answer by Jarin Udom for What does iPhone OS 3.0 need from a programming perspective? Jarin Udom 2009-03-14T21:18:47Z 2009-03-14T21:18:47Z <ul> <li>[[ABAddressBook sharedAddressBook] me] for being able to use the owner's Zip code, phone number, or whatever.</li> <li>Ability to download files to local storage and sync them back to iTunes or your hard drive</li> </ul> http://stackoverflow.com/questions/639668/keeping-testing-and-production-server-environments-clean-in-sync-and-consistent/639688#639688 0 Answer by Jarin Udom for Keeping testing and production server environments clean, in sync, and consistent Jarin Udom 2009-03-12T17:37:42Z 2009-03-12T17:37:42Z <p>You need to make sure that any changes to the environments are done in a consistent manner.</p> <p>I'd consider either starting with fresh images and enforcing a strict modification log policy, or using something like Capistrano to execute remote commands on and deploy code to all machines simultaneously.</p> <p>Ideally, all requirements should be checked into your version control system (along the lines of how Rails lets you store gems in the /vendor directory and preferentially loads those at runtime), along with a readme file that describes exactly how to set up the environment (required libraries, etc). The readme file needs to be rigorously updated by anyone who makes changes to the environment.</p> http://stackoverflow.com/questions/616456/tutorial-on-not-using-interface-builder-for-iphone-gui-design/618936#618936 2 Answer by Jarin Udom for Tutorial on NOT using Interface Builder for iPhone GUI design? Jarin Udom 2009-03-06T13:57:55Z 2009-03-06T13:57:55Z <p>Just a caveat: it's best to do things the "Apple way", as it will make it easier for Apple's engineers to comb through your code and approve it for the App Store.</p> http://stackoverflow.com/questions/617397/where-is-the-uiwindow-instantiated-in-an-iphone-app/617580#617580 1 Answer by Jarin Udom for Where is the UIWindow instantiated in an iPhone app? Jarin Udom 2009-03-06T03:09:06Z 2009-03-06T03:09:06Z <p>If you look in MainWindow.xib, the window and viewcontroller are assigned to your AppDelegate's window and viewController outlets, which instantiates them when the nib is loaded (right click on the AppDelegate to see it).</p> http://stackoverflow.com/questions/576197/do-you-need-a-permit-in-california-to-sell-on-the-appstore 2 Do you need a permit in California to sell on the AppStore? Jarin Udom 2009-02-23T00:44:08Z 2009-02-23T08:07:41Z <p>I'm applying for the iPhone developer program, and it mentioned they may need business documents, possibly including a seller's permit. I have all of the other documents in order, but I was looking on CalGOLD and it says "All businesses selling or leasing tangible property must obtain a Seller's Permit."</p> <p>Does software count as tangible property if it is only distributed online?</p> <p>Ref: <a href="http://www.calgold.ca.gov/Results1.asp?TYPE=7371&amp;CNTY=37&amp;CITY=350" rel="nofollow">http://www.calgold.ca.gov/Results1.asp?TYPE=7371&amp;CNTY=37&amp;CITY=350</a> (under state filings)</p> http://stackoverflow.com/questions/576204/who-what-inspired-you-to-get-into-programming-in-the-first-place/576214#576214 1 Answer by Jarin Udom for Who/What inspired you to get into programming in the first place? Jarin Udom 2009-02-23T00:51:17Z 2009-02-23T00:51:17Z <p>My step-dad used to buy BASIC magazines and make me type in 3000-line games on his Commodore 64. After that I used to write goofy little BASIC programs on the Apple IIs at school (things like if I put in my name it would say "Jarin you are so cool" and if it was my friend's name it would be like "So-and-so is a poop head!!" or also little choose your own adventure games).</p> <p>Later, playing a lot of video games led to 3d animation. When that turned out to be way more work than I wanted to do, I started building web apps in PHP then switched to Rails.</p> http://stackoverflow.com/questions/544186/flex-date-constructor-is-mis-converting-unix-time-stamps-argh 1 Flex Date() constructor is mis-converting Unix time stamps argh Jarin Udom 2009-02-13T00:17:57Z 2009-02-13T00:35:06Z <p>This is seriously killing me. I'm trying to convert a Unix timestamp (1236268800, which equates to Thu, 05 Mar 2009 16:00:00 GMT) to a Date object in Flex.</p> <pre><code>var timestamp:Number = 1236268800; trace(new Date(timestamp)); Output: Wed Jan 14 23:24:28 GMT-0800 1970 </code></pre> <p>Also tried this:</p> <pre><code>var timestamp:Number = 1236268800; var date:Date = new Date; date.time = timestamp; trace(date); Output: Wed Jan 14 23:24:28 GMT-0800 1970 </code></pre> <p>Either of those methods should work. What am I doing wrong here?</p> http://stackoverflow.com/questions/544152/connect-my-360-to-an-application/544202#544202 1 Answer by Jarin Udom for Connect my 360 to an application Jarin Udom 2009-02-13T00:25:07Z 2009-02-13T00:25:07Z <p>Connect360 emulates Windows Media Server. All the 360 is doing is connecting to a Windows Media Server like it would normally (or so it thinks).</p> http://stackoverflow.com/questions/69384/opinion-of-hosted-svn-providers/544190#544190 1 Answer by Jarin Udom for Opinion of Hosted SVN providers? Jarin Udom 2009-02-13T00:20:04Z 2009-02-13T00:20:04Z <p>I like Beanstalk. It's cheap, much faster than it was before, has private repos with SSL, and integrates with Basecamp, Lighthouse, and Twitter.</p> <p><a href="http://beanstalkapp.com" rel="nofollow">http://beanstalkapp.com</a></p> http://stackoverflow.com/questions/524698/why-does-printf-output-1-for-large-integers/524705#524705 9 Answer by Jarin Udom for Why does printf() output -1 for large integers? Jarin Udom 2009-02-07T22:16:49Z 2009-02-07T22:16:49Z <p>In the printf, I believe %d is a signed decimal integer, try %u instead.</p> <p>The max value of an unsigned int has the most significant bit set (it is all 1s). With a signed int, the most significant bit specifies negative numbers, so when you're printing an unsigned int as a signed int, printf thinks it is negative.</p> http://stackoverflow.com/questions/501675/algorithm-for-separating-nonsense-text-from-meaningful-text/524683#524683 0 Answer by Jarin Udom for Algorithm for separating nonsense text from meaningful text Jarin Udom 2009-02-07T22:03:14Z 2009-02-07T22:03:14Z <p>Just store comments in a pending state, pass them through Akismet or Defensio, and use the response to mark them as potential spam or mark them active.</p> <p><a href="http://akismet.com/" rel="nofollow">http://akismet.com/</a></p> <p><a href="http://defensio.com/" rel="nofollow">http://defensio.com/</a></p> <p>I personally prefer Defensio's API but they both work fantastically well.</p> http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/524678#524678 0 Answer by Jarin Udom for Why is good UI design so hard for some Developers? Jarin Udom 2009-02-07T21:59:50Z 2009-02-07T21:59:50Z <p>On the note of user feedback, Silverback ( <a href="http://silverbackapp.com/" rel="nofollow">http://silverbackapp.com/</a> ) is a great tool if you're on a Mac. I suggest creating a list of things to do (find this film, watch the trailer, find this film with this actor, purchase it, etc) and having the users sit there and go down the list.</p> <p>The most important thing is to not tell them HOW to do it but to see how they accomplish the tasks (for the second scene, do they browse by actor or do they find the scene alphabetically?). You can start with non-tech-savvy people at your company and then get on Craigslist or hit the street and pay random people to test it.</p> http://stackoverflow.com/questions/523993/how-do-you-downgrade-rubygems/524654#524654 0 Answer by Jarin Udom for How do you downgrade rubygems? Jarin Udom 2009-02-07T21:51:21Z 2009-02-07T21:51:21Z <p>Is there any particular reason why you need to downgrade (maybe because of the behavior of putting gems in ~/.gems when you forget sudo)?</p> http://stackoverflow.com/questions/506538/what-are-some-good-posters-youd-find-in-a-programmers-room/523792#523792 1 Answer by Jarin Udom for What are some good posters you'd find in a programmer's room? Jarin Udom 2009-02-07T13:45:24Z 2009-02-07T13:45:24Z <p>I love my Flex API posters, not because they are useful but because only a set of 5 full-size posters with 7pt font can fully convey the madness that is the Flex API :)</p> <p>Free set here: https://www.adobe.com/cfusion/entitlement/index.cfm?e=posters&amp;sdid=ZFCT</p> http://stackoverflow.com/questions/523771/why-are-my-fixture-objects-not-available-in-my-rails-testunit-test/523780#523780 3 Answer by Jarin Udom for Why are my fixture objects not available in my Rails Test::Unit test? Jarin Udom 2009-02-07T13:38:43Z 2009-02-07T13:38:43Z <p>Make sure you have</p> <pre><code>fixtures :all </code></pre> <p>In your test_helper.rb</p> http://stackoverflow.com/questions/454940/protecting-adobe-air-apps/523764#523764 0 Answer by Jarin Udom for protecting adobe air apps Jarin Udom 2009-02-07T13:29:54Z 2009-02-07T13:29:54Z <p>I think pretty much the only good way to do this is to require activation after installing (online activation, with a phone backup).</p> <p>From what you're saying, it seems like the backend is installed on-site and would not be able to provide adequate copy protection.</p> http://stackoverflow.com/questions/485917/themes-in-adobe-air/523756#523756 1 Answer by Jarin Udom for Themes in Adobe AIR Jarin Udom 2009-02-07T13:24:38Z 2009-02-07T13:24:38Z <p>The ScaleNine themes are a good place to start, find one that is sort of like what you want, plug it into your app, and gradually replace the colors, images, and controls with your own.</p> <p><a href="http://www.scalenine.com/" rel="nofollow">http://www.scalenine.com/</a></p> http://stackoverflow.com/questions/514795/designing-adobe-air-applications-which-usability-guidelines-to-follow/523753#523753 1 Answer by Jarin Udom for Designing Adobe AIR applications - Which Usability Guidelines to follow? Jarin Udom 2009-02-07T13:23:03Z 2009-02-07T13:23:03Z <p>I tend to follow Apple's Human Interface Guidelines when developing AIR apps (even down to the amount of padding around elements, etc). Even if you don't use them to the letter, they're definitely worth a read:</p> <p><a href="http://developer.apple.com/documentation/userexperience/Conceptual/AppleHIGuidelines/XHIGIntro/chapter_1_section_1.html" rel="nofollow">http://developer.apple.com/documentation/userexperience/Conceptual/AppleHIGuidelines/XHIGIntro/chapter_1_section_1.html</a></p> http://stackoverflow.com/questions/523728/why-isnt-google-web-toolkit-more-popular/523735#523735 1 Answer by Jarin Udom for Why isn't Google Web Toolkit more popular? Jarin Udom 2009-02-07T13:15:55Z 2009-02-07T13:15:55Z <p>It's probably either due to the recent boom in really good JavaScript/AJAX frameworks or because a lot of Java developers are moving on to newer languages.</p> http://stackoverflow.com/questions/523633/accessing-browser-cookies-from-flex 1 Accessing browser cookies from Flex Jarin Udom 2009-02-07T11:39:20Z 2009-02-07T12:02:54Z <p>I'm building a Flex widget for a private vBulletin site, and the Flex widget needs to access an XML file on the vBulletin server in order to display data.</p> <p>For security reasons, the XML URL will need to have the value in the bbsessionhash cookie passed along in the URL request from Flex. The Flex widget will be embedded in the private area that the user has logged into, so the Flex request will be coming from the same website the cookie is from.</p> <p>Is there any way to access the cookies directly within Flex? I would prefer not to use ExternalInterface to grab the cookie data from JavaScript, as it could get a little messy (the templates are developed by a completely different dev team).</p> http://stackoverflow.com/questions/331394/can-i-set-up-cascade-deleting-in-rails/333411#333411 2 Answer by Jarin Udom for Can I set up Cascade deleting in Rails? Jarin Udom 2008-12-02T09:08:13Z 2008-12-02T09:08:13Z <p>Just keep in mind that delete_all will not execute any callbacks (like before_destroy and after_destroy) on the child records.</p> http://stackoverflow.com/questions/4949/version-control-php-web-project/6221#6221 0 Answer by Jarin Udom for Version control PHP Web Project Jarin Udom 2008-08-08T18:17:23Z 2008-08-08T18:17:23Z <p><a href="http://beanstalkapp.com" rel="nofollow">Beanstalk</a> has built-in post-commit hooks for deploying to development, staging, and production servers.</p> http://stackoverflow.com/questions/6021/how-do-you-manage-all-your-projects-and-ideas/6201#6201 1 Answer by Jarin Udom for How do you manage all your projects and ideas? Jarin Udom 2008-08-08T17:52:25Z 2008-08-08T17:52:25Z <p><a href="http://www.basecamphq.com/?referrer=JARINUDOM" rel="nofollow">Basecamp</a> for organizing the "big picture" things, and <a href="http://pivotaltracker.com" rel="nofollow">Pivotal Tracker</a> for tasks, issues, bugs, and releases. Pivotal tracker is the only issue tracking system I have ever really enjoyed using, and I've tried a lot of them!</p> http://stackoverflow.com/questions/5526/anyone-out-there-implementing-microformats-is-this-useful/5528#5528 0 Answer by Jarin Udom for Anyone out there implement(ing) microformats? is this useful? Jarin Udom 2008-08-08T01:06:11Z 2008-08-08T01:06:11Z <p>It's sort of a chicken-and-egg problem, they're not hard to implement but there really isn't any sort of widespread adoption of microformat consuming software.</p> <p>On the other hand, since microformats aren't widely adopted, there really isn't any need for people to download and install microformat consuming software.</p> <p>Given a new project, I'd probably implement microformats where appropriate, but it's always pretty low on the priority list (I'll do it whenever I can get around to it).</p> http://stackoverflow.com/questions/5460/telligents-community-server/5503#5503 0 Answer by Jarin Udom for Telligent's Community Server Jarin Udom 2008-08-08T00:15:04Z 2008-08-08T00:15:04Z <p>Expression Engine with the Multi-Site Manager works great for that kind of situation.</p> http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/5189#5189 7 Answer by Jarin Udom for Recommended Fonts for Programming? Jarin Udom 2008-08-07T19:20:34Z 2008-08-07T19:20:34Z <p>Inconsolata 14pt in TextMate</p> http://stackoverflow.com/questions/3666/can-you-access-the-windows-registry-from-adobe-air/4940#4940 0 Answer by Jarin Udom for Can you access the windows registry from Adobe Air? Jarin Udom 2008-08-07T16:39:35Z 2008-08-07T16:39:35Z <p>You could theoretically modify the actual registry files, but I would highly discourage that idea. </p> http://stackoverflow.com/questions/4452/does-rsi-affect-legs/4454#4454 0 Answer by Jarin Udom for Does RSI affect legs? Jarin Udom 2008-08-07T06:18:20Z 2008-08-07T06:18:20Z <p>I highly recommend the Swopper chair for back and leg pain: <a href="http://www.workchairs.com/" rel="nofollow">http://www.workchairs.com/</a></p> http://stackoverflow.com/questions/1116963/dont-see-code-signing-entitlements-in-xcode-target-properties/1181064#1181064 Comment by Jarin Udom on Don't see Code Signing Entitlements in xcode target properties Jarin Udom 2009-09-18T14:33:58Z 2009-09-18T14:33:58Z Worked for me, thanks! http://stackoverflow.com/questions/659602/objective-c-html-escape-unescape/659631#659631 Comment by Jarin Udom on Objective C HTML escape/unescape Jarin Udom 2009-04-10T21:53:08Z 2009-04-10T21:53:08Z xmlParse also leaks btw, just add an autorelease to it and returnStr http://stackoverflow.com/questions/641249/what-does-iphone-os-3-0-need-from-a-programming-perspective/641276#641276 Comment by Jarin Udom on What does iPhone OS 3.0 need from a programming perspective? Jarin Udom 2009-03-13T06:23:22Z 2009-03-13T06:23:22Z Apps can share data locally via NSUserDefaults (using NSGlobalDomain) http://stackoverflow.com/questions/641249/what-does-iphone-os-3-0-need-from-a-programming-perspective/641494#641494 Comment by Jarin Udom on What does iPhone OS 3.0 need from a programming perspective? Jarin Udom 2009-03-13T06:18:56Z 2009-03-13T06:18:56Z You can customize the UITableViewCell's Delete button by using localization strings. http://stackoverflow.com/questions/639672/how-can-i-create-a-button-with-a-uiactivityindicator-in-my-navigation-bar-with-th/640082#640082 Comment by Jarin Udom on How can I create a button with a UIActivityIndicator in my navigation bar with the same style as normal buttons? Jarin Udom 2009-03-13T05:39:45Z 2009-03-13T05:39:45Z I tried that but I couldn't seem to get it to work. http://stackoverflow.com/questions/618919/problem-facing-while-inserting-data-into-dynamically-created-column-of-table Comment by Jarin Udom on Problem facing while inserting data into dynamically created column of table. Jarin Udom 2009-03-06T13:54:21Z 2009-03-06T13:54:21Z Can you post your SQL statements? http://stackoverflow.com/questions/544186/flex-date-constructor-is-mis-converting-unix-time-stamps-argh/544211#544211 Comment by Jarin Udom on Flex Date() constructor is mis-converting Unix time stamps argh Jarin Udom 2009-02-13T00:35:02Z 2009-02-13T00:35:02Z Dan you rule so hard. http://stackoverflow.com/questions/523633/accessing-browser-cookies-from-flex/523655#523655 Comment by Jarin Udom on Accessing browser cookies from Flex Jarin Udom 2009-02-07T12:09:20Z 2009-02-07T12:09:20Z That is perfect, interestingly enough it actually uses ExternalInterface to write its own cookie-reading/writing JavaScript functions to the wrapper document. But hey, as long as the JS doesn't have to be embedded on the page itself it's good by me! Thanks!