User Thanatos - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T04:09:00Zhttp://stackoverflow.com/feeds/user/6492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1534858/where-to-put-toxls-and-fromxls-in-a-rails-app/1535389#15353890Answer by Thanatos for Where to put to_xls and from_xls in a rails appThanatos2009-10-08T03:00:25Z2009-10-08T03:00:25Z<p>to/from_xls are not supported by Rails. There is a plugin, but I haven't used it <a href="http://arydjmal.com/2009/1/11/to%5Fxls-plugin-export-to-excel-in-rails-the-easy-way" rel="nofollow">to_xls plugin for Rails</a>. A better way might be for you to go to and from a CSV using <a href="http://fastercsv.rubyforge.org/" rel="nofollow">FasterCSV</a> and get something that is usable. Here is one example: <a href="http://www.brynary.com/2007/4/28/export-activerecords-to-csv" rel="nofollow">Export to_csv from ActiveRecord</a></p>
http://stackoverflow.com/questions/1534962/rails-fixtures-seem-to-be-adding-extra-unexpected-data/1535367#15353670Answer by Thanatos for Rails fixtures seem to be adding extra unexpected dataThanatos2009-10-08T02:52:27Z2009-10-08T02:52:27Z<p>You could turn on ActiveRecord logging (put <code>ActiveRecord::Base.logger = Logger.new(STDOUT)</code> in your test/test_helper.rb file).</p>
<p>Or, instead of using fixtures (which have gone the way of the dodo for most Rails developers) you could use something more reliable like Factories (<a href="http://github.com/thoughtbot/factory%5Fgirl" rel="nofollow">thoughtbot's factory_girl</a>) or seed_fu (if you have specific data that must be loaded).</p>
http://stackoverflow.com/questions/1522201/rails-assethost-prefixes-are-showing-up-in-every-url0Rails asset_host prefixes are showing up in every URLThanatos2009-10-05T20:27:52Z2009-10-05T20:27:52Z
<p>I've got Rails configured to use assets0-3 as described here: <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html" rel="nofollow">AssetTagHelper</a></p>
<p>So, in the production environment we have this bit of code:
<code>config.action_controller.asset_host = "http://assets%d.example.com"</code></p>
<p>Now, assets0-3 is showing up at random in all sorts of URLs created using only the <code>link_to</code> helpers.</p>
http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/1522137#1522137-1Answer by Thanatos for Who are good web hosts for Ruby on Rails projects?Thanatos2009-10-05T20:13:09Z2009-10-05T20:13:09Z<p>Rackspace has started offering a "cloud" service (at rackspacecloud.com). Despite the confusing pricing (by the hour?) the service is essentially what slicehost offers at about half the cost for an equivalent level of resources (memory, specifically). Overall the service feels faster than slicehost, probably because of better hardware. I have no conclusive evidence of this, but the price has been good.</p>
http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts11What are some useful TextMate shortcuts?Thanatos2008-09-19T05:10:00Z2009-08-25T11:08:48Z
<p>Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in <a href="http://macromates.com/" rel="nofollow">TextMate</a> and its bundles.</p>
<p>What are some useful keyboard shortcuts you use?</p>
http://stackoverflow.com/questions/530119/using-msql-views-in-a-ruby-on-rails-app-to-improve-performances/531060#5310600Answer by Thanatos for Using Msql views in a Ruby on Rails app to improve performancesThanatos2009-02-10T04:29:36Z2009-02-10T04:29:36Z<p><a href="http://github.com/aeden/rails_sql_views/tree/master" rel="nofollow">http://github.com/aeden/rails_sql_views/tree/master</a></p>
<p>↑ To create the view in a migration. I would also only use them in extreme cases as they hide logic away from your application and that is generally not good.</p>
<p>If you have that much associated data you could look at using something like DataMapper instead of ActiveRecord with Rails as it supports lazy-loading data as required.</p>
http://stackoverflow.com/questions/83674/mixing-activerecord-find-conditions3Mixing ActiveRecord find ConditionsThanatos2008-09-17T14:14:12Z2008-09-24T14:57:07Z
<p>I want to find records on a combination of created_on >= some date AND name IN some list of names.</p>
<p>For ">=" I'd have to use sql condition. For "IN" I'd have to use a hash of conditions where the key is :name and the value is the array of names.</p>
<p>Is there a way to combine the two?</p>
http://stackoverflow.com/questions/92809/effective-methods-to-manage-digital-distraction3Effective Methods to Manage Digital DistractionThanatos2008-09-18T14:03:19Z2008-09-23T16:50:01Z
<p>With the plethora of communication methods available to co-workers, how do you manage to keep distractions at bay for a large enough block of time to accomplish some focused programming?</p>
<p>Do you quit or close all communications, have you informed people that an away message really means you are a way, or something else?</p>
http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading1Why Does Ruby Only Permit Certain Operator OverloadingThanatos2008-09-18T14:10:09Z2008-09-20T20:53:26Z
<p>In Ruby, like in many other OO programming languages, operators are overloadable. However, only certain character operators can be overloaded.</p>
<p>This list may be incomplete but, here are some of the operators that cannot be overloaded: </p>
<pre><code>!, not, &&, and, ||, or
</code></pre>
http://stackoverflow.com/questions/1970/what-language-do-you-use-for-postgresql-triggers-and-stored-procedures/93293#932931Answer by Thanatos for What language do you use for Postgresql triggers and stored procedures?Thanatos2008-09-18T14:54:22Z2008-09-18T14:54:22Z<p>PL/Ruby because I use Ruby every day anyway.</p>
http://stackoverflow.com/questions/39517/languages-other-than-sql-in-postgres/93271#932710Answer by Thanatos for Languages other than SQL in postgresThanatos2008-09-18T14:51:53Z2008-09-18T14:51:53Z<p>I think most additional languages are offered so that if you develop in that language on a regular basis, you can feel comfortable writing db functions, triggers, etc. The usefulness of these features is to provide a control over data as close to the data as possible.</p>
http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/93066#930660Answer by Thanatos for Rails or Django? (or something else?)Thanatos2008-09-18T14:32:19Z2008-09-18T14:32:19Z<p>An alternative to Rails that is less restrictive of your design decisions is Ruby framework called <a href="http://merbivore.com/" rel="nofollow">Merb</a>.</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92977#929770Answer by Thanatos for How do you vent stress as a programmer?Thanatos2008-09-18T14:21:44Z2008-09-18T14:21:44Z<p>I find it is important to try and manage the stress before it reaches such a critical mass. Routines usually help this. Getting a good night's sleep, eating well (something I find particularly difficult), and generally living healthy when you aren't at a computer.</p>
<p>I thoroughly enjoy listening to music while working. If I do get to that critical point I will generally walk away or turn around and start an esoteric conversation with the nearest person.</p>
<p>After some time away, I generally seek help upon returning to the problem from a co-worker or google (assuming I haven't tried that already).</p>
http://stackoverflow.com/questions/92809/effective-methods-to-manage-digital-distraction/92899#928991Answer by Thanatos for Effective Methods to Manage Digital DistractionThanatos2008-09-18T14:13:29Z2008-09-18T14:13:29Z<p>I like the idea of quitting stuff. I don't need to check every 15 minutes, like I do. The problem is then, with twitter, email, aim, irc, et al., there is a lot of stuff to open.</p>
<p>My solution is just a little bash command using the handy-dandy <code>open</code> command with a bunch of application names. It opens everything at once, I check it all, and quit as I go.</p>
http://stackoverflow.com/questions/83789/what-is-the-best-git-gui-on-osx/86034#860345Answer by Thanatos for What is the best Git GUI on OSX?Thanatos2008-09-17T18:13:53Z2008-09-18T13:51:44Z<p>You could try <a href="http://github.com/Caged/gitnub/wikis" rel="nofollow">gitnub</a>. It's great for viewing git logs and looks very pretty.</p>
http://stackoverflow.com/questions/89543/how-to-implement-a-redirect-on-all-requests-on-certain-conditions/90149#901493Answer by Thanatos for How to Implement a Redirect on All Requests (on certain conditions)?Thanatos2008-09-18T04:56:33Z2008-09-18T04:56:33Z<p>You could also use a <code>skip_before_filter</code> for the one controller/method you don't want to have the filter apply to.</p>
http://stackoverflow.com/questions/89908/how-does-hasone-through-work/90144#901441Answer by Thanatos for How does has_one :through work?Thanatos2008-09-18T04:53:59Z2008-09-18T04:53:59Z<p>You want to save or create (instead of new) the item and pack. Otherwise, the database has not assigned id's for the association.</p>
http://stackoverflow.com/questions/30526/does-anyone-use-mindmapping-tools/90065#900651Answer by Thanatos for Does anyone use mindmapping tools? Thanatos2008-09-18T04:38:49Z2008-09-18T04:38:49Z<p>If you're using a Mac OS X try <a href="http://www.mindnode.com/" rel="nofollow">Mindnode</a> (free, not pro). It's about as simple as can be but has been astoundingly useful to me.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90048#900481Answer by Thanatos for What is a reasonable code coverage % for unit tests (and why)?Thanatos2008-09-18T04:35:32Z2008-09-18T04:35:32Z<p>If you've been doing unit testing for a decent amount of time, I see no reason for it not to be approaching 95%+. However, at a minimum, I've always worked with 80%, even when new to testing.</p>
<p>This number should only include code written in the project (excludes frameworks, plugins, etc.) and maybe even exclude certain classes composed entirely of code written of calls to outside code. This sort of call should be mocked/stubbed.</p>
http://stackoverflow.com/questions/83674/mixing-activerecord-find-conditions/89935#899350Answer by Thanatos for Mixing ActiveRecord find ConditionsThanatos2008-09-18T04:11:45Z2008-09-18T04:11:45Z<p>I think I'm either going to use simple AR finders or <a href="http://www.binarylogic.com/2008/9/1/searchgasm-released" rel="nofollow">Searchgasm</a>.</p>
http://stackoverflow.com/questions/87561/what-is-your-preferred-way-to-produce-charts-in-a-ruby-on-rails-web-application/89862#898620Answer by Thanatos for What is your preferred way to produce charts in a Ruby on Rails web application?Thanatos2008-09-18T03:56:12Z2008-09-18T03:56:12Z<p>This isn't specifically RoR however, it is pretty slick port of Gruff to javascript: <a href="http://bluff.jcoglan.com/" rel="nofollow">http://bluff.jcoglan.com/</a></p>
http://stackoverflow.com/questions/83789/what-is-the-best-git-gui-on-osx/83841#838410Answer by Thanatos for What is the best Git GUI on OSX?Thanatos2008-09-17T14:30:39Z2008-09-17T14:30:39Z<p>@warren_s is right, in a sense. There doesn't really exist a nice, standalone application (like Versions for svn). Your best bet at this point is to get comfy in terminal.</p>
<p>Alternatively: use github.com (at least for viewing).</p>
http://stackoverflow.com/questions/67207/apple-cover-flow-effect-using-jquery-or-other-library/83735#837350Answer by Thanatos for Apple Cover-flow effect using jQuery or other library?Thanatos2008-09-17T14:20:18Z2008-09-17T14:20:18Z<p>What he's talking about is quicklook, so +1 @<a href="#67742" rel="nofollow">Gilean</a></p>
http://stackoverflow.com/questions/83402/interacting-with-outlook-appointments-using-rails/83626#836261Answer by Thanatos for Interacting with Outlook appointments using railsThanatos2008-09-17T14:07:45Z2008-09-17T14:07:45Z<p>Take a look at the project <a href="http://github.com/intabulas/rexchange/tree/master" rel="nofollow" title="RExchange">RExchange</a> on github.</p>
http://stackoverflow.com/questions/82933/managing-feature-creep/83572#835720Answer by Thanatos for Managing Feature creepThanatos2008-09-17T14:02:35Z2008-09-17T14:02:35Z<p>Communication is key. In a relationship with a client, it must be clear to them that when a plan is created with a set of features, that is the set of features. It is only the fault of those interacting with the client who are either misleading the client or are somehow intimidated by the client.</p>
<p>As for developers contributing to feature creep, the key is to find a balance between making decisions on implementation and outright adding new features. Again, communicating with the developer on a regular basis will likely curb an issue here.</p>
http://stackoverflow.com/questions/62153/reasons-not-to-build-your-own-bug-tracking-system/62183#621832Answer by Thanatos for Reasons not to build your own bug tracking systemThanatos2008-09-15T11:14:24Z2008-09-15T11:14:24Z<p>At this point, without a large new direction in bug tracking/ticketing, it would simply be re-inventing the wheel. Which seems to be what everyone else thinks, generally.</p>
http://stackoverflow.com/questions/1520350/incompatibily-between-ruby-and-mysql-gemComment by Thanatos on Incompatibily between ruby and mysql gemThanatos2009-10-08T03:17:59Z2009-10-08T03:17:59ZWhat hosting service is this. That's ridiculous that they can't support the proper combinations. Also, they might be right that you should be on a VPS (but I understand that isn't helpful right now). I just wouldn't use their VPS service.http://stackoverflow.com/questions/1534240/ruby-on-rails-user-setup/1534501#1534501Comment by Thanatos on Ruby on Rails User SetupThanatos2009-10-08T03:03:24Z2009-10-08T03:03:24ZI agree, that's a whole lot of coupling. You have no idea which of the many layers is breaking.
It may also help to turn on ActiveRecord logging to see which queries are being generated.http://stackoverflow.com/questions/1522201/rails-assethost-prefixes-are-showing-up-in-every-urlComment by Thanatos on Rails asset_host prefixes are showing up in every URLThanatos2009-10-08T02:47:36Z2009-10-08T02:47:36ZIt shouldn't be coming up in a link_to of any kind. That setting is meant to affect the css/javascript/image asset helpers. Either way, here's an example: <code>link_to 'Your Url', user_url</code>.http://stackoverflow.com/questions/1521942/changing-a-rails-route-based-on-deployment-type/1522197#1522197Comment by Thanatos on Changing a Rails route based on deployment typeThanatos2009-10-05T20:33:42Z2009-10-05T20:33:42ZIn general, using Rails.env.production? is the way to go. It could also be used in a before_filter that redirects to https, but this works just as well.http://stackoverflow.com/questions/1521953/rails-numbertocurrency-bugComment by Thanatos on rails number_to_currency bug?Thanatos2009-10-05T20:31:57Z2009-10-05T20:31:57ZUsing ruby-debug might be useful in this case to step through the code.http://stackoverflow.com/questions/1518889/what-does-in-ruby-means/1518906#1518906Comment by Thanatos on what does "?" in ruby means ?Thanatos2009-10-05T20:17:09Z2009-10-05T20:17:09ZThe comments are more accurate than the original response.http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/251525#251525Comment by Thanatos on Who are good web hosts for Ruby on Rails projects?Thanatos2009-10-05T20:14:42Z2009-10-05T20:14:42ZI've not had great luck with dreamhost, maybe because they aren't very flexible in their service. Everything I've ever built with rails has been better-off on a VPS.http://stackoverflow.com/questions/530608/forking-a-foss-projects-git-repository/530624#530624Comment by Thanatos on Forking a FOSS-project's Git repositoryThanatos2009-02-10T04:34:06Z2009-02-10T04:34:06ZOptionally, send a pull request. It is then in the original author's hands to merge what they like or not.http://stackoverflow.com/questions/530641/whats-the-correct-way-to-complete-a-rails-create-action/530647#530647Comment by Thanatos on What's the correct way to complete a Rails create action?Thanatos2009-02-10T04:24:27Z2009-02-10T04:24:27ZGoing to show is the RESTful practice. After posting to create the new resource should be returned.http://stackoverflow.com/questions/530963/easiest-way-to-print-non-strings-in-ruby/530986#530986Comment by Thanatos on Easiest Way to Print Non-Strings in RubyThanatos2009-02-10T04:22:14Z2009-02-10T04:22:14ZIt appears you got it backwards. Interpolation is the first example. Concatenation is the second example you gave.http://stackoverflow.com/questions/91846/rails-or-django-or-something-elseComment by Thanatos on Rails or Django? (or something else?)Thanatos2008-09-18T14:34:38Z2008-09-18T14:34:38ZWhat part, that the question is subjective?http://stackoverflow.com/questions/92809/effective-methods-to-manage-digital-distractionComment by Thanatos on Effective Methods to Manage Digital DistractionThanatos2008-09-18T14:14:11Z2008-09-18T14:14:11ZIndeed, I'm starting to agree.