User Teflon Ted - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:06:42Z http://stackoverflow.com/feeds/user/4061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1783340#1783340 1 Answer by Teflon Ted for Remotely Track the Current Branch in Git Teflon Ted 2009-11-23T14:11:14Z 2009-11-23T14:11:14Z <p>Host on GitHub and use their <a href="http://help.github.com/post-receive-hooks/" rel="nofollow">post-recieve hooks</a>. That's how services like <a href="http://devver.net/" rel="nofollow">Devver</a> and <a href="http://runcoderun.com/" rel="nofollow">RunCodeRun</a> do it.</p> http://stackoverflow.com/questions/1722421/how-can-you-easily-test-hash-equality-in-ruby-when-you-only-care-about-intersecti 2 How can you easily test hash equality in Ruby when you only care about intersecting keys? Teflon Ted 2009-11-12T14:06:42Z 2009-11-12T14:22:27Z <p>Say I have the following hashes:</p> <pre><code>hash_x = { :a =&gt; 1, :b =&gt; 2 } hash_y = { :b =&gt; 2, :c =&gt; 3 } </code></pre> <p>I need a chunk of logic that compares the two for equality only taking into consideration intersecting keys. </p> <p>In this example the 'b' key is the only commonality between the two hashes and it's value is set to '2' in both so by that logic these two hashes would be considered equal.</p> <p>Likewise these two hashes would not be equal due to the inequality of the 'd' key (the 'a' and 'c' key values are ignored since they are unique to their respective hashes):</p> <pre><code>hash_p = { :a =&gt; 1, :b =&gt; 2, :d =&gt; 3, } hash_q = { :b =&gt; 2, :c =&gt; 3, :d =&gt; 4 } </code></pre> <p>Is there a clever one-liner in Ruby that can calculate the intersecting keys of the two hashes then compare their values for equality based on those keys?</p> <p><strong>Bonus points if you provide tests.</strong></p> <p><strong>More bonus points if you monkey-patch it into the Hash class.</strong></p> http://stackoverflow.com/questions/1689699/how-can-you-load-the-rails-environment-from-cloudcrowd-actions 0 How can you load the Rails environment from CloudCrowd actions? Teflon Ted 2009-11-06T19:16:32Z 2009-11-06T20:34:52Z <p>I'm writing an "action" for <a href="http://github.com/documentcloud/cloud-crowd" rel="nofollow">CloudCrowd</a> which needs access to the Rails environment (for some ActiveRecord stuff) but the standard means of loading the environment is resulting in fishy errors. </p> <p>I tried each of the following at the top of my action .rb file:</p> <pre><code>require(File.join(File.dirname(__FILE__), '../..', 'boot')) </code></pre> <p>and</p> <pre><code>require File.expand_path(File.dirname(__FILE__) + "/../../environment") </code></pre> <p>When I try to start the node I get this error:</p> <pre><code>»crowd node Starting CloudCrowd Node on port 9063... Missing the Rails 2.3.2 gem. Please `gem install -v=2.3.2 rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed. </code></pre> <p>And I of course do have the gem installed:</p> <pre><code>»gem list | grep -i rails rails (2.3.4, 2.3.2, 2.2.2, 1.2.6) </code></pre> http://stackoverflow.com/questions/1689699/how-can-you-load-the-rails-environment-from-cloudcrowd-actions/1690225#1690225 0 Answer by Teflon Ted for How can you load the Rails environment from CloudCrowd actions? Teflon Ted 2009-11-06T20:34:52Z 2009-11-06T20:34:52Z <p>Somebody from @documentcloud saw my plea and helped me work through it. Had to prefix the action script with <a href="http://gist.github.com/228262" rel="nofollow">this</a>:</p> <pre><code>RAILS_GEM_VERSION = nil RAILS_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '../../..')) RAILS_ENV = ENV['RAILS_ENV'] || 'development' if CloudCrowd.node? require 'rubygems' require 'activerecord' ActiveRecord::Base.logger = Logger.new(STDOUT) require File.expand_path(File.join(File.dirname(__FILE__), '../..', 'environment')) end </code></pre> http://stackoverflow.com/questions/1661586/how-can-you-check-to-see-if-a-file-exists-on-the-remote-server-in-capistrano 1 How can you check to see if a file exists (on the remote server) in Capistrano? Teflon Ted 2009-11-02T14:23:11Z 2009-11-02T22:20:50Z <p>Like many others I've seen in the Googleverse, I fell victim to the File.exists? trap, which of course checks your <em>local</em> file system, not the server you are deploying to.</p> <p>I found one result that used a shell hack like if [[ -d #{shared_path}/images ]]; then ... but that doesn't sit well with me, unless it were wrapped nicely in a Ruby method.</p> <p>Has anybody solved this elegantly?</p> http://stackoverflow.com/questions/1661586/how-can-you-check-to-see-if-a-file-exists-on-the-remote-server-in-capistrano/1662001#1662001 1 Answer by Teflon Ted for How can you check to see if a file exists (on the remote server) in Capistrano? Teflon Ted 2009-11-02T15:36:01Z 2009-11-02T15:36:01Z <p>Inspired by @bhups response, with tests:</p> <pre><code>def remote_file_exists?(full_path) 'true' == capture("if [ -e #{full_path} ]; then echo 'true'; fi").strip end namespace :remote do namespace :file do desc "test existence of missing file" task :missing do if remote_file_exists?('/dev/mull') raise "It's there!?" end end desc "test existence of present file" task :exists do unless remote_file_exists?('/dev/null') raise "It's missing!?" end end end end </code></pre> http://stackoverflow.com/questions/1655970/unit-tests-for-3rd-party-libraries/1656115#1656115 2 Answer by Teflon Ted for Unit tests for 3rd-party libraries Teflon Ted 2009-11-01T01:34:26Z 2009-11-01T01:34:26Z <p>Never trust third-party libraries. I always write a set of tests I call "sanity checks" for third party libraries, but I only apply it to one model/controller/whatever. So for example if I'm using the acts_as_paranoid gem (which makes database records look deleted but not actually delete them) I'll write a set of tests for <em>just one</em> of the models that uses the extension, and assume it works for the rest of them. This lets me sleep at night knowing that I can update the gem when new releases come out, or even use the "edge" version, and the expected functionality is going to be reliable.</p> http://stackoverflow.com/questions/111481/why-hasnt-anybody-started-a-hosted-continuous-integration-service 19 Why hasn't anybody started a hosted continuous integration service? Teflon Ted 2008-09-21T17:28:04Z 2009-10-30T10:03:36Z <p>There's a dozen services that provide hosted version control, hosted ticket tracking, hosted project management, and combinations of all of the above, there's even hosted web-based IDEs. But nobody's yet offered a hosted continuous integration service; at least that I can find. The concept seems simple enough: I register and provide the URL to my source code repository, it grabs my code and builds it via ant/rake/whatever, then runs the suite of tests and some metrics (code coverage, performance, etc.). Is there some prohibitive barrier to entry I'm not considering?</p> http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil 1 How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-20T21:28:52Z 2009-10-21T17:52:03Z <p>I've added a before_create filter to one of my Rails ActiveRecord models and inside that filter I'm doing some database updates. </p> <p>Sometimes I return false from the filter to prevent the creation of the target model, <em>but</em> that is causing all the <em>other</em> database changes I made (while inside the filter) to get rolled back. </p> <p>How can I prevent that?</p> <p><strong>Update #1</strong>: Here's some pseudo code explaining my problem:</p> <pre><code>class Widget &lt; ActiveRecord::Base before_create :update_instead def update_instead if some_condition? update_some_record_in_same_model # this is getting rolled back return false # don't create a new record else return true # let it continue end end end </code></pre> <p><strong>Update #2</strong>: Some good answers below but each had its shortcomings. I ended up overridding the create method like so:</p> <pre><code>def create super unless update_instead? # yes I reversed the return values from above end </code></pre> http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails/1583739#1583739 1 Answer by Teflon Ted for Asset URLs without cache timestamps in Rails Teflon Ted 2009-10-18T01:37:31Z 2009-10-18T01:37:31Z <pre><code># apologies I'm doing this off the cuff and haven't run-tested this code alias_method_chain :image_path, :google_sense def image_path_with_google_sense(source) raw_image_path = image_path_without_google_sense(source) if source.end_with?('-trans.png') # strip off the time stamp raw_image_path.split('?').first else raw_image_path end end </code></pre> http://stackoverflow.com/questions/1561693/how-can-you-reverse-engineer-a-binary-thrift-file 0 How can you reverse engineer a binary thrift file? Teflon Ted 2009-10-13T17:19:32Z 2009-10-13T23:10:29Z <p>I've been asked to process some files serialized as binary (not text/JSON unfortunately) <a href="http://incubator.apache.org/thrift/" rel="nofollow">Thrift</a> objects, but I don't have access to the program or programmer that created the files, so I have no idea of their structure, field order, etc. Is there a way using the Thrift libraries to open a binary file and analyze it, getting a list of the field types, values, nesting, etc.?</p> http://stackoverflow.com/questions/1543894/how-might-you-clone-a-database-table-via-rails-migration 1 How might you clone a database table via Rails migration? Teflon Ted 2009-10-09T13:48:11Z 2009-10-12T04:07:29Z <p>I want a migration to create a clone of an existing table by just suffixing the name, including all the indexes from the original table. </p> <p>So there's a "snapshots" table and I want to create "snapshots_temp" as an exact copy of the table (not the data, just the table schema, but including the indexes).</p> <p>I could just copy and paste the block out of the schema.rb file and manually rename it.</p> <p>But I'm not sure by the time this migration is applied if the definition from schema.rb will still be accurate. Another developer might have changed the table and I don't want to have to update my migration script.</p> <p>So how might I get the schema of the table at runtime? Essentially, how does 'rake schema:dump' reverse engineer the table so I can do the same in my migration? (but changing the table name).</p> http://stackoverflow.com/questions/1543894/how-might-you-clone-a-database-table-via-rails-migration/1551245#1551245 0 Answer by Teflon Ted for How might you clone a database table via Rails migration? Teflon Ted 2009-10-11T17:40:37Z 2009-10-11T17:40:37Z <p>It looks like this logic is wrapped up in <a href="http://apidock.com/rails/ActiveRecord/SchemaDumper" rel="nofollow">ActiveRecord::SchemaDumper</a> but it only exposes an all-in-one "dump" method and you can't dump just a specific table (<a href="http://apidock.com/rails/ActiveRecord/SchemaDumper/table" rel="nofollow">the "table" method</a> is private).</p> http://stackoverflow.com/questions/1545647/how-to-specify-rubygems-path-in-environment-less-ruby-script 1 How to specify rubygems path in environment-less Ruby script? Teflon Ted 2009-10-09T19:29:51Z 2009-10-10T19:05:16Z <p>I've written a data collection script for Cacti in Ruby and it runs fine from the command line <em>but</em> Cacti runs the script via "env -i" which strips the environment so Ruby can't find the rubygems library ("in `require': no such file to load -- rubygems (LoadError)"). How might I work around this?</p> http://stackoverflow.com/questions/1541294/how-do-you-specify-a-required-switch-not-argument-with-ruby-optionparser 1 How do you specify a required switch (not argument) with Ruby OptionParser? Teflon Ted 2009-10-09T00:38:28Z 2009-10-09T10:44:56Z <p>Say I'm writing a script and I want to require a --host switch (with value of course) but if the --host switch isn't specified I want the option parsing to fail. I can't seem to figure out how to do that. The docs seem to only specify how to make the argument value mandatory, not the switch itself.</p> http://stackoverflow.com/questions/1517411/how-to-run-every-script-in-a-directory-except-itself 3 How to run every script in a directory except itself? Teflon Ted 2009-10-04T21:21:57Z 2009-10-05T00:22:39Z <p>I have a folder full of *.command files on my OS X workstation. </p> <p>(For those that don't know, *.command files are just shell scripts that launch and run in a dedicated Terminal window).</p> <p>I've dragged this folder onto my Dock to use a "stack" so I can access and launch these scripts conveniently via a couple clicks.</p> <p>I want to add a new "run-all.command" script to the stack that runs all the *.command files in the same stack with the obvious exception of itself.</p> <p>My Bash chops are too rusty to recall how you get a list of the *.command files, iterate them, skip the file that's running, and execute each (in this case I'd be using the "open" command so each *.command opens in its own dedicated Terminal window).</p> <p>Can somebody please help me out?</p> http://stackoverflow.com/questions/1517411/how-to-run-every-script-in-a-directory-except-itself/1517764#1517764 3 Answer by Teflon Ted for How to run every script in a directory except itself? Teflon Ted 2009-10-05T00:22:39Z 2009-10-05T00:22:39Z <p>Using @bbg's original script as a starting point and incorporating the comments from @Jefromi and @Dennis Williamson, and working out some more directory prefix issues, I arrived at this working version:</p> <pre><code>#!/bin/bash for x in "$(dirname $0)"/*.command do if [ "$(basename $x)" != "$(basename $0)" ] then open "$x" fi done </code></pre> http://stackoverflow.com/questions/1207395/how-do-you-deploy-an-iphone-app-to-the-simulator-from-the-command-line 4 How do you deploy an iPhone app to the simulator from the command line? Teflon Ted 2009-07-30T15:34:54Z 2009-10-04T16:46:26Z <p>I'm using xcodebuild from the command line to compile several variations of an iPhone app but I've not been able to figure out how to deploy those builds into the iPhone Simulator from the command line. Could somebody please enlighten me? Thank you.</p> http://stackoverflow.com/questions/1027108/how-do-you-recover-from-an-incorrect-key-file-with-mysql-innodb 0 How do you recover from an "incorrect key file" with MySQL (InnoDB)? Teflon Ted 2009-06-22T13:04:10Z 2009-10-02T14:00:04Z <pre><code>Incorrect key file for table 'widgets'; try to repair it </code></pre> <p>This is the error message MySQL gives me when attempting to apply a new index to an existing (very large) table. Of course when I follow the error message's suggestion of trying to repair it:</p> <pre><code>mysql&gt; repair table widgets; +-------------------+--------+----------+---------------------------------------------------------+ | Table | Op | Msg_type | Msg_text | +-------------------+--------+----------+---------------------------------------------------------+ | tedsdb.widgets | repair | note | The storage engine for the table doesn't support repair | +-------------------+--------+----------+---------------------------------------------------------+ 1 row in set (0.00 sec) </code></pre> <p>What's my best course of action here (following the obvious full backup before tinkering)?</p> <p><strong>UPDATE:</strong> I created a new table (MyISAM) of the same schema, copied over all the records (insert into select), the changed the engine on the new table (InnoDB), renamed the corrupt table and renamed the new table, then tried again and got the same error.</p> http://stackoverflow.com/questions/1436076/advanced-queries-in-hbase 0 Advanced queries in HBase Teflon Ted 2009-09-16T23:50:40Z 2009-10-01T20:08:08Z <p>Given the following HBase schema scenario (<a href="http://wiki.apache.org/hadoop/Hbase/FAQ" rel="nofollow">from the official FAQ</a>)...</p> <blockquote> <p>How would you design an Hbase table for many-to-many association between two entities, for example Student and Course?</p> <p>I would define two tables:</p> <p>Student: student id student data (name, address, ...) courses (use course ids as column qualifiers here) </p> <p>Course: course id course data (name, syllabus, ...) students (use student ids as column qualifiers here)</p> <p>This schema gives you fast access to the queries, show all classes for a student (student table, courses family), or all students for a class (courses table, students family).</p> </blockquote> <p>How would you satisfy the request: "<em>Give me all the students that share at least two courses in common</em>"? Can you build a "query" in HBase that will return that set, or do you have to retrieve all the pertinent data and crunch it yourself in code?</p> http://stackoverflow.com/questions/1489826/how-to-get-the-number-of-days-in-a-given-month-in-ruby-accounting-for-year 2 How to get the number of days in a given month in Ruby, accounting for year? Teflon Ted 2009-09-28T23:18:12Z 2009-09-29T00:14:49Z <p>I'm sure there's a good simple elegant one-liner in Ruby to give you the number of days in a given month, accounting for year, such as "February 1997". What is it?</p> http://stackoverflow.com/questions/1468210/ignoring-escaped-delimiters-commas-with-awk 0 Ignoring escaped delimiters (commas) with awk? Teflon Ted 2009-09-23T19:53:21Z 2009-09-23T20:29:26Z <p>If I had a string with escaped commas like so:</p> <pre><code>a,b,{c\,d\,e},f,g </code></pre> <p>How might I use awk to parse that into the following items?</p> <pre><code>a b {c\,d\,e} f g </code></pre> http://stackoverflow.com/questions/996032/whats-the-best-way-to-monitor-a-large-number-of-ruby-processes 0 What's the best way to monitor a large number of Ruby processes? Teflon Ted 2009-06-15T13:13:00Z 2009-08-26T17:56:01Z <p>I have a farm of several physical servers each running a large number of Ruby "workers" (daemon-like processes) and I'd like to be able to monitor the health and progress of these processes from a central location, perhaps with historical graphing like Cacti provides. What's the simplest preferably-open-standard protocol for doing something like that? <em>Please note I'm already using monit to keep the processes up and running and under control</em>; what I'm asking for here is a single point of entry (i.e. dashboard) for checking in on them. Thanks.</p> http://stackoverflow.com/questions/1261253/how-do-i-figure-out-what-this-character-is 1 How do I figure out what this character is? Teflon Ted 2009-08-11T15:48:11Z 2009-08-12T23:24:32Z <p>Update: Apparently these are control characters, not Unicode characters.</p> <p>I'm trying to parse an XML file which has an odd character in it that makes it invalid and is causing my tools (Firefox, Nokogiri) to complain.</p> <p>Here's what the character looks like in Firefox, and what it looks like when I copy and paste it into Textmate (I'm on OS X obviously).</p> <img src="http://img.skitch.com/20090811-ghu43k5u9nhpcjmh443dpq76jp.preview.jpg" alt="crazy characters" /> <p>Rather than just cryptic icons and little grey diamonds I'd really like to know what these characters are (e.g. hex/dec codes) but I'm not sure how to figure that out.</p> http://stackoverflow.com/questions/1206735/how-would-you-automate-multiple-builds-for-an-iphone-application 2 How would you automate multiple builds for an iPhone application? Teflon Ted 2009-07-30T13:48:42Z 2009-07-30T13:56:10Z <p>I am aware of the <a href="http://stackoverflow.com/questions/549462/how-do-i-manage-building-a-lite-vs-paid-version-of-an-iphone-app">paid vs. free discussion</a>, but I have a couple extra issues that aren't covered there:</p> <p>Say I've written an iPhone app that lets you read a newspaper. I want to build four copies of the app, one for each individual newspaper that can be read, so I have four distinct apps, each reading a different newspaper.</p> <p>Here's the two catches that the other thread doesn't cover:</p> <ol> <li><p>Which paper the app reads is defined in the main plist, <em>not</em> in code, so I'm not sure the preprocessor macro tricks apply. If they do, how do you incorporate them into a plist file?</p></li> <li><p>I want to build all four versions of the app <em>at once</em>; I don't want to have to select each target in turn and repeat the process four times. I want a single "makefile" (if you will) that builds them all, and <em>preferably</em> also deploys them simulator so when I start it up I can test them all in a single session.</p></li> </ol> <p>Do such facilities exist in XCode? If not, what external tools might you recommend?</p> <p>Thanks.</p> http://stackoverflow.com/questions/183091/capistrano-for-java 2 Capistrano for Java? Teflon Ted 2008-10-08T14:38:49Z 2009-07-20T07:46:25Z <p>I'm a big fan of Capistrano but I need to develop an automated deployment script for a Java-only shop. I've looked at Ant and Maven and they don't seem to be well geared towards remote administration the way Capistrano is - they seem much more focused on simply building and packaging applications. Is there a better tool out there?</p> http://stackoverflow.com/questions/960893/is-anything-sensitive-stored-in-an-iphone-xcode-project-folder 1 Is anything "sensitive" stored in an iPhone Xcode project folder? Teflon Ted 2009-06-07T00:26:25Z 2009-07-16T19:01:55Z <p>I want to open source one of my iPhone applications (that I've already published in the iTunes store) but I obviously don't want to expose anything "sensitive" like provisioning certificates and code-signing keys, etc. I'm guessing that stuff is merely <em>referenced</em> from the Xcode project folder (actually stored in my keychain elsewhere on disk) and if I were to share the entire project folder I'd be OK and nobody could hijack my identity with regards to the Apple iPhone Developer Program. Would I be correct?</p> http://stackoverflow.com/questions/887590/does-dropping-a-table-in-mysql-also-drop-the-indexes 0 Does dropping a table in MySQL also drop the indexes? Teflon Ted 2009-05-20T12:22:29Z 2009-07-14T02:14:37Z <p>It's not explicitly mentioned in the documentation (<a href="http://dev.mysql.com/doc/refman/6.0/en/drop-table.html" rel="nofollow">http://dev.mysql.com/doc/refman/6.0/en/drop-table.html</a>). I ask because I just saw a curious database migration in a Rails project where the developer was removing all the indexes before dropping the table, and that seemed unnecessary.</p> http://stackoverflow.com/questions/978147/how-do-you-extract-a-numerical-value-from-a-string-in-a-mysql-query 1 How do you extract a numerical value from a string in a MySQL query? Teflon Ted 2009-06-10T21:02:37Z 2009-06-13T23:46:54Z <p>I have a table with two columns: price (int) and price_display (varchar).</p> <p>price is the actual numerical price, e.g. "9990"</p> <p>price_display is the visual representation, e.g. "$9.99" or "9.99Fr"</p> <p>I've been able to confirm the two columns match via regexp:</p> <blockquote> <p>price_display not regexp format(price/1000, 2)</p> </blockquote> <p>But in the case of a mismatch, I want to extract the value from the price_display column and set it into the price column, all within the context of an update statement. I've not been able to figure out how.</p> <p>Thanks.</p> http://stackoverflow.com/questions/935138/continuous-integration-advice/961833#961833 1 Answer by Teflon Ted for Continuous Integration Advice? Teflon Ted 2009-06-07T12:54:37Z 2009-06-07T12:54:37Z <blockquote> <p>Do most folks set up CI to build and test their app on every push to their central SCM repository, or only when pushing to their staging branch?</p> </blockquote> <p>Depends on the team size and velocity of the project. The more people I have working on diverse branches of the code, the more often and vigorous I want the CI to run. I would recommend you start with as much CI as you can muster and gradually back it off as you see fit.</p> <blockquote> <p>I'll use the CI server to automatically run flay, flog, reek, and rcov -- are there any other testing or code-coverage tools I should run?</p> </blockquote> <p>Everything covered by metric-fu is a good start. If your team has a tech writer and/or documentation is part of your delivery, you can throw rdoc in there as well.</p> <blockquote> <p>I'm planning to deploy my app on Slicehost. Should I set up the CI server on a separate Slicehost slice that's set up to be identical (wrt installed gems, libraries, etc.) to my production slice?</p> </blockquote> <p>If you can afford it, yes. Usually small teams and fresh start-ups can't afford to have a dedicated server for every task, but I'm a huge proponent of isolation. Regarding the identical set-up, vendor everything that you can; setting up a fresh server should be quick, simple, and automated.</p> <blockquote> <p>If I do use a separate slice for CI, is there any harm in using the CI slice for a staging server as well?</p> </blockquote> <p>The only harm is cross-contamination between shared resources, e.g. gem versions, database resources, etc. If you're methodical you'll probably be OK, but if you can afford separate servers per environment I'd lean on the side of better safe than sorry.</p> http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781442#1781442 Comment by Teflon Ted on Remotely Track the Current Branch in Git Teflon Ted 2009-11-23T14:06:54Z 2009-11-23T14:06:54Z In order for the test server to pull the latest code for testing, you have to have pushed it somewhere the server can grab it from, and I don't believe there's a post-push hook in git, and I also think that hook would run on the machine that performed the push (e.g. your laptop, not the server with the repository). http://stackoverflow.com/questions/1722421/how-can-you-easily-test-hash-equality-in-ruby-when-you-only-care-about-intersecti/1722521#1722521 Comment by Teflon Ted on How can you easily test hash equality in Ruby when you only care about intersecting keys? Teflon Ted 2009-11-12T15:00:36Z 2009-11-12T15:00:36Z That's great but there's a couple edge cases I want to handle, like if one of the hashes is nil, or empty, or if the value 1 is equal to '1', or the key :b matches the key 'b'. I'll post my solution with unit tests after this simmers for a couple days. Thanks! http://stackoverflow.com/questions/1661586/how-can-you-check-to-see-if-a-file-exists-on-the-remote-server-in-capistrano/1661662#1661662 Comment by Teflon Ted on How can you check to see if a file exists (on the remote server) in Capistrano? Teflon Ted 2009-11-02T15:15:46Z 2009-11-02T15:15:46Z Thanks. I'm assuming you mean to wrap that with the &quot;capture&quot; method? <a href="http://www.capify.org/index.php/Capture" rel="nofollow">capify.org/index.php/Capture</a> http://stackoverflow.com/questions/1311428/haml-control-whitespace-around-text/1531061#1531061 Comment by Teflon Ted on Haml: Control whitespace around text Teflon Ted 2009-10-22T13:39:41Z 2009-10-22T13:39:41Z It works with tags but not expressions; in your example you've changed his expression to a tag. I have the same issue and unfortunately this is not a solution. http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1597526#1597526 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-21T14:59:35Z 2009-10-21T14:59:35Z Thanks but that's not working for me. Please see my update to the question with the example code. http://stackoverflow.com/questions/1597423/medialets-to-track-iphone-app-usage-etc Comment by Teflon Ted on Medialets to track iPhone app usage etc.. Teflon Ted 2009-10-21T11:51:02Z 2009-10-21T11:51:02Z I have used their library and had no issues following the step-by-step instructions in the PDF that accompanies it. If you can add some more specifics or details to your question I might be able to better assist you. Thanks. http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1598950#1598950 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-21T11:47:34Z 2009-10-21T11:47:34Z That's clever and might make a great Plan B but I really need to apply the updates at the before_create step (#6 in your list) after validation. Thanks. http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1597526#1597526 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-20T23:50:42Z 2009-10-20T23:50:42Z Yeah that's not going to work for me. I'm working with a single database here, and as you can see it my comments to the other response, nested transactions aren't working either. This is not looking good. http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1597458#1597458 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-20T23:22:59Z 2009-10-20T23:22:59Z This doesn't work. The wrapped transaction gets rolled back with the wrapping transaction. From the documentation: &quot;Most databases don’t support true nested transactions. At the time of writing, the only database that we’re aware of that supports true nested transactions, is MS-SQL. Because of this, Active Record emulates nested transactions by using savepoints.&quot; http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1597526#1597526 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-20T22:32:30Z 2009-10-20T22:32:30Z &quot;You need to specifically request another connection from AR&quot; - Fantastic; how do I do that? Thanks. http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1597458#1597458 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-20T22:27:59Z 2009-10-20T22:27:59Z Thanks. Could you be a little more explicit? Perhaps some sample/pseudo code? http://stackoverflow.com/questions/1597434/how-do-you-prevent-database-changes-inside-a-rails-activerecord-beforecreate-fil/1597480#1597480 Comment by Teflon Ted on How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Teflon Ted 2009-10-20T22:27:04Z 2009-10-20T22:27:04Z No I have to prevent the create in some cases. http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails/1583857#1583857 Comment by Teflon Ted on Asset URLs without cache timestamps in Rails Teflon Ted 2009-10-18T11:29:01Z 2009-10-18T11:29:01Z Yeah you can use this: $(&quot;img[src*='-trans.png']&quot;) http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails/1583857#1583857 Comment by Teflon Ted on Asset URLs without cache timestamps in Rails Teflon Ted 2009-10-18T11:23:57Z 2009-10-18T11:23:57Z Interesting but your example code has a couple issues like replacing every IMG tag with the class &quot;logo&quot; on the page which is fine if you're the only person working on the code but could be a big WTF moment if some other designer make the faux pas of using the same tag/class combination for another image. Also this only works for one particular image. You implied in your question that you had multiple images you wanted to &quot;fix&quot;, so you might be better off with some pattern matching on the &quot;src&quot; value, which I think jQuery can do. http://stackoverflow.com/questions/1543894/how-might-you-clone-a-database-table-via-rails-migration/1552605#1552605 Comment by Teflon Ted on How might you clone a database table via Rails migration? Teflon Ted 2009-10-12T16:40:06Z 2009-10-12T16:40:06Z Good call. &quot;Use LIKE to create an empty table based on the definition of another table, including any column attributes and indexes defined in the original table&quot; <a href="http://dev.mysql.com/doc/refman/5.1/en/create-table.html" rel="nofollow">dev.mysql.com/doc/refman/&hellip;</a>