User sammich - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:42:49Zhttp://stackoverflow.com/feeds/user/50276http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/646880/window-settings-for-google-maps-widget0Window settings for Google Maps widgetsammich2009-03-14T22:43:49Z2009-11-01T03:00:03Z
<p>I've got a plain-vanilla google maps widget sitting in a page and I'd like it if the driving directions opened up in a new window instead of taking over the current window. Is there a setting for this?</p>
http://stackoverflow.com/questions/402389/automated-testing-for-iphone1Automated testing for iPhonesammich2008-12-31T05:59:55Z2009-09-30T22:50:04Z
<p>I know this one is going to be a long-shot, but I thought I'd try. Does anyone know of any automated test <em>anything</em> for the iPhone simulator? I'd love it if there was something like Selenium but for the iPhone simulator. I don't need anything fancy like assertions, just something that can fake out taps on a screen so I can stop abusing my trackpad. :)</p>
http://stackoverflow.com/questions/499673/getting-a-list-of-files-in-a-directory-with-a-glob0Getting a list of files in a directory with a globsammich2009-01-31T22:08:20Z2009-05-25T17:15:12Z
<p>For some crazy reason I can't find a way to get a list of files with a glob for a given directory.</p>
<p>I'm currently stuck with something along the lines of:</p>
<pre><code>NSString *bundleRoot = [[NSBundle mainBundle] bundlePath];
NSArray *dirContents = [[NSFileManager defaultManager]
directoryContentsAtPath:bundleRoot];
</code></pre>
<p>..and then stripping out the stuff I don't want, which sucks. But what I'd really like is to be able to search for something like "foo*.jpg" instead of asking for the entire directory, but I've not been able to find anything like that.</p>
<p>So how the heck do you do it?</p>
http://stackoverflow.com/questions/431696/uiimageview-animations-slow1UIImageView animations slowsammich2009-01-10T20:34:59Z2009-01-11T11:39:53Z
<p>I've got a UIImageView with about 10 full-screen jpegs, totaling about 128k. Throwing these into the UIImageView with setAnimationImages works like a champion in the emulator until I try to run it on the iPhone which results in a fail. Is something wrong here? I would think with all the fancy 3d games I've seen my crappy little animation should be functional...</p>
http://stackoverflow.com/questions/431208/selecting-random-records-for-use-on-a-web-page/431800#4318002Answer by sammich for Selecting random records for use on a web pagesammich2009-01-10T21:27:29Z2009-01-10T21:27:29Z<p>Whatever you do, don't use ORDER BY RAND() in MySQL. It won't scale. Yes, it will seem to work fine for a small number of rows because the data set is small. ORDER BY RAND() requires a full-table scan, which means that the larger your table is the longer the query will take. This will manifest itself like "Gee, the website seems to be slower"...and slower...and slower...</p>
<p>If you've got an id column that happens to be an integer and acts as a primary key, you could generate the maximum value in PHP before querying it'll be much faster because you're actually using an index.</p>
<p>Example could be something like:</p>
<pre><code>$random_row_id = rand(1, $max);
</code></pre>
<p>and then...</p>
<pre><code>SELECT * FROM foo WHERE id = $random_row_id
</code></pre>
<p>You'll have to figure out how to get your $max, but most likely you can just grab the last row id.</p>
<p>One word of caution here is that if you've deleted records from the table you'll have "holes" where you may ask for a row that doesn't exist anymore. In this case you could just keep probing until you find a match -- it'll still be way faster than a full table scan.</p>
http://stackoverflow.com/questions/431698/benefits-of-http-authentication-with-php/431748#4317487Answer by sammich for benefits of "HTTP authentication with PHP"sammich2009-01-10T21:02:33Z2009-01-10T21:02:33Z<p>Your question is a bit vague, but the general answer is that using this method gives you a more "RESTful" implementation that follows what HTTP is already good at. In this case, throwing a 401 is something that other web servers, web proxies and web browsers know how to handle. If you're just spitting out an HTML form it is only actionable by an end user whereas using the HTTP status codes allow machine interaction.</p>
<p>I'd recommend checking out <a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol" rel="nofollow"><code>http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol</code></a> to understand what HTTP really is. I think that should make all of this make more sense.</p>
http://stackoverflow.com/questions/421458/anonymous-users-in-rails-security-considerations/431743#4317430Answer by sammich for Anonymous users in Rails -- security considerations?sammich2009-01-10T20:58:50Z2009-01-10T20:58:50Z<p>Are you sure that you want to let people create objects that are tied to accounts that may not exist? Unfortunately I don't know much about what your application is actually doing but I would think that going down this path might leave you with a bunch of orphaned objects not really "owned" by any real users.</p>
<p>If you really <em>do</em> want to do this I think what you have is decent. You could be creating a real user, flagged as "guest" (or whatever) and once the user wants to really register they are prompted for other information and unflagged. You should add access control for guest vs non-guest, etc.</p>
http://stackoverflow.com/questions/250687/including-opt-lib-libraries-in-a-passenger-rails-app/431735#4317350Answer by sammich for Including ~/opt/lib libraries in a Passenger Rails Appsammich2009-01-10T20:54:22Z2009-01-10T20:54:22Z<p>The environment.rb way sounds like the way to go, though you might want to append to <code>LD_LIBRARY_PATH</code> instead. Also I'd make sure to use the full path to that directory just in case.</p>
<p>Alternatively you might be able to use <code>.htaccess</code> directives, similar to what is described @ <a href="http://wiki.rubyonrails.org/rails/pages/HowToUseOracleWithFastCGI" rel="nofollow">http://wiki.rubyonrails.org/rails/pages/HowToUseOracleWithFastCGI</a></p>
http://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service1Best tool/framework for testing a RESTful servicesammich2009-01-05T23:16:28Z2009-01-08T16:17:23Z
<p>I'm looking for a framework or tool for testing RESTful services. This seems like it shouldn't be hard, but the tools that I've found thus far assume things about my service that they probably shouldn't.</p>
<p>What would be great is something that could make a request (like, HTTP POST) and then compare the result with an expected result. I know that you can string together a few tools to do this but there has to be something easier since HTTP is super basic.</p>
http://stackoverflow.com/questions/401941/worst-sql-ever4Worst SQL Eversammich2008-12-31T00:33:50Z2009-01-05T16:48:04Z
<p>What is the worst SQL query you've ever seen? What made it bad?</p>
http://stackoverflow.com/questions/406186/best-analytics-offering-for-iphone3Best analytics offering for iPhonesammich2009-01-02T06:38:19Z2009-01-02T08:16:55Z
<p>What is the best iPhone analytics offering out there? I've seen <a href="http://www.pinchmedia.com" rel="nofollow">Pinchmedia</a> but I'm not sure about it since the default application page says "Last Updated July 2008".</p>
http://stackoverflow.com/questions/403645/how-do-i-make-xcode-refresh-its-local-copies-of-my-projects-image-files/403663#4036632Answer by sammich for How do I make Xcode refresh its local copies of my project's image files?sammich2008-12-31T18:10:39Z2008-12-31T18:10:39Z<p>That's pretty weird. I'd suggest two things:</p>
<ol>
<li><p>Check that you're not saving your
photoshop files into the wrong
directory. I know this seems
straightforward but its worth a
check. Make sure you're not saving
them into the build/ directory or
anything like that.</p></li>
<li><p>Before running again in the simulator, try <strong>cleaning</strong> all build targets first to ensure that your project actually builds again before launching the simulator.</p></li>
</ol>
http://stackoverflow.com/questions/401556/are-quotes-around-hash-keys-a-good-practice-in-perl/401886#4018864Answer by sammich for Are quotes around hash keys a good practice in Perl?sammich2008-12-30T23:55:44Z2008-12-30T23:55:44Z<p>Go with the quotes! They visually break up the syntax and more editors will support them in the syntax highlighting (hey, even stackoverflow is highlighting the quote version). I'd also argue that you'd notice typos quicker with editors checking that you ended your quote.</p>
http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/401875#4018754Answer by sammich for Most frustrating programming style you've encounteredsammich2008-12-30T23:49:26Z2008-12-30T23:49:26Z<p>Worst ever?</p>
<pre><code># TODO: Document This!
</code></pre>
<p>...exceptionally good when its found at the top of every method declaration and at the top of the file.</p>
http://stackoverflow.com/questions/401856/is-copy-and-paste-coding-ever-acceptable/401867#4018670Answer by sammich for Is copy-and-paste coding ever acceptable?sammich2008-12-30T23:46:03Z2008-12-30T23:46:03Z<p>I'm glad this one is tagged as subjective because it certainly is! This is an overly vague example, but I would imagine that if you have enough code that is duplicated that you could abstract those sections out and keep the different parts different. The point of not copy-pasting is so you don't end up having code that is hard to maintain and fragile.</p>
http://stackoverflow.com/questions/401616/which-is-faster-multiple-delete-statements-or-a-single-delete-statement-using-i/401839#4018391Answer by sammich for Which is faster? Multiple DELETE statements or a single DELETE Statement using "IN ('x', ''y')"sammich2008-12-30T23:30:55Z2008-12-30T23:30:55Z<p>The single statement:</p>
<pre><code>DELETE FROM table_name WHERE X IN ('1', '2', '3')
</code></pre>
<p>...would be faster. I'm not sure what database you're using, but I'd recommend looking into the <a href="http://en.wikipedia.org/wiki/Query_plan" rel="nofollow"><em>execution plan</em></a> of your queries. If you're using MySQL, you can use the EXPLAIN command like:</p>
<pre><code>EXPLAIN DELETE FROM table_name WHERE X IN ('1', '2', '3')
</code></pre>
<p>Also as you've wrote in the comments if you're looking to dynamically fill you IN() clause you can use a subquery like:</p>
<pre><code>DELETE FROM table_name WHERE x IN (SELECT id FROM table_name WHERE Y = Z)
</code></pre>
<p>(or whatever)</p>
http://stackoverflow.com/questions/400646/how-to-weed-out-the-bad-programmers-from-the-competent-ones-in-the-interview-proc/401828#4018282Answer by sammich for How to weed out the bad programmers from the competent ones in the interview processsammich2008-12-30T23:26:07Z2008-12-30T23:26:07Z<p>I know this is already a Joel Spolsky love-fest, but check out his book <a href="http://rads.stackoverflow.com/amzn/click/1590598385" rel="nofollow">Smart and Gets Things Done</a>, it is most excellent.</p>
<p>Text book answers suck because they're too easy to game. I've met several folks who were great at all of the standard puzzle questions but would never be able to ship a product on time. That said, you should have a minimum level of weeder questions -- the FizzBuzz problem is great -- to get rid of the first 90% of people who shouldn't be applying in the first place.</p>
<p>Ask people about their past projects. Find out what they're excited about. What projects sucked for them? What went wrong? What was their involvement?</p>
<p>I think one major mistake that employers make is focusing on just the technical talent. While the technical talent is certainly a prerequisite, what you're really looking for is someone who can <strong><em>deliver</em></strong>.</p>
<p>Think about it. Have you ever been in a situation with a rockstar programmer who refuses to implement a feature because he doesn't "believe in it" or thinks the customer is "stupid"? Unless you're working for a non-profit or an open source project, you're in the real world and someone is paying your company good money to have a product delivered. Your greatest resource is someone who can get a good grasp of your customer's problem and deliver a solution that works, on time and on budget. It sounds so simple because it really is -- you would be surprised how many candidates just don't get this.</p>
<p>I agree with others here about getting the candidate to fix broken code. I'd go further and ask them to design a system from the ground up. How would they design a complex system? Do they have good, reasonable ideas? Do they have janky, crackpot ideas?</p>
<p>Just remember: this guy is going to be responsible for a part of your business and may be involved with your projects. Do you trust them to do a good job? If the answer is maybe, don't hire. Never hire the maybes.</p>
http://stackoverflow.com/questions/401536/which-development-practice-helps-you-the-most/401811#4018110Answer by sammich for Which Development Practice Helps You the Most?sammich2008-12-30T23:14:22Z2008-12-30T23:14:22Z<p><strong>Code Reviews</strong> are a great way to ensure high quality code and coherent teams. Team members that have become accustomed to having their code review make sure to bring their best efforts forward instead of just shlacking on more code.</p>
<p><strong>Reading industry forums, websites, blogs and books</strong>. The best people that I know in the industry make it a point to constantly adapt and improve their skillset. You'll notice the inverse of this is also true.</p>
<p><strong>Decent Tracking Tools</strong>: Basecamp, JIRA/FogBugz, etc. If you can make consistent use of tracking tools you'll find that they'll get out of your way and cover your butt later when you lose track of where you were at. It is a normal engineering tendency to try to keep everything in your head -- it doesn't scale.</p>
<p>Oh, and stay away from <strong>Scrum</strong>. It isn't inherently evil or anything, but underperformers seem to flock to it. Keep good company.</p>
http://stackoverflow.com/questions/401535/can-i-use-an-img-tag-to-send-cookies-across-domains/401548#4015485Answer by sammich for Can I use an <img> tag to send cookies across domains?sammich2008-12-30T21:20:23Z2008-12-30T21:20:23Z<p>The cookie would be created for websiteb.com.</p>
http://stackoverflow.com/questions/401342/getting-javscript-src-location-hostname/401411#4014110Answer by sammich for Getting javscript src location/hostnamesammich2008-12-30T20:31:12Z2008-12-30T21:09:24Z<p>What about if you specified a callback URL when you ask for the JS? So in your script tag do something like:</p>
<pre><code><script type="text/javascript" src="http://foo/bar.js?caller=http://blah"></script>
</code></pre>
http://stackoverflow.com/questions/401486/rails-activerecord-update-question/401509#4015093Answer by sammich for Rails ActiveRecord Update questionsammich2008-12-30T21:05:28Z2008-12-30T21:05:28Z<p>Why attempt to add an empty Address object to the user.addresses collection? I think you could simply do something like:</p>
<pre><code>user.addresses << Address.new unless (conditions)
</code></pre>
<p>I unfortunately don't know what your conditions are here, so it could be something like</p>
<pre><code>user.addresses << Address.new unless params[:address].nil?
</code></pre>
<p>...although my guess is that you have a real Address object instead of just passing in a blank Address.new...</p>
http://stackoverflow.com/questions/401463/how-can-you-determine-location-of-script-tag-from-inside-said-tag/401473#4014734Answer by sammich for how can you determine location of <script> tag from inside said tag?sammich2008-12-30T20:54:12Z2008-12-30T20:54:12Z<p>You could give the script an id tag, <a href="http://www.thespanner.co.uk/2008/01/09/dom-for-hackers/" rel="nofollow">like this dude does</a>...</p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/401446#4014461Answer by sammich for What are some good free programming books?sammich2008-12-30T20:43:52Z2008-12-30T20:43:52Z<p>I think <a href="http://en.wikibooks.org/wiki/Wikibooks:Computer_science_bookshelf" rel="nofollow">WikiBooks</a> is hands-down one of the best free resources out there. It also looks like <a href="http://www.scribd.com/" rel="nofollow">Scribd</a> has some programming books available, though I'm not sure if they're meant to be free or not... :)</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/401408#4014080Answer by sammich for Is Ruby any good for GUI development?sammich2008-12-30T20:29:23Z2008-12-30T20:29:23Z<p>If you ever venture over to the mac, check out <a href="http://rubycocoa.sourceforge.net/HomePage" rel="nofollow">RubyCocoa</a>. It is obviously only for OSX, but I've seen a lot of folks scratch their head when looking to do GUI development on the mac and if you love ruby RubyCocoa is a lot of fun.</p>
http://stackoverflow.com/questions/395261/best-rails-html-parser/401373#4013731Answer by sammich for Best Rails HTML Parsersammich2008-12-30T20:18:50Z2008-12-30T20:18:50Z<p>Don't use regular expressions -- ruby's regex stuff is way too slow. Hpricot is awesome and Nokogiri looks promising, though I've not used it directly yet.</p>
http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/401350#4013501Answer by sammich for Who are good web hosts for Ruby on Rails projects?sammich2008-12-30T20:10:39Z2008-12-30T20:10:39Z<p><strong>Slicehost rocks!</strong> I had been using them for over 2 years and they were excellent. Great support, always reliable, and no issues with downtime or migrations. I've even successfully "resized" slices without having any issues. Unfortunately with the economy the way it is, and Slicehost's bandwidth use billing, I've moved some of my Rails sites onto <strong>Dreamhost</strong> to test out their new Passenger setup. So far it has been fairly good and it is very affordable. The downside is that they are quite a bit slower, and you will definitely notice lag on higher traffic sites.</p>
http://stackoverflow.com/questions/399932/can-i-improve-this-regex-check-for-valid-domain-names/401302#401302-1Answer by sammich for Can I improve this regex check for valid domain names?sammich2008-12-30T19:55:15Z2008-12-30T19:55:15Z<p>I'd recommend starting with the rules laid out in <a href="http://www.faqs.org/rfcs/rfc1035.html" rel="nofollow">RFC 1035</a>, and then working backwards -- but only if you really really really need to do this from scratch. A domain regex pattern has got to be (arguable second only to email address regex patterns) the most common thing out there. I would check out the site <a href="http://regexlib.com/" rel="nofollow">regexlib.com</a> and browse through what other folks have done.</p>
http://stackoverflow.com/questions/401191/how-to-return-random-items-restfully/401286#4012860Answer by sammich for How to return random items RESTfully?sammich2008-12-30T19:51:17Z2008-12-30T19:51:17Z<p>I agree with Triptych on this one. In a way adding random to the end of the URI makes it feel like an operation, but if it is scoped to a tag then you're really just refining the context.</p>
<p>In his example of:</p>
<p>/image/tagged/sometag/random</p>
<p>images resource -> tagging scope (all images with tags) -> specific tag (all images with tag X) -> random (a resource from the scoped list of images with tag X) </p>
http://stackoverflow.com/questions/400274/retrieve-session-with-sessionid-in-ruby-on-rails/401273#401273-1Answer by sammich for Retrieve session with session_id in Ruby On Rails?sammich2008-12-30T19:47:25Z2008-12-30T19:47:25Z<p>It looks like you could use something like CGI::Session::ActiveRecordStore::SqlBypass::find_by_session_id(session_id), but I'm not sure if that's a good idea or not -- and in this case it is only useful if you're using the ActiveRecordStore. Not sure what else is available on the other stores, but if you poke around under actionpack/lib/action_controller/session/* you'll probably get a more definitive answer.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/155329/bandwidth-and-traffic-simulator-for-web-apps/401219#4012191Answer by sammich for bandwidth and traffic simulator for web apps ?sammich2008-12-30T19:30:50Z2008-12-30T19:30:50Z<p>As other people have mentioned, <a href="http://httpd.apache.org/docs/2.0/programs/ab.html" rel="nofollow">Apache's ab</a> (comes with Apache, so you probably have it already) is good.</p>
<p>Other good options are:</p>
<ul>
<li>HP's <a href="http://en.wikipedia.org/wiki/LoadRunner" rel="nofollow">LoadRunner</a> Apache</li>
<li>Jakarta's <a href="http://jakarta.apache.org/jmeter/" rel="nofollow">JMeter</a> <a href="http://tsung.erlang-projects.org/" rel="nofollow">Tsung</a> (if</li>
<li>you want to get your erlang on)</li>
</ul>
<p>I personally like ab and JMeter the best.</p>
http://stackoverflow.com/questions/431696/uiimageview-animations-slow/432782#432782Comment by sammich on UIImageView animations slowsammich2009-01-12T03:37:11Z2009-01-12T03:37:11ZI realize they're using OpenGL, I guess what I meant is that its sad that its chokinghttp://stackoverflow.com/questions/431825/database-inheritance-selectComment by sammich on Database Inheritance Selectsammich2009-01-10T21:47:51Z2009-01-10T21:47:51ZWait, so a Staff Person inherits from a Student Person? That doesn't seem right.http://stackoverflow.com/questions/431208/selecting-random-records-for-use-on-a-web-page/431270#431270Comment by sammich on Selecting random records for use on a web pagesammich2009-01-10T21:19:19Z2009-01-10T21:19:19ZThis doesn't scale. See <a href="http://www.paperplanes.de/archives/2008/4/24/mysql_nonos_order_by_rand/" rel="nofollow">paperplanes.de/archives/2008/…</a>http://stackoverflow.com/questions/401556/are-quotes-around-hash-keys-a-good-practice-in-perl/401886#401886Comment by sammich on Are quotes around hash keys a good practice in Perl?sammich2009-01-10T21:14:53Z2009-01-10T21:14:53ZOrwellian? Really?
Don't be lazy. Large amounts of Perl are hard enough to maintain without developers being lazy or "clever". Any practice you can do to help the code be easier to read and maintained by others is a step in the right direction.http://stackoverflow.com/questions/401191/how-to-return-random-items-restfully/401286#401286Comment by sammich on How to return random items RESTfully?sammich2008-12-30T20:13:10Z2008-12-30T20:13:10ZOf course you can't cache this URI directly -- you're asking for a random image. If you wanted to consider caching, asking for this resource could vend an HTTP 302 redirect to a cachable URI (like the real authoritative image resource in this case).