User Ryan McGeary - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:38:21Z http://stackoverflow.com/feeds/user/8985 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1942112/is-it-ok-to-save-twitter-passwords-for-easy-loggin-via-the-twitter-api/1942126#1942126 9 Answer by Ryan McGeary for Is it OK to save Twitter passwords for easy loggin via the Twitter API? Ryan McGeary 2009-12-21T19:33:55Z 2009-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#1944358 1 Answer by Ryan McGeary for Changing an attribute using jQuery doesn't seem to work in Chrome Ryan McGeary 2009-12-22T05:39:58Z 2009-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#1942050 6 Answer by Ryan McGeary for ORACLE - tables Ryan McGeary 2009-12-21T19:21:08Z 2009-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#1934604 1 Answer by Ryan McGeary for [emacs] how to know current buffer have set-mark Ryan McGeary 2009-12-20T00:56:12Z 2009-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#1925958 5 Answer by Ryan McGeary for How much should Software Engineer with three years of experience be making? Ryan McGeary 2009-12-18T02:44:27Z 2009-12-18T02:52:49Z <h2><a href="http://swz.salary.com/salarywizard/layoutscripts/swzl%5Fsalaryresults.asp?op=salswz%5Fpsr&amp;hdOmniNarrowDesc=IT+--+Computers%2C+Software&amp;hdOmniTotalJobsFound=150&amp;pagefrom=selectjob&amp;redbird=&amp;jobfamilycode=20&amp;joblevelcode=2&amp;hdLocationOption=0&amp;hdSearchByOption=0&amp;hdKeyword=Software+Engineer+II&amp;hdJobCategory=IT05&amp;hdZipCode=27701&amp;hdStateMetro=141&amp;hdGeoLocation=Durham%2C+NC+27701&amp;hdCurrentPage=1&amp;hdViewAllRecords=0&amp;hdSortBy=0&amp;hdJobCode=IT10000002&amp;hdJobTitle=Software+Engineer+II&amp;hdNarrowDesc=IT+--+Computers%2C+Software&amp;hdJSBoolDisplayAdvertisement=&amp;jobcounter=1&amp;countertype=0&amp;totaljoblistnum=1&amp;rdbSearchByOption=0&amp;txtKeyword=Software+Engineer+II&amp;hdAjaxDisplaySection1=1&amp;hdAjaxDisplaySection2=1&amp;hdAjaxKeyword=Software+Engineer+II&amp;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-user 0 Twitter List Membership Count Per User Ryan McGeary 2009-12-15T00:04:22Z 2009-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#1919517 0 Answer by Ryan McGeary for Twitter List Membership Count Per User Ryan McGeary 2009-12-17T04:44:04Z 2009-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&amp;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 # =&gt; 1299 </code></pre> http://stackoverflow.com/questions/503093/how-can-i-make-a-redirect-page-in-jquery/506004#506004 31 Answer by Ryan McGeary for How can I make a redirect page In jQuery? Ryan McGeary 2009-02-03T04:24:09Z 2009-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#1893644 3 Answer by Ryan McGeary for what does CSS3 and HTML5 have in common? Ryan McGeary 2009-12-12T14:46:52Z 2009-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#1888741 0 Answer by Ryan McGeary for Capistrano: deploy.rb file refactoring Ryan McGeary 2009-12-11T15:19:24Z 2009-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-page 0 Fan count for a Facebook Fan Page Ryan McGeary 2009-12-11T14:43:45Z 2009-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 = &lt;FAN_PAGE_ID&gt; </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#1885105 1 Answer by Ryan McGeary for format text_field helper? Ryan McGeary 2009-12-11T00:37:32Z 2009-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>&lt;%- scheduled_at_string = form.object.scheduled_at &amp;&amp; form.object.scheduled_at.strftime("%m/%d/%Y") -%&gt; &lt;%= form.text_field :scheduled_at, :value =&gt; scheduled_at_string %&gt; </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#1844319 7 Answer by Ryan McGeary for What to learn after PHP? Scala or Clojure? Ryan McGeary 2009-12-04T01:30:06Z 2009-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#1844073 1 Answer by Ryan McGeary for How many times was a Ruby gem installed via `gem install` or `gem update` Ryan McGeary 2009-12-04T00:25:55Z 2009-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#1813816 11 Answer by Ryan McGeary for How many people were involved in a project? Based on Revision Control System Ryan McGeary 2009-11-28T21:18:52Z 2009-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#1813256 2 Answer by Ryan McGeary for has_many in Rails uses a JOIN Ryan McGeary 2009-11-28T18:13:20Z 2009-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) &gt;&gt; Account.has_many :users &gt;&gt; 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') &gt;&gt; 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#1810989 0 Answer by Ryan McGeary for jQuery queue messages Ryan McGeary 2009-11-27T23:28:27Z 2009-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#1797392 1 Answer by Ryan McGeary for time_ago_in_words and localize Ryan McGeary 2009-11-25T14:46:21Z 2009-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>&lt;abbr class="timeago" title="2008-07-17T09:24:17Z"&gt;July 17, 2008&lt;/abbr&gt; </code></pre> <p>Into this:</p> <pre><code>&lt;abbr class="timeago" title="July 17, 2008"&gt;about a year ago&lt;/abbr&gt; </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#1743078 6 Answer by Ryan McGeary for Most compact way to compare three objects for equality using Java? Ryan McGeary 2009-11-16T15:54:05Z 2009-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#1743257 0 Answer by Ryan McGeary for Ruby: Problem using passenger Ryan McGeary 2009-11-16T16:26:43Z 2009-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#1743186 3 Answer by Ryan McGeary for css columns shrinking 100% pixel value Ryan McGeary 2009-11-16T16:13:36Z 2009-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#1743120 1 Answer by Ryan McGeary for Ruby: Problem using passenger Ryan McGeary 2009-11-16T16:00:51Z 2009-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>&lt;VirtualHost *:80&gt; ServerName myapp.local DocumentRoot "/path/to/myapp/public" RailsEnv development &lt;directory "/path/to/myapp/public"&gt; Order allow,deny Allow from all &lt;/directory&gt; &lt;/VirtualHost&gt; </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#294114 11 Answer by Ryan McGeary for Best practice to mark deprecated code in Ruby? Ryan McGeary 2008-11-16T17:09:44Z 2009-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 # &lt;b&gt;DEPRECATED:&lt;/b&gt; Please use &lt;tt&gt;useful&lt;/tt&gt; 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#1739535 0 Answer by Ryan McGeary for bit.ly - API Stat Tracking Ryan McGeary 2009-11-16T00:52:34Z 2009-11-16T02:20:13Z <p>When calling the <code>/shorten</code> action of the REST API, you have to add a <code>&amp;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&amp;longUrl=http://cnn.com&amp;login=bitlyapidemo&amp;apiKey=R_0da49e0a9118ff35f52f629d2d71bf07&amp;history=1 </code></pre> <p><a href="http://api.bit.ly/shorten?version=2.0.1&amp;longUrl=http%3A//cnn.com&amp;login=bitlyapidemo&amp;apiKey=R%5F0da49e0a9118ff35f52f629d2d71bf07&amp;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#1739562 0 Answer by Ryan McGeary for Do any URL Shortening services with link tracking have a https accessible url? Ryan McGeary 2009-11-16T01:06:12Z 2009-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#1739551 0 Answer by Ryan McGeary for bit.ly API thumbnails Ryan McGeary 2009-11-16T01:02:19Z 2009-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#1739223 1 Answer by Ryan McGeary for Theming for/with javascript? Ryan McGeary 2009-11-15T23:10:24Z 2009-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#1739002 2 Answer by Ryan McGeary for getting the `current_user` in my User class Ryan McGeary 2009-11-15T22:01:46Z 2009-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 &lt; 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 &lt; 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 &lt; 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#1734811 2 Answer by Ryan McGeary for Can this relationship be described in Ruby on Rails? Ryan McGeary 2009-11-14T16:55:13Z 2009-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 &lt; ActiveRecord::Base belongs_to :shipping_address, :class_name =&gt; "Address" belongs_to :billing_address, :class_name =&gt; "Address" end </code></pre> http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 1 Answer by Ryan McGeary for Using Git in a TFS shop Ryan McGeary 2009-11-14T14:20:31Z 2009-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#1942126 Comment by Ryan McGeary on Is it OK to save Twitter passwords for easy loggin via the Twitter API? Ryan McGeary 2009-12-21T21:03:03Z 2009-12-21T21:03:03Z Your 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-page Comment by Ryan McGeary on Fan count for a Facebook Fan Page Ryan McGeary 2009-12-18T22:29:00Z 2009-12-18T22:29:00Z Sweet, my first Tumbleweed badge. http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user Comment by Ryan McGeary on Twitter List Membership Count Per User Ryan McGeary 2009-12-18T02:51:52Z 2009-12-18T02:51:52Z Sneakyness, Agreed, that is worth mentioning, but &quot;close-enough&quot; values are okay for this particular task. http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user/1908307#1908307 Comment by Ryan McGeary on Twitter List Membership Count Per User Ryan McGeary 2009-12-17T04:50:17Z 2009-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#1908307 Comment by Ryan McGeary on Twitter List Membership Count Per User Ryan McGeary 2009-12-17T03:23:22Z 2009-12-17T03:23:22Z Brittle. 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>&#47;&#47;&#42;[@id=&quot;lists&#95;count&quot;]</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#1893644 Comment by Ryan McGeary on what does CSS3 and HTML5 have in common? Ryan McGeary 2009-12-12T17:35:06Z 2009-12-12T17:35:06Z BalusC, 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#1888741 Comment by Ryan McGeary on Capistrano: deploy.rb file refactoring Ryan McGeary 2009-12-11T16:12:37Z 2009-12-11T16:12:37Z Roger, more details added about capistrano's specifics. http://stackoverflow.com/questions/1810943/jquery-queue-messages/1810989#1810989 Comment by Ryan McGeary on jQuery queue messages Ryan McGeary 2009-11-28T15:31:10Z 2009-11-28T15:31:10Z dominik, 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-405 Comment by Ryan McGeary on JQuery on Google JSON fails with Error 405? Ryan McGeary 2009-11-23T14:08:14Z 2009-11-23T14:08:14Z What 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#1743078 Comment by Ryan McGeary on Most compact way to compare three objects for equality using Java? Ryan McGeary 2009-11-17T18:28:52Z 2009-11-17T18:28:52Z Don, I agree with that. http://stackoverflow.com/questions/1743163/css-columns-shrinking-100-pixel-value/1743186#1743186 Comment by Ryan McGeary on css columns shrinking 100% pixel value Ryan McGeary 2009-11-17T14:48:25Z 2009-11-17T14:48:25Z Put the background on the <code>&lt;body&gt;</code> tag or some other outer div. http://stackoverflow.com/questions/1687883/using-git-in-a-tfs-shop/1734352#1734352 Comment by Ryan McGeary on Using Git in a TFS shop Ryan McGeary 2009-11-17T14:46:08Z 2009-11-17T14:46:08Z git-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#1743257 Comment by Ryan McGeary on Ruby: Problem using passenger Ryan McGeary 2009-11-16T17:50:32Z 2009-11-16T17:50:32Z What version of rails? http://stackoverflow.com/questions/1743073/ruby-problem-using-passenger/1743120#1743120 Comment by Ryan McGeary on Ruby: Problem using passenger Ryan McGeary 2009-11-16T16:29:27Z 2009-11-16T16:29:27Z Understood, see my other answer attempt. http://stackoverflow.com/questions/1743073/ruby-problem-using-passenger Comment by Ryan McGeary on Ruby: Problem using passenger Ryan McGeary 2009-11-16T16:02:02Z 2009-11-16T16:02:02Z <i>&quot;...even though I configured everything correctly.&quot;</i> <b>Not quite.</b>