User Ryan McGeary - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T22:38:21Zhttp://stackoverflow.com/feeds/user/8985http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1942112/is-it-ok-to-save-twitter-passwords-for-easy-loggin-via-the-twitter-api/1942126#19421269Answer by Ryan McGeary for Is it OK to save Twitter passwords for easy loggin via the Twitter API?Ryan McGeary2009-12-21T19:33:55Z2009-12-22T21:12:04Z<p>While you can certainly store people's usernames and passwords for use with the Twitter API, this is not the recommended approach. <strong>Try <a href="http://apiwiki.twitter.com/OAuth-FAQ" rel="nofollow">Twitter's OAuth Authentication</a> instead.</strong></p>
<blockquote>
<p>OAuth is an authentication protocol that allows users to approve applications to act on their behalf without sharing their password.</p>
</blockquote>
<p>Twitter will eventually deprecate basic (username/password) authentication in the future. Mid-2010 is likely.</p>
http://stackoverflow.com/questions/1944309/changing-an-attribute-using-jquery-doesnt-seem-to-work-in-chrome/1944358#19443581Answer by Ryan McGeary for Changing an attribute using jQuery doesn't seem to work in ChromeRyan McGeary2009-12-22T05:39:58Z2009-12-22T05:39:58Z<p>You have two problems.</p>
<ol>
<li>You were setting the wrong attribute on <code>param[name="movie"]</code>. You were setting a <code>data</code> attributes instead of a <code>value</code> attribute.</li>
<li>Your problem isn't necessarily jQuery; it's the behavior of the flash player in WebKit. It doesn't appear that the Flash player in WebKit auto-reloads when the underlying DOM object is modified. </li>
</ol>
<p>Try this code instead. It rewrites the correct attribute, and it effectively reloads the flash player by removing then re-adding the flash player object from and to the DOM.</p>
<pre><code>jQuery('#video-page-wrapper li a').click(function() {
var url = "http://youtube.com/v/" + jQuery(this).attr("id");
jQuery('.video-page object').attr({ data: url });
jQuery('.video-page param[name="movie"]').attr({ value: url });
jQuery('.video-page object').remove().appendTo('.video-page');
});
</code></pre>
http://stackoverflow.com/questions/1942031/oracle-tables/1942050#19420506Answer by Ryan McGeary for ORACLE - tablesRyan McGeary2009-12-21T19:21:08Z2009-12-21T22:43:21Z<p>Yes, your table definitions are saved; Oracle <a href="http://en.wikipedia.org/wiki/Data%5FDefinition%5FLanguage" rel="nofollow">DDL</a> has an implicit transaction*. Other databases, such as PostrgreSQL, do have <a href="http://wiki.postgresql.org/wiki/Transactional%5FDDL%5Fin%5FPostgreSQL%3A%5FA%5FCompetitive%5FAnalysis" rel="nofollow">transactional DDL</a>, but with Oracle, it is automatic, so be careful.</p>
<p>* <a href="http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10743/transact.htm#i8072" rel="nofollow">Oracle Transaction Management</a>: <em>If the current transaction contains any <a href="http://en.wikipedia.org/wiki/Data%5FManipulation%5FLanguage" rel="nofollow">DML</a> statements, Oracle first commits the transaction, and then runs and commits the DDL statement as a new, single statement transaction.</em></p>
http://stackoverflow.com/questions/1934599/emacs-how-to-know-current-buffer-have-set-mark/1934604#19346041Answer by Ryan McGeary for [emacs] how to know current buffer have set-markRyan McGeary2009-12-20T00:56:12Z2009-12-20T00:56:12Z<p>I'd recommend turning on <code>transient-mark-mode</code></p>
<pre><code>(setq transient-mark-mode t)
</code></pre>
<p><code>transient-mark-mode</code> will highlight the region between the mark and your current point.</p>
<p>Alternatively, you can press <code>C-x C-x</code> to jump between the current point and the mark to see where the mark is set.</p>
http://stackoverflow.com/questions/1925944/how-much-should-software-engineer-with-three-years-of-experience-be-making/1925958#19259585Answer by Ryan McGeary for How much should Software Engineer with three years of experience be making?Ryan McGeary2009-12-18T02:44:27Z2009-12-18T02:52:49Z<h2><a href="http://swz.salary.com/salarywizard/layoutscripts/swzl%5Fsalaryresults.asp?op=salswz%5Fpsr&hdOmniNarrowDesc=IT+--+Computers%2C+Software&hdOmniTotalJobsFound=150&pagefrom=selectjob&redbird=&jobfamilycode=20&joblevelcode=2&hdLocationOption=0&hdSearchByOption=0&hdKeyword=Software+Engineer+II&hdJobCategory=IT05&hdZipCode=27701&hdStateMetro=141&hdGeoLocation=Durham%2C+NC+27701&hdCurrentPage=1&hdViewAllRecords=0&hdSortBy=0&hdJobCode=IT10000002&hdJobTitle=Software+Engineer+II&hdNarrowDesc=IT+--+Computers%2C+Software&hdJSBoolDisplayAdvertisement=&jobcounter=1&countertype=0&totaljoblistnum=1&rdbSearchByOption=0&txtKeyword=Software+Engineer+II&hdAjaxDisplaySection1=1&hdAjaxDisplaySection2=1&hdAjaxKeyword=Software+Engineer+II&hdAjaxKeywordWithOR=%23Software%23+OR+%23Engineer%23+OR+%23II%23" rel="nofollow">Salary.com / Software Engineer II / Durham, NC</a></h2>
http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user0Twitter List Membership Count Per UserRyan McGeary2009-12-15T00:04:22Z2009-12-18T02:41:43Z
<p>The <a href="http://apiwiki.twitter.com/" rel="nofollow">Twitter API</a> has the <code>friends_count</code> and <code>followers_count</code> available as cached values for the <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-users%C2%A0show" rel="nofollow"><code>users/show</code></a> or <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-account%C2%A0verify%5Fcredentials" rel="nofollow"><code>account/verify_credentials</code></a> method. As far as I can tell, the only way to determine the number of lists a user is a member of is to make a call to <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-GET-list-memberships" rel="nofollow">GET list memberships</a> and paginate through using the cursor to count the total number of lists a person is a member of. This is sub-optimal; ideally <code>lists_count</code> would be available on <code>users/show</code>.</p>
<p>Is there an easier way to determine the raw number of lists a user is a member of using the Twitter API? What did I miss?</p>
http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user/1919517#19195170Answer by Ryan McGeary for Twitter List Membership Count Per UserRyan McGeary2009-12-17T04:44:04Z2009-12-18T01:22:37Z<p>It looks like adding <code>lists_count</code> to the user payload is <a href="http://groups.google.com/group/twitter-development-talk/browse%5Fthread/thread/93eb844ab146e930/d4ce4efd4e2765f4?lnk=gst&q=lists%5Fcount#d4ce4efd4e2765f4" rel="nofollow"><strong>on the todo list</strong></a>. </p>
<blockquote>
<p><em>We've got this on our todo list. It requires fairly extensive asynchronous fragment invalidation so it's not as simple as just adding the count into the payload. We've got it on the list though.</em></p>
</blockquote>
<p>Meanwhile, <a href="http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user#answer-1908307">Darrel's suggestion</a> is the only direct approach, but succinctness of a language and its libraries do matter:</p>
<pre><code>require 'rubygems'
require 'nokogiri'
require 'open-uri'
username = "twitterapi"
page = Nokogiri::HTML(open("http://twitter.com/#{username}"))
page.at_css("#lists_count").text.gsub(/\D/, "").to_i # => 1299
</code></pre>
http://stackoverflow.com/questions/503093/how-can-i-make-a-redirect-page-in-jquery/506004#50600431Answer by Ryan McGeary for How can I make a redirect page In jQuery?Ryan McGeary2009-02-03T04:24:09Z2009-12-17T23:30:58Z<p>Not jQuery specific, but <code>window.location.replace(...)</code> will accomplish what you want. It is better than using <code>window.location =</code> if you don't want the originating page to show up in the session history, meaning the user won't get stuck in a never-ending back-button fiasco.</p>
<pre><code>window.location.replace("http://stackoverflow.com");
</code></pre>
http://stackoverflow.com/questions/1893625/what-does-css3-and-html5-have-in-common/1893644#18936443Answer by Ryan McGeary for what does CSS3 and HTML5 have in common?Ryan McGeary2009-12-12T14:46:52Z2009-12-12T14:46:52Z<p><strong>No</strong>, we as developers need to push forward. Tools like <a href="http://code.google.com/chrome/chromeframe/" rel="nofollow">Google Chrome Frame</a> and <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">Explorer Canvas</a> will allow us to push the edge without too much worry about the <a href="http://en.wikipedia.org/wiki/Internet%5FExplorer%5F6" rel="nofollow">browsers</a> that <a href="http://en.wikipedia.org/wiki/Internet%5FExplorer%5F7" rel="nofollow">can't</a> <a href="http://en.wikipedia.org/wiki/Internet%5FExplorer%5F8" rel="nofollow">keep up</a>.</p>
http://stackoverflow.com/questions/1888670/capistrano-deploy-rb-file-refactoring/1888741#18887410Answer by Ryan McGeary for Capistrano: deploy.rb file refactoringRyan McGeary2009-12-11T15:19:24Z2009-12-11T16:12:14Z<p>In your <code>config/deploy.rb</code>, try <code>load</code> instead of <code>require</code>. Also, capistrano already runs as if you're at the <code>RAILS_ROOT</code>, so there's no need to use <code>__FILE__</code>:</p>
<pre><code>load "lib/capistrano_utilities"
</code></pre>
<p>In a capistrano config file, <code>load</code> is redefined to load another configuration file into the current configuration. When passing a path to it, it actually calls <code>load_from_file</code> (a private method defined by capistrano) that just reads the file from disk and <code>instance_eval</code>'s it.</p>
http://stackoverflow.com/questions/1888515/fan-count-for-a-facebook-fan-page0Fan count for a Facebook Fan PageRyan McGeary2009-12-11T14:43:45Z2009-12-11T14:43:45Z
<p>I needed to pull the fan count for particular fan pages on Facebook. After digging through the API, I couldn't find a way to do this with the API "proper." Instead I fell back to a FQL query, and it worked quite well.</p>
<pre><code>select fan_count from page where page_id = <FAN_PAGE_ID>
</code></pre>
<p>What did I miss about the Facebook API. Is this the only way to capture a fan count for a page? In general, how often do you use FQL for your requests as opposed to the exposed API methods?</p>
http://stackoverflow.com/questions/1884994/format-textfield-helper/1885105#18851051Answer by Ryan McGeary for format text_field helper?Ryan McGeary2009-12-11T00:37:32Z2009-12-11T00:37:32Z<p><strong>Option 1:</strong> If you have a default time format for your application, <code>text_field</code> will use that. For example, you might have a <code>config/initializers/time_formats.rb</code> containing the following:</p>
<pre><code>Time::DATE_FORMATS[:default] = '%m/%d/%Y %I:%M %p'
</code></pre>
<p><hr></p>
<p><strong>Option 2:</strong> You can override the <code>text_field</code>'s <code>value</code> using <code>strftime</code> directly. For example:</p>
<pre><code><%- scheduled_at_string = form.object.scheduled_at && form.object.scheduled_at.strftime("%m/%d/%Y") -%>
<%= form.text_field :scheduled_at, :value => scheduled_at_string %>
</code></pre>
<p>(You might want to clean this up with a helper.)</p>
http://stackoverflow.com/questions/1843924/what-to-learn-after-php-scala-or-clojure/1844319#18443197Answer by Ryan McGeary for What to learn after PHP? Scala or Clojure?Ryan McGeary2009-12-04T01:30:06Z2009-12-04T01:30:06Z<p>For functional languages, <strong>learn both <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a> and <a href="http://clojure.org/" rel="nofollow">Clojure</a></strong>. You'll learn new ways of thinking from both of them. Go learn some <strong><a href="http://reia-lang.org/" rel="nofollow">Reia</a></strong> and <strong><a href="http://erlang.org/" rel="nofollow">Erlang</a></strong> while your at it too. </p>
<p>Seriously, the more languages you have under your belt, the better off you'll be as a programmer regardless of the language you end up using.</p>
<p><strong>Rant:</strong> "What language should I learn?" questions are getting tiresome. The answers should be the same every time, yet no one gives the correct sage advice. Instead, everyone spreads FUD and suggests that the language they happen to use for their day job is the one you should learn. Poppy cock.</p>
http://stackoverflow.com/questions/1843913/how-many-times-was-a-ruby-gem-installed-via-gem-install-or-gem-update/1844073#18440731Answer by Ryan McGeary for How many times was a Ruby gem installed via `gem install` or `gem update`Ryan McGeary2009-12-04T00:25:55Z2009-12-04T00:25:55Z<p>With gemcutter being the new canonical source for gems, you'll have better luck with these statistics in the future. All future gem installs will go through gemcutter. Unfortunately, I'm pretty sure the old rubyforge download numbers are just web downloads; they don't include <code>gem install</code> or <code>gem update</code> stats. </p>
<p>I'm not sure if the <code>gem install</code> stats exist in any shape or form from the old rubyforge platform, but the person to email would be <a href="http://tomcopeland.blogs.com/" rel="nofollow">Tom Copeland</a>. </p>
http://stackoverflow.com/questions/1813649/how-many-people-were-involved-in-a-project-based-on-revision-control-system/1813816#181381611Answer by Ryan McGeary for How many people were involved in a project? Based on Revision Control SystemRyan McGeary2009-11-28T21:18:52Z2009-11-30T17:57:52Z<h2>git</h2>
<p>The <a href="http://www.kernel.org/pub/software/scm/git/docs/git-shortlog.html" rel="nofollow"><code>shortlog</code></a> command is very useful. This summarizes the typical <code>git-log</code> output.</p>
<pre><code>$ git shortlog -sn
119 tsaleh
113 Joe Ferris
70 Ryan McGeary
45 Tammer Saleh
45 Dan Croak
19 Matt Jankowski
...
</code></pre>
<p>Pass to <code>wc</code> to see the number of unique usernames:</p>
<pre><code>$ git shortlog -sn | wc -l
40
</code></pre>
http://stackoverflow.com/questions/1813196/hasmany-in-rails-uses-a-join/1813256#18132562Answer by Ryan McGeary for has_many in Rails uses a JOINRyan McGeary2009-11-28T18:13:20Z2009-11-28T18:13:20Z<p>No, by default, a <code>has_many</code> relationship <strong>does not</strong> use a join to find related rows. Here's a quick command line sessions that show this (I have a debug logger turned on for my script/console).</p>
<pre><code>$ rails has_many_test
$ cd has_many_test
$ ruby script/generate model account
$ ruby script/generate model user account_id:integer
$ rake db:migrate
$ ruby script/console
Loading development environment (Rails 2.3.4)
>> Account.has_many :users
>> a = Account.create
Account Create (0.4ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES('2009-11-28 18:06:50', '2009-11-28 18:06:50')
>> a.users
User Load (0.3ms) SELECT * FROM "users" WHERE ("users".account_id = 1)
</code></pre>
<p>However, if the <code>has_many</code> relationship defines <code>:through</code> or <code>:include</code> options, the SQL will result in a JOIN, but correctly so.</p>
http://stackoverflow.com/questions/1810943/jquery-queue-messages/1810989#18109890Answer by Ryan McGeary for jQuery queue messagesRyan McGeary2009-11-27T23:28:27Z2009-11-27T23:28:27Z<p>Here's a mini custom plugin that I've used in the past that chains a bunch of animations one after another.</p>
<pre><code>// Good for serializing animations
$.fn.chain = function(fn) {
var elements = this;
var i = 0;
function nextAction() {
if (elements.eq(i)) fn.apply(elements.eq(i), [nextAction]);
i++;
}
nextAction();
};
</code></pre>
<p>You might call it like so (<strong><a href="http://jsbin.com/omuki" rel="nofollow">Here's an example of it in use</a></strong>):</p>
<pre><code>$(document).ready(function() {
$('li').chain(function(nextChain) { this.slideToggle("fast", nextChain); });
});
</code></pre>
<p>The function you pass to <code>chain</code> passes another function that you must call when you're down with one cycle. In the example above, we just pass the <code>nextChain</code> function as the callback to the <code>slideToggle</code>.</p>
http://stackoverflow.com/questions/1797357/timeagoinwords-and-localize/1797392#17973921Answer by Ryan McGeary for time_ago_in_words and localizeRyan McGeary2009-11-25T14:46:21Z2009-11-25T14:46:21Z<p>Avoid doing it on the server and try it on the client instead by using the <a href="http://timeago.yarp.com/" rel="nofollow">jQuery timeago plugin</a>. Timeago has support for i18n. </p>
<p>This turns this:</p>
<pre><code><abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>
</code></pre>
<p>Into this:</p>
<pre><code><abbr class="timeago" title="July 17, 2008">about a year ago</abbr>
</code></pre>
<p>And <a href="http://gist.github.com/6251" rel="nofollow">supports language overrides</a>.</p>
http://stackoverflow.com/questions/1743017/most-compact-way-to-compare-three-objects-for-equality-using-java/1743078#17430786Answer by Ryan McGeary for Most compact way to compare three objects for equality using Java?Ryan McGeary2009-11-16T15:54:05Z2009-11-17T18:29:13Z<p>Since I never start a Java project without using <a href="http://commons.apache.org/lang/" rel="nofollow">Apache commons-lang</a>, try <code>ObjectUtils.equals</code> (it's null safe):</p>
<pre><code>if (ObjectUtils.equals(a, b) || ObjectUtils.equals(b, c) || ObjectUtils.equals(a, c)) {
// error condition
}
</code></pre>
<p>Put that logic in a generic method, and you'll do even better.</p>
<p>While the business logic allows C to be null, in scenarios like this, it's often better to code defensively and assume that either A or B could be null as well.</p>
http://stackoverflow.com/questions/1743073/ruby-problem-using-passenger/1743257#17432570Answer by Ryan McGeary for Ruby: Problem using passengerRyan McGeary2009-11-16T16:26:43Z2009-11-16T16:26:43Z<p>Did you reconfigure the <code>relative_url_root</code> in your rails application? For example, in <code>config/environment.rb</code>:</p>
<pre><code>config.action_controller.relative_url_root = "/rails"
</code></pre>
http://stackoverflow.com/questions/1743163/css-columns-shrinking-100-pixel-value/1743186#17431863Answer by Ryan McGeary for css columns shrinking 100% pixel valueRyan McGeary2009-11-16T16:13:36Z2009-11-16T16:13:36Z<p><strong>Use <code>margin: 0 auto</code></strong></p>
<p>Kill your left and right columns, give your main div a width, and then center that div using an auto left and right margin. For example:</p>
<pre><code>#mainDiv {
width: 80%;
margin: 0 auto;
}
</code></pre>
http://stackoverflow.com/questions/1743073/ruby-problem-using-passenger/1743120#17431201Answer by Ryan McGeary for Ruby: Problem using passengerRyan McGeary2009-11-16T16:00:51Z2009-11-16T16:05:57Z<p><em>Assuming you have passenger installed and configured correctly with Apache</em> ... Your <code>DocumentRoot</code> needs to point at the <code>public</code> directory of your rails app. Here's a working <code>VirtualHost</code> directive:</p>
<pre><code><VirtualHost *:80>
ServerName myapp.local
DocumentRoot "/path/to/myapp/public"
RailsEnv development
<directory "/path/to/myapp/public">
Order allow,deny
Allow from all
</directory>
</VirtualHost>
</code></pre>
<p><hr></p>
<p>Beforehand, also make sure that named virtual hosts are turned on:</p>
<pre><code>NameVirtualHost *:80
</code></pre>
<p>And also that you actually have the passenger model configured correctly. For example:</p>
<pre><code>LoadModule passenger_module /path/to/ruby/gems/1.8/gems/passenger-2.2.5/ext/apache2/mod_passenger.so
PassengerRoot /path/to/ruby/gems/1.8/gems/passenger-2.2.5
PassengerRuby /path/to/bin/ruby
</code></pre>
http://stackoverflow.com/questions/293981/best-practice-to-mark-deprecated-code-in-ruby/294114#29411411Answer by Ryan McGeary for Best practice to mark deprecated code in Ruby?Ryan McGeary2008-11-16T17:09:44Z2009-11-16T02:24:10Z<p>For almost all cases, depending on a library or metaprogramming for a deprecation is overkill. Simply add a comment to the rdoc and call the <code>Kernel#warn</code> method. For example:</p>
<pre><code>class Foo
# <b>DEPRECATED:</b> Please use <tt>useful</tt> instead.
def useless
warn "[DEPRECATION] `useless` is deprecated. Please use `useful` instead."
useful
end
def useful
# ...
end
end
</code></pre>
<p><hr></p>
<p>If you're using <a href="http://yardoc.org/" rel="nofollow">Yard</a> instead of <a href="http://rdoc.sourceforge.net/" rel="nofollow">rdoc</a>, your doc comment should look like this:</p>
<pre><code># @deprecated Please use {#useful} instead
</code></pre>
<p><hr></p>
<p>Also, don't forget to remove the deprecated method in some future release. Don't make the same mistakes that the Java libraries did.</p>
http://stackoverflow.com/questions/1288070/bit-ly-api-stat-tracking/1739535#17395350Answer by Ryan McGeary for bit.ly - API Stat TrackingRyan McGeary2009-11-16T00:52:34Z2009-11-16T02:20:13Z<p>When calling the <code>/shorten</code> action of the REST API, you have to add a <code>&history=1</code> parameter to tell bit.ly to add the URL to the web history for the authenticated user.</p>
<p>For example:</p>
<pre><code>http://api.bit.ly/shorten?version=2.0.1&longUrl=http://cnn.com&login=bitlyapidemo&apiKey=R_0da49e0a9118ff35f52f629d2d71bf07&history=1
</code></pre>
<p><a href="http://api.bit.ly/shorten?version=2.0.1&longUrl=http%3A//cnn.com&login=bitlyapidemo&apiKey=R%5F0da49e0a9118ff35f52f629d2d71bf07&history=1" rel="nofollow">Clickable version of above link</a></p>
http://stackoverflow.com/questions/1163226/do-any-url-shortening-services-with-link-tracking-have-a-https-accessible-url/1739562#17395620Answer by Ryan McGeary for Do any URL Shortening services with link tracking have a https accessible url?Ryan McGeary2009-11-16T01:06:12Z2009-11-16T01:06:12Z<p>Bit.ly doesn't require you to send a password using their API; they require you to pass a token (aka API Key) that isn't in any way tied to your password. It's an URL shortening service after all. Considering all the information is pretty much public anyway, security shouldn't be a concern.</p>
http://stackoverflow.com/questions/1341512/bit-ly-api-thumbnails/1739551#17395510Answer by Ryan McGeary for bit.ly API thumbnailsRyan McGeary2009-11-16T01:02:19Z2009-11-16T01:02:19Z<p>It looks like bit.ly hosts their thumbnails on Amazon S3 (The Access Denied error is an Amazon error), and it looks like bit.ly has since disabled their access to said thumbnails. </p>
http://stackoverflow.com/questions/1739199/theming-for-with-javascript/1739223#17392231Answer by Ryan McGeary for Theming for/with javascript?Ryan McGeary2009-11-15T23:10:24Z2009-11-15T23:25:24Z<p>Use <strong><a href="http://en.wikipedia.org/wiki/HTML#Semantic%5FHTML" rel="nofollow">semantic HTML</a></strong> and just style the generated HTML with <strong><a href="http://www.w3.org/Style/CSS/" rel="nofollow">CSS</a></strong>.</p>
http://stackoverflow.com/questions/1738949/getting-the-currentuser-in-my-user-class/1739002#17390022Answer by Ryan McGeary for getting the `current_user` in my User classRyan McGeary2009-11-15T22:01:46Z2009-11-15T22:26:12Z<p>Regardless of whether you need the <code>current_user</code> behavior above, <code>award_badge</code> should just be a regular instance method acting on <code>self</code> instead of acting on the passed <code>user</code> argument (same goes for <code>check_if_badges_earned</code>). In your <code>award_badge</code> method, <strong>try <code>find_or_create_by_...</code> instead of the logic you currently have</strong>. For example, try this:</p>
<pre><code>class User < ActiveRecord::Base
# ...
def award_badge(badge_id)
badgings.find_or_create_by_badge_id(badge_id)
end
end
</code></pre>
<p><hr></p>
<p>To access the <code>current_user</code> in your model classes, I sometimes like to <strong>use thread-local variables</strong>. It certainly blurs the separation of MVC, but sometimes this kind of coupling is just necessary in an application.</p>
<p>In your ApplicationController, store the <code>current_user</code> in a thread-local variable:</p>
<pre><code>class ApplicationController < ActionController::Base
before_filter :set_thread_locals
private
# Store thread-local variables so models can access them (Hackish, but useful)
def set_thread_locals
Thread.current[:current_user] = current_user
end
end
</code></pre>
<p>Add a new class method to your ActiveRecord model to return the <code>current_user</code> (you could also extend ActiveRecord::Base to make this available to all models):</p>
<pre><code>class User < ActiveRecord::Base
def self.current_user
Thread.current[:current_user]
end
end
</code></pre>
<p>Then, you'll be able to access the current user in the instance methods of your <code>User</code> model with <code>self.class.current_user</code>.</p>
http://stackoverflow.com/questions/1734767/can-this-relationship-be-described-in-ruby-on-rails/1734811#17348112Answer by Ryan McGeary for Can this relationship be described in Ruby on Rails?Ryan McGeary2009-11-14T16:55:13Z2009-11-14T16:55:13Z<p>Given table definitions like this:</p>
<pre><code>create_table :addresses do |t|
t.string :street
t.string :city
t.string :state
t.string :zip
t.timestamps
end
create_table :customers do |t|
t.string :name
t.references :shipping_address
t.references :billing_address
t.timestamps
end
</code></pre>
<p>You can associate a billing and shipping address with your customer like this:</p>
<pre><code>class Customer < ActiveRecord::Base
belongs_to :shipping_address, :class_name => "Address"
belongs_to :billing_address, :class_name => "Address"
end
</code></pre>
http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#17343521Answer by Ryan McGeary for Using Git in a TFS shopRyan McGeary2009-11-14T14:20:31Z2009-11-14T16:12:44Z<p>Working with a <em>superior</em> version control system won't only have a positive effect on you; it will have a positive effect on your whole team. There might be resistance to start, but in the long run, the benefits that you see will likely be seen by the rest of the team. </p>
<p>Make a simple proposal to convert your <em>"TFS shop"</em> to something new. You will find three kinds of people aside from yourself:</p>
<ol>
<li>those that are willing to try your proposal, because it gives them an opportunity to learn something new.</li>
<li>those that have already tried your proposal (and I mean <em>actually</em> tried), but disagree with you</li>
<li>those that reject your proposal because they don't want to learn something new</li>
</ol>
<p>The first two are the kinds of people that you want to keep close, regardless of whether you agree with them or not. The last type of person is not only a negative influence on the team as a whole, but is also someone who you should distance yourself from. </p>
<p><strong>Disclaimer</strong>: I know this doesn't answer the question directly, but I think it's a good approach to take whenever you think a technology change is warranted.</p>
<p><strong>Aside</strong>: Whenever you find yourself calling your team a "TFS shop," "Java shop," "Windows shop," etc, an alarm should go off in your head. This is a huge red flag. Different technologies are good for different kinds of tasks and pigeonholing a team is detrimental.</p>
http://stackoverflow.com/questions/1942112/is-it-ok-to-save-twitter-passwords-for-easy-loggin-via-the-twitter-api/1942126#1942126Comment by Ryan McGeary on Is it OK to save Twitter passwords for easy loggin via the Twitter API?Ryan McGeary2009-12-21T21:03:03Z2009-12-21T21:03:03ZYour rate limits remain even with OAuth, though, you can apply to be white-listed here: <a href="http://twitter.com/help/request_whitelisting" rel="nofollow">twitter.com/help/request_whitelisting</a>
More info on rate limits: <a href="http://apiwiki.twitter.com/Rate-limiting" rel="nofollow">apiwiki.twitter.com/Rate-limiting</a>http://stackoverflow.com/questions/1888515/fan-count-for-a-facebook-fan-pageComment by Ryan McGeary on Fan count for a Facebook Fan PageRyan McGeary2009-12-18T22:29:00Z2009-12-18T22:29:00ZSweet, my first Tumbleweed badge.http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-userComment by Ryan McGeary on Twitter List Membership Count Per UserRyan McGeary2009-12-18T02:51:52Z2009-12-18T02:51:52ZSneakyness, Agreed, that is worth mentioning, but "close-enough" values are okay for this particular task.http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user/1908307#1908307Comment by Ryan McGeary on Twitter List Membership Count Per UserRyan McGeary2009-12-17T04:50:17Z2009-12-17T04:50:17Z...but, unfortunately, this might be the only direct way for now. Still deserving of an upvote.http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user/1908307#1908307Comment by Ryan McGeary on Twitter List Membership Count Per UserRyan McGeary2009-12-17T03:23:22Z2009-12-17T03:23:22ZBrittle. Relying on the username is brittle. Having dealt with several other twitter apps, people do change their usernames. Accessing data via user_ids works better. Relying on the twitter page layout is brittle; the xpath query is brittle. It'd be safer to use <code>//*[@id="lists_count"]</code>. Lastly, authentication isn't necessary for this, but we use OAuth (not user/password) anyway.http://stackoverflow.com/questions/1893625/what-does-css3-and-html5-have-in-common/1893644#1893644Comment by Ryan McGeary on what does CSS3 and HTML5 have in common?Ryan McGeary2009-12-12T17:35:06Z2009-12-12T17:35:06ZBalusC, Because, ironically, some organizations allow employees to install IE plugins as opposed to switch to another browser. In principal, I agree with you though.http://stackoverflow.com/questions/1888670/capistrano-deploy-rb-file-refactoring/1888741#1888741Comment by Ryan McGeary on Capistrano: deploy.rb file refactoringRyan McGeary2009-12-11T16:12:37Z2009-12-11T16:12:37ZRoger, more details added about capistrano's specifics.http://stackoverflow.com/questions/1810943/jquery-queue-messages/1810989#1810989Comment by Ryan McGeary on jQuery queue messagesRyan McGeary2009-11-28T15:31:10Z2009-11-28T15:31:10Zdominik, You don't have to chain everything after document load. You can chain everything after the text of the message is changed.http://stackoverflow.com/questions/1783288/jquery-on-google-json-fails-with-error-405Comment by Ryan McGeary on JQuery on Google JSON fails with Error 405?Ryan McGeary2009-11-23T14:08:14Z2009-11-23T14:08:14ZWhat exact JSON resource are you trying to access? Please include a code snippet of what you've already tried.http://stackoverflow.com/questions/1743017/most-compact-way-to-compare-three-objects-for-equality-using-java/1743078#1743078Comment by Ryan McGeary on Most compact way to compare three objects for equality using Java?Ryan McGeary2009-11-17T18:28:52Z2009-11-17T18:28:52ZDon, I agree with that. http://stackoverflow.com/questions/1743163/css-columns-shrinking-100-pixel-value/1743186#1743186Comment by Ryan McGeary on css columns shrinking 100% pixel valueRyan McGeary2009-11-17T14:48:25Z2009-11-17T14:48:25ZPut the background on the <code><body></code> tag or some other outer div.http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352Comment by Ryan McGeary on Using Git in a TFS shopRyan McGeary2009-11-17T14:46:08Z2009-11-17T14:46:08Zgit-svn is a a great thing, but it should only be used as a temporary solution or for one-offs. It was also a smart and necessary marketing ploy to make it easy to switch to git from svn (the prominent VCS). If you write a git-tfs and make it widely available, that's one thing; otherwise it's a waste of time and resources for just one shop.http://stackoverflow.com/questions/1743073/ruby-problem-using-passenger/1743257#1743257Comment by Ryan McGeary on Ruby: Problem using passengerRyan McGeary2009-11-16T17:50:32Z2009-11-16T17:50:32ZWhat version of rails?http://stackoverflow.com/questions/1743073/ruby-problem-using-passenger/1743120#1743120Comment by Ryan McGeary on Ruby: Problem using passengerRyan McGeary2009-11-16T16:29:27Z2009-11-16T16:29:27ZUnderstood, see my other answer attempt.http://stackoverflow.com/questions/1743073/ruby-problem-using-passengerComment by Ryan McGeary on Ruby: Problem using passengerRyan McGeary2009-11-16T16:02:02Z2009-11-16T16:02:02Z<i>"...even though I configured everything correctly."</i> <b>Not quite.</b>