User dasil003 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T14:29:36Zhttp://stackoverflow.com/feeds/user/8376http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848532/how-can-you-use-rails-authenticitytoken-infrastructure-to-explicitly-protect-a-ge0How can you use Rails AuthenticityToken infrastructure to explicitly protect a GET actiondasil0032009-12-04T17:41:21Z2009-12-05T02:52:33Z
<p>Rails AuthenticityToken automatically protects POST/PUT/DELETE requests from CSRF attacks. But I have another use case in mind.</p>
<p>I am showing a video on my site that I don't want to be embeddable on other sites. How this works is that my flash player sends a request for a signed URL from my CDN that expires in a few seconds. Up until now a user had to be logged in to watch videos, so that was the authentication. However now I want any visitor to the site to be able to watch the video without allowing the signed URL to be requested from another site (such as if they embedded our player on their site).</p>
<p>My first thought went to AuthenticityToken since it seems to have these exact semantics... all I need to do is plug it into a GET request. Any ideas?</p>
http://stackoverflow.com/questions/243701/how-can-i-see-the-sql-activerecord-generates/1634280#16342800Answer by dasil003 for How can I see the SQL ActiveRecord generates?dasil0032009-10-27T23:24:48Z2009-10-27T23:24:48Z<p>Jamis' article is outdated, or at least doesn't work my Rails app (possibly due to some other reason with a 3 year old 30,000 line app). However this works in a console any time:</p>
<pre><code>ActiveRecord::Base.connection.instance_variable_set :@logger, Logger.new(STDOUT)
</code></pre>
http://stackoverflow.com/questions/1622821/thinking-sphinx-delta-indexing-fails-in-production/1622926#16229260Answer by dasil003 for Thinking Sphinx delta indexing fails in productiondasil0032009-10-26T03:14:13Z2009-10-26T03:14:13Z<p>Here's the next troubleshooting step I would take. Open up the file for the delta indexing strategy you are using (presumably <code>lib/thinking_sphinx/deltas/default_delta.rb</code>). Find the line where it actually generates the indexing command. In mine (v1.1.6) it's line 20:</p>
<pre><code>output = `#{config.bin_path}indexer --config #{config.config_file} #{rotate} #{delta_index_name model}`
</code></pre>
<p>Change that so you can log the command itself, and maybe log the output as well:</p>
<pre><code>command = `#{config.bin_path}indexer --config #{config.config_file} #{rotate} #{delta_index_name model}`
RAILS_DEFAULT_LOGGER.info(command)
output = `#{command}`
RAILS_DEFAULT_LOGGER.info(output)
</code></pre>
<p>Deploy that to production and tail the log while modifying a delta-indexed model. Hopefully that will actually show you the problem. Of course maybe the problem is elsewhere in the code and you won't even get to this point, but this is where I would start.</p>
http://stackoverflow.com/questions/1621405/how-to-tell-which-version-of-a-gem-a-rails-app-is-using/1621517#16215170Answer by dasil003 for How to tell which version of a gem a rails app is usingdasil0032009-10-25T17:42:18Z2009-10-25T17:42:18Z<p>There probably is a more direct way to find this out, but if you load up a console and require a specific version like so:</p>
<pre><code>gem 'RedCloth', '3.0.4'
</code></pre>
<p>It will tell you what version is already activated:</p>
<pre><code>=> Gem::LoadError: can't activate RedCloth (= 3.0.4, runtime) for [], already activated RedCloth-4.2.2
</code></pre>
http://stackoverflow.com/questions/1615969/what-are-the-semantics-of-javascripts-if-statement4What Are the Semantics of Javascripts If Statementdasil0032009-10-23T21:23:46Z2009-10-23T21:56:11Z
<p>I always thought that an if statement essentially compared it's argument similar to <code>== true</code>. However the following experiment in Firebug confirmed my worst fears—after writing Javascript for 15 years I still have no clue WTF is going on:</p>
<pre><code>>>> " " == true
false
>>> if(" ") console.log("wtf")
wtf
</code></pre>
<p>My worldview is in shambles here. I could run some experiments to learn more, but even then I would be losing sleep for fear of browser quirks. Is this in a spec somewhere? Is it consistent cross-browser? Will I ever master javascript?</p>
http://stackoverflow.com/questions/1609586/rails-delayedjob-want-to-load-newest-version-of-job-class/1609789#16097891Answer by dasil003 for Rails / delayed_job - want to load newest version of job classdasil0032009-10-22T20:34:49Z2009-10-22T20:34:49Z<p>There is nothing builtin to do this. Generally you are responsible for managing and reloading your workers. This is probably just as well since Rails development reloading is good but not perfect, and attempting to auto-reload a delayed job would potentially run into all sort subtle issues that would be pretty opaque to debug inside a worker process. Also, if it automatically reloaded the environment for every job a lot of use cases would get tremendously slow in dev mode.</p>
<p>My suggestion is just to get use to doing <code>rake jobs:work</code> and then <code>Ctrl-C</code> when you make changes. Alternatively you can create a script that just manually runs the jobs on an ad-hoc basis (taken from <a href="http://github.com/tobi/delayed%5Fjob" rel="nofollow">delayed_job docs</a>):</p>
<pre><code>#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../config/environment'
Delayed::Worker.new.start
</code></pre>
http://stackoverflow.com/questions/1609267/how-to-find-if-range-is-contained-in-an-array-of-ranges/1609595#16095951Answer by dasil003 for How to find if range is contained in an array of ranges? dasil0032009-10-22T19:57:34Z2009-10-22T19:57:34Z<p>Okay, I don't have time to write up a full solution, but the problem does not seem too difficult to me. I hacked together the following primitive methods you can use to help in constructing your solution (You may want to subclass Range rather than monkey patching, but this will give you the idea):</p>
<pre><code>class Range
def contains(range)
first <= range.first || last >= range.last
end
def -(range)
out = []
unless range.first <= first && range.last >= last
out << Range.new(first, range.first) if range.first > first
out << Range.new(range.last, last) if range.last < last
end
out
end
end
</code></pre>
<p>You can iterate over business hours and find the one that contains the event like so:</p>
<pre><code>event_range = event.start_time..event.end_time
matching_range = business_hours.find{|r| r.contains(event_range)}
</code></pre>
<p>You can construct the new array like this (pseudocode, not tested):</p>
<pre><code>available_hours = business_hours.dup
available_hours.delete(matching_range)
available_hours += matching_range - event_range
</code></pre>
<p>That should be a pretty reusable approach. Of course you'll need something totally different for the next part of your question, but this is all I have time for :)</p>
http://stackoverflow.com/questions/1605218/is-there-a-0-width-way-to-prevent-floated-divs-from-collapsing0Is there a 0-width way to prevent floated divs from collapsingdasil0032009-10-22T05:42:19Z2009-10-22T05:56:13Z
<p>First, this issue is not about block elements collapsing when their children are floated. In fact the issue has nothing to do with clearing at all.</p>
<p>The issue is this. Suppose I have a series of floated divs like:</p>
<pre><code><div class="column">Column 1</div>
<div class="column"></div>
<div class="column">Column 3</div>
</code></pre>
<p>With css:</p>
<pre><code>div.column { float: left; width: 200px; }
</code></pre>
<p>The middle column will collapse in recent versions of Firefox and Safari, although apparently not IE7. <em>What I want is the IE7 behavior.</em></p>
<p>I realize I can add an <code>&nbsp;</code> and it will hold the div open, but that doesn't work for me in this case because I also have have a declaration like this:</p>
<pre><code>div.column input { width: 100% }
</code></pre>
<p>I have a series of columns layed in a table-like format, with certain conditions causing the input fields to disappear. The problem is when the input disappears the field collapses. If I add an <code>&nbsp;</code> it causes the div to wrap. Just to head off the initial questions:</p>
<ul>
<li><strong>Why don't I use a table instead?</strong> Because I'm using Scriptaculous Sortable to drag and drop rows, which doesn't work with tables</li>
<li><strong>Why don't I use a shorter pixel width to leave room for an <code>&nbsp;</code>?</strong> Because <code>width: 100%</code> is more accurate across browsers.</li>
<li><strong>Why don't I add a <code>&nbsp;</code> when I hide the input</strong> I may end up resorting to this, but it would be kind of ugly in the JS, so I'm hoping for a better way.</li>
</ul>
<p>Does anyone have any clever hacks here? Since both Safari and Firefox behave this way I assume this is officially sanctioned behavior. Where is this discussed in the W3C specs?</p>
http://stackoverflow.com/questions/1586928/how-different-is-scrum-practice-from-agile-practice/1586965#15869650Answer by dasil003 for How different is Scrum practice from Agile Practice ?dasil0032009-10-19T04:32:03Z2009-10-19T04:32:03Z<p>Scrum is a very specific set of practices. Agile describes a family of practices, everything from Extreme Programming to Scrum and almost anything else that uses short iterations can claim Agile. That may not have originally been the case when the term was coined, but it certainly is by now.</p>
http://stackoverflow.com/questions/1582916/how-to-use-rewriterule-in-apache-to-redirect-from-abc-to-abc/1582949#15829490Answer by dasil003 for How to use RewriteRule in Apache to redirect from /abc/ to /abc?dasil0032009-10-17T19:01:20Z2009-10-17T19:01:20Z<p>It looks like the URL is already being rewritten to a filename and then you are rewriting the filename. This usually happens when the rewrite rule is being specified in an .htaccess file. The problem is due to the fact that by the time Apache reads the .htaccess file, it has already resolved all URLs to filenames. The standard solution to this is to supply a RewriteBase rule in your .htaccess. Try:</p>
<p>RewriteBase /</p>
<p>Above your RewriteRule for starters.</p>
<p>More documentation is <a href="http://httpd.apache.org/docs/1.3/mod/mod%5Frewrite.html#InternalAPI" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1576711/mixing-php-and-html/1579723#15797231Answer by dasil003 for Mixing php and htmldasil0032009-10-16T18:45:37Z2009-10-16T18:45:37Z<p>I think you should re-evaluate your aversion to the last snippet. PHP is at its best as a templating language. When you use it that way, you can easily take a design mockup and convert into a dynamic page. You can also use standard HTML tools with it, take a look at <a href="http://code.google.com/p/zen-coding/" rel="nofollow">ZenCoding</a> for an example of what I'm talking about. You can have proper syntax highlighting and all the rest of the goodies. You also can trivially maintain some semblance of indentation and consistency without any extra effort at all.</p>
<p>Now I understand the tension you're feeling due to things getting messy and ugly. The key is to move complex logic out of the template into separate pure PHP files so that the template file feels more like HTML than PHP. iddqd suggests using Smarty as a templating language, but I have never liked Smarty. I believe it ends up being just a pointless redirection rather than a useful abstraction.</p>
<p>Of all the programming languages out there, PHP is one of the best as a templating language. There's no need to subvert it to be like any other programming language.</p>
http://stackoverflow.com/questions/1532218/life-without-joins-understanding-and-common-practices/1576766#15767664Answer by dasil003 for Life without JOINs... understanding, and common practicesdasil0032009-10-16T08:18:39Z2009-10-16T08:18:39Z<p>The way I look at it, a relational database is a general purpose tool to hedge your bets. Modern computers are fast enough, and RDBMS' are well-optimized enough that you can grow to quite a respectable size on a single box. By choosing an RDBMS you are giving yourself very flexible access to your data, and the ability to have powerful correctness constraints that make it much easier to code against the data. However the RDBMS is not going to represent a good optimization for any particular problem, it just gives you the flexibility to change problems easily.</p>
<p>If you start growing rapidly and realize you are going to have to scale beyond the size of a single DB server, you suddenly have much harder choices to make. You will need to start identifying bottlenecks and removing them. The RDBMS is going to be one nasty snarled knot of codependency that you'll have to tease apart. The more interconnected your data the more work you'll have to do, but maybe you won't have to completely disentangle the whole thing.
If you're read-heavy maybe you can get by with simple replication. If you're saturating your market and growth is leveling off maybe you can partially denormalize and shard to fixed number of DB servers. Maybe you just have a handful of problem tables that can be moved to a more scalable data store. Maybe your usage profile is very cache friendly and you can just migrate the load to a giant memcached cluster.</p>
<p>Where scalable key-value stores like BigTable come in is when none of the above can work, and you have so much data of a single type that even when it's denormalized a single table is too much for one server. At this point you need to be able to partition it arbitrarily and still have a clean API to access it. Naturally when the data is spread out across so many machines you can't have algorithms that require these machines to talk to each other much, which many of the standard relational algorithms would require. As you suggest, these distributed querying algorithms have the potential to require more total processing power than the equivalent JOIN in a properly indexed relational database, but because they are parallelized the real time performance is orders of magnitude better than any single machine could do (assuming a machine that could hold the entire index even exists).</p>
<p>Now once you can scale your massive data set horizontally (by just plugging in more servers), the hard part of scalability is done. Well I shouldn't say <em>done</em>, because ongoing operations and development at this scale are a lot harder than the single-server app, but the point is application servers are typically trivial to scale via a share-nothing architecture as long as they can get the data they need in a timely fashion.</p>
<p>To answer your question about how commonly used ORMs handle the inability to use JOINs, the short answer is <strong>they don't</strong>. ORM stands for Object Relational Mapping, and most of the job of an ORM is just translating the powerful relational paradigm of predicate logic simple object-oriented data structures. Most of the value of what they give you is simply not going to be possible from a key-value store. In practice you will probably need to build up and maintain your own data-access layer that's suited to your particular needs, because data profiles at these scales are going to vary dramatically and I believe there are too many tradeoffs for a general purpose tool to emerge and become dominant the way RDBMSs have. In short, you'll always have to do more legwork at this scale.</p>
<p>That said, it will definitely be interesting to see what kind of relational or other aggregate functionality can be built on top of the key-value store primitives. I don't really have enough experience here to comment specifically, but there is a lot of knowledge in enterprise computing about this going back many years (eg. Oracle), a lot of untapped theoretical knowledge in academia, a lot of practical knowledge at Google, Amazon, Facebook, et al, but the knowledge that has filtered out into the wider development community is still fairly limited.</p>
<p>However now that a lot of applications are moving to the web, and more and more of the world's population is online, inevitably more and more applications will have to scale, and best practices will begin to crystallize. The knowledge gap will be whittled down from both sides by cloud services like AppEngine and EC2, as well as open source databases like Cassandra. In some sense this goes hand in hand with parallel and asynchronous computation which is also in its infancy. Definitely a fascinating time to be a programmer.</p>
http://stackoverflow.com/questions/1344232/how-can-i-see-the-sql-that-will-be-generated-by-a-given-activerecord-query-in-rub/1576221#15762212Answer by dasil003 for How can I see the SQL that will be generated by a given ActiveRecord query in Ruby on Railsdasil0032009-10-16T05:24:39Z2009-10-16T05:24:39Z<p>Similar to penger's, but works anytime in the console even after classes have been loaded and the logger has been cached:</p>
<pre><code>ActiveRecord::Base.connection.instance_variable_set :@logger, Logger.new(STDOUT)
</code></pre>
http://stackoverflow.com/questions/1576027/how-to-use-datetime-in-the-condtions-of-a-find-count-in-ruby-on-rails/1576186#15761864Answer by dasil003 for How to use datetime in the condtions of a find/count in Ruby on Railsdasil0032009-10-16T05:10:00Z2009-10-16T05:10:00Z<p>The more efficient way is like this:</p>
<pre><code>range = Date.today.beginning_of_month..Date.today.end_of_month
Model.count(:conditions => {:date_field => range})
</code></pre>
<p>This will generate a range condition, which, if you have an index on the date_field will be very fast even for millions of rows.</p>
http://stackoverflow.com/questions/1576052/ruby-on-rails-layouts-except-and-only-bug/1576165#15761653Answer by dasil003 for Ruby on Rails layouts...except and only bugdasil0032009-10-16T05:02:25Z2009-10-16T05:02:25Z<p>The reason this doesn't work is because you can only have global one layout declaration per controller. The <code>:only</code> and <code>:except</code> conditions just differentiate between actions that should get the specified layout and the ones that are excluded get rendered without a layout. In other words, a layout declaration always affects all actions that use default rendering.</p>
<p>To override you simply specify a layout when you render like one of the following examples inside an action:</p>
<pre><code>render :layout => 'static'
render :action => 'privacy', :layout => 'static'
render :layout => false # Don't render a layout
</code></pre>
http://stackoverflow.com/questions/1574588/book-about-rails-recommendation/1574712#15747122Answer by dasil003 for book about Rails recommendationdasil0032009-10-15T20:03:52Z2009-10-15T20:03:52Z<p>Okay this is probably too easy, but I'm a big fan of <a href="http://obiefernandez.com/" rel="nofollow">Obie Fernandez</a>'s <em>The Rails Way</em>.</p>
<p>I've been a core contributor to Rails for a couple years now and I tend to stay pretty up to date with what's going on, so I haven't really followed recent developments in books. Even though there have been massive changes since Rails 2.0, I would expect that <em>The Rails Way</em> is probably still the most complete Rails reference out there. I'd say you're better off with that book and then catching up via <a href="http://ryandaigle.com/" rel="nofollow">Ryan's Scraps</a> or the <a href="http://weblog.rubyonrails.org/" rel="nofollow">Official Blog</a></p>
http://stackoverflow.com/questions/1568218/access-to-currentuser-from-within-a-model-in-ruby-on-rails/1574569#15745692Answer by dasil003 for Access to current_user from within a model in Ruby on Railsdasil0032009-10-15T19:35:54Z2009-10-15T19:35:54Z<p>I'd say your instincts to keep current_user out of the model are correct.</p>
<p>Like Daniel I'm all for skinny controllers and fat models, but there is also a clear division of responsibilities. The purpose of the controller is to manage the incoming request and session. The model should be able to answer the question "Can user x do y to this object?", but it's nonsensical for it to reference the current_user. What if you are in the console? What if it's a cron job running?</p>
<p>In many cases with the right permissions API in the model, this can be handled with one-line before_filters that apply to several actions. However if things are getting more complex you may want to implement a separate layer (possibly in lib/) that encapsulates the more complex authorization logic to prevent your controller from becoming bloated, and prevent your model from becoming too tightly coupled to the web request/response cycle.</p>
http://stackoverflow.com/questions/1572607/doing-a-rails-restful-implementation-or-not/1574381#15743810Answer by dasil003 for Doing a Rails Restful Implementation or Not?dasil0032009-10-15T19:05:48Z2009-10-15T19:05:48Z<p>The first thing to sort out is what REST really means. Fundamentally it is about utilizing HTTP efficiently and correctly. That is, GET requests don't modify anything, PUT requests are idempotent, etc. The notion of uniquely identified resources just sort of falls out of this optimal usage of HTTP. The beauty of REST is that you gain the maximum programmatic benefit out of HTTP, making things like caching, proxying, and automatic retrying able to work fairly well without any knowledge of the application whatsoever. Dare Obasanjo wrote a nice <a href="http://www.25hoursaday.com/weblog/PermaLink.aspx?guid=7a2f3df2-83f7-471b-bbe6-2d8462060263" rel="nofollow">rant on the topic of REST misunderstanding</a>. This contrasts heavily to something like SOAP where you have an heavyweight envelope format that uses HTTP as nothing more than a glorified transport layer.</p>
<p>Now when it comes to Rails REST there is a whole nother thing going on, and that is Rails' convention over configuration. Rails REST is just a thin baked-in layer of tooling to make it easy to define CRUD operations on resources you define. Note that these resources don't need to correspond to ActiveRecord models, and certainly using Rails resource routing is not a pre-requisite for designing a RESTful application. What Rails gives you is an extremely handy default for dealing with things that fit the model of a CRUDable resource, however you shouldn't hesitate to define additional methods on top of resources, or to forego resources altogether if you have pages that don't really seem like resources (eg. reports).</p>
<p>The bottom line to keep in mind is that it's not one or the other. Rails RESTful helpers are using the same primitives that have always been in Rails. You can use both together and they jive nicely.</p>
http://stackoverflow.com/questions/1573011/how-to-gemify-a-rails-engine-plugin/1574206#15742060Answer by dasil003 for How to gemify a Rails (engine) plugin?dasil0032009-10-15T18:28:34Z2009-10-15T18:28:34Z<p>Offhand I'd say the part about adding those directories to the search path is right on. What you shouldn't need to do is require each file manually (as you allude to in your last sentence). What Rails does when you reference a non-existent constant is to search for a file with the same name (underscored of course) in the load path.</p>
<p>If for some reason you can not abide by the constraint (think about it long and hard) then you are going to need to dig deeper into Rails and see how the reloading mechanism works so you can tie into it properly in development mode.</p>
http://stackoverflow.com/questions/1573547/after-reading-simply-rails-2/1574144#15741441Answer by dasil003 for after reading Simply Rails 2dasil0032009-10-15T18:17:58Z2009-10-15T18:17:58Z<p>What you need to do is start building real applications. I'm not familiar with "Simply Rails 2", but I assume it has some basic tutorial apps in it. That's a good way to get your feet wet, but now you'll need to move into the real world. If you're going to do it on your own you'll need something that intrinsically motivates you, something you're interested in. In my case I rewrote my blog in Rails. Ideally you will test and deploy this application publicly so that you can list it on your resume.</p>
<p>Another angle to pursue is deploying and modifying existing apps. You can find many at <a href="http://www.opensourcerails.com/" rel="nofollow">Open Source Rails</a>.</p>
<p>The key thing here is the you will learn best by doing, and you need to be able to solve problems outside of a tutorial situation.</p>
http://stackoverflow.com/questions/1573779/rails-formremotetag-and-onselect-submit/1573916#15739161Answer by dasil003 for rails form_remote_tag and onselect submit...dasil0032009-10-15T17:33:13Z2009-10-15T17:33:13Z<p>The problem you're having is that Rails implements remote_form_for as an inline Ajax method in the onsubmit attribute of the form. The problem is that the submit event only fires when a user physically submits the form, not by calling $('form').submit(). Actually I believe some browsers may fire the event but others don't. In any case, this won't work in the general case as you discovered.</p>
<p>One possible workaround, and I have only tested this in Firefox 3.5, so your mileage may vary, is to call the attribute as a function directly. So inside your :onchange put:</p>
<pre><code>$('currency').onsubmit()
</code></pre>
<p>If that doesn't work you may need to look at the generated source, and pull the AJAX request out of the onsubmit attribute and into a standalone method that you can call directly.</p>
<p>As far as I know there is no cross-browser way to reliably fire a native event.</p>
http://stackoverflow.com/questions/698700/escaping-html-in-rails/1570781#15707810Answer by dasil003 for Escaping HTML in Railsdasil0032009-10-15T07:24:13Z2009-10-15T07:24:13Z<p>I've just released a plugin called <a href="http://github.com/dasil003/acts%5Fas%5Fsanitiled" rel="nofollow">ActsAsSanitiled</a> using the <a href="http://wonko.com/post/sanitize" rel="nofollow">Sanitize</a> gem which can guarantee well-formedness as well being very configurable to what kind of HTML is allowed, all without munging user input or requiring anything to be remembered at the template level.</p>
http://stackoverflow.com/questions/1266605/ruby-on-rails-and-xss-prevention/1570762#15707620Answer by dasil003 for Ruby on Rails and XSS prevention.dasil0032009-10-15T07:20:39Z2009-10-15T07:20:39Z<p>The Rails sanitize method is pretty good, but it doesn't guarantee well-formedness, and it's quite likely to be attacked due to the install base. Better practice is to use either html5lib (truly the best, if not the fastest or most rubyish) or <a href="http://github.com/rgrove/sanitize" rel="nofollow">Sanitize</a> or <a href="http://github.com/flavorjones/loofah" rel="nofollow">Loofah</a></p>
http://stackoverflow.com/questions/1294360/any-clever-workaround-to-avoid-having-to-type-the-h-method-everywhere/1570713#15707130Answer by dasil003 for Any clever workaround to avoid having to type the h method everywhere?dasil0032009-10-15T07:08:58Z2009-10-15T07:15:11Z<p>The Rails 3 approach is definitely the best on the view side because it explicitly keeps track of the safety of each string, which is ultimately what you need (taint mode) for a robust solution.</p>
<p>However there's another approach which is what ActsAsTextiled does. That is to redefine the attribute accessor to sanitize and cache the result so that you always get sanitized output by default. What I like about this as opposed to the xss_terminate approach is that it doesn't touch the user input at all so you get fewer complaints from users, and data won't be accidentally clobbered, and you can go and change the rules later if you overlooked something. </p>
<p>I liked the approach so much I wrote a plugin using the <a href="http://github.com/rgrove/sanitize" rel="nofollow">Sanitize</a> gem <a href="http://github.com/dasil003/acts%5Fas%5Fsanitiled" rel="nofollow">ActsAsSanitiled</a>. It doesn't give you blanket protection out of the box the way xss_terminate can, but it also avoids unwanted side effects. In my case comparatively few of the text fields are actually edited by users directly, so I prefer to audit them and explicitly declare them.</p>
http://stackoverflow.com/questions/1494648/rails-escaping-html-using-the-h-and-excluding-specific-tags/1502427#15024270Answer by dasil003 for Rails - Escaping HTML using the h() AND excluding specific tags.dasil0032009-10-01T07:36:02Z2009-10-15T07:13:32Z<p>Preventing XSS attacks is serious business, follow hrnt's and consider that there is probably an order of magnitude more exploits than that possible due to obscure browser quirks. Although html_escape will lock things down pretty tightly, I think it's a mistake to use anything homegrown for this type of thing. You simply need more eyeballs and peer review for any kind of robustness guarantee.</p>
<p>I'm the in the process of evaluating <a href="http://github.com/rgrove/sanitize" rel="nofollow">sanitize</a> vs <a href="http://github.com/look/xss%5Fterminate" rel="nofollow">XssTerminate</a> at the moment. I prefer the xss_terminate approach for it's robustness—scrubbing at the model level will be quite reliable in a regular Rails app where all user input goes through ActiveRecord, but <a href="http://nokogiri.rubyforge.org/nokogiri/" rel="nofollow">Nokogiri</a> and specifically <a href="http://loofah.rubyforge.org/loofah/" rel="nofollow">Loofah</a> seem to be a little more peformant, more actively maintained, and definitely more flexible and Ruby-ish.</p>
<p><em>Update</em> I've just implemented a fork of ActsAsTextiled called <a href="http://github.com/dasil003/acts%5Fas%5Fsanitiled" rel="nofollow">ActsAsSanitiled</a> that uses <a href="http://github.com/rgrove/sanitize" rel="nofollow">Santize</a> (which has recently been updated to use nokogiri by the way) to guarantee safety and well-formedness of the RedCloth output, all without needing any helpers in your templates. </p>
http://stackoverflow.com/questions/1384807/sanitize-markdown-in-rails/1570682#15706820Answer by dasil003 for Sanitize Markdown in Rails?dasil0032009-10-15T07:00:27Z2009-10-15T07:00:27Z<p>The other answers here are good, but let me make a few suggestions on sanitization. Rails built-in sanitizer is decent, but it doesn't guarantee well-formedness which tends to be half the problem. It's also fairly likely to be exploited since it's not best-of-breed and it has a large large install footprint for hackers to attack.</p>
<p>I believe the best and most forward-looking sanitization around today is html5lib because it's written to parse as a browser does, and it's a collaboration by a lot of leaders in the field. However it's a bit on the slow side and not very Ruby like.</p>
<p>In Ruby I recommend either <a href="http://loofah.rubyforge.org/loofah/" rel="nofollow">Loofah</a> which lifts some of the html5 sanitization stuff verbatim, but uses Nokogiri and runs much much faster or <a href="http://wonko.com/post/sanitize" rel="nofollow">Sanitize</a> which has a solid test suite and very good configurability (don't shoot yourself in the foot though).</p>
<p>I just released a plugin called <a href="http://github.com/dasil003/acts%5Fas%5Fsanitiled" rel="nofollow">ActsAsSanitiled</a> which is a rewrite of ActsAsTextiled to automagically sanitize the textiled output as well using the Sanitize gem. It's designed to give you the best of both worlds: input is untouched in the DB, yet the field always outputs safe HTML without needing to remember anything in the template. I don't use Markdown myself, but I would consider adding BlueCloth support.</p>
http://stackoverflow.com/questions/683989/how-do-you-deal-with-the-conflict-between-activesupportjson-and-the-json-gem/753257#7532571Answer by dasil003 for How do you deal with the conflict between ActiveSupport::JSON and the JSON gem?dasil0032009-04-15T19:10:52Z2009-10-03T18:48:07Z<p><strong>Update</strong> <em>This fix is only applicable to Rails < 2.3. As Giles mentions below, they fixed this in 2.3 internally using much the same technique. But beware the json gem's earlier attempt at Rails compatibility</em> (<code>json/add/rails</code>), <em>which, if required explicitly will break everything all over again.</em></p>
<p>Do you mean the <code>require 'json'</code> statement itself raises that Exception? Or do you mean when you call <code>@something.to_json(:something => value)</code> you get the error? The latter is what I would expect, if you have a problem requiring the JSON gem then I'm not sure what's going on.</p>
<p>I just ran into this problem with the oauth gem. In my case, there is not a true conflict, because the oauth gem doesn't depend on <code>to_json</code> implementation. Therefore the problem is that JSON is clobbering the ActiveSupport declarations. I solved this by simply requiring json before ActiveSupport is loaded. Putting</p>
<pre><code>require 'json'
</code></pre>
<p>inside the <code>Rails::Initializer</code> did the trick (though putting it after the block did NOT).</p>
<p>That allows ActiveSupport to clobber the default JSON implementation instead.</p>
<p>Now if you are using a gem that actually depends on the JSON implementation of <code>to_json</code> then you are up a creek. This is definitely the worst of meta-programming, and I would advocate for the Rails and JSON gem developers to resolve the conflict, though it will be painful because one or the other will have to break backwards compatibility.</p>
<p>In the short term, gem authors may be able to bridge the gap by supporting both implementations. This is more or less feasible depending on how the gem uses the method. A worst case scenario is an official fork (ie. <code>gem</code> and <code>gem-rails</code>).</p>
http://stackoverflow.com/questions/1492571/validating-a-legacy-table-with-activerecord/1501852#15018520Answer by dasil003 for Validating a legacy table with ActiveRecorddasil0032009-10-01T04:10:05Z2009-10-01T04:10:05Z<p>I like zgchurch's response as a starting point.</p>
<p>What I would add is that threading is definitely not going to help here, especially because Ruby uses green threads (at least in 1.8.x), so there is no opportunity to utilize multiple processors anyway. Even if that weren't the case it's very likely that this operation is IO-heavy enough that you would get IO contention eating into any multi-core benefits.</p>
<p>Now if you really want to speed this up you should take a look at the actual validations and figure out a more efficient way to achieve them. Just loading all the rows and instantiating an ActiveRecord object is going to tend to dominate the performance in most validation situations. You may be spending 90-99.99% of your time just loading and unloading the data from memory.</p>
<p>In these types of situations I tend to go towards raw SQL. You can do things like validating foreign key integrity tens of thousands of times faster than raw ActiveRecord validation callbacks. Of course the viability of this approach depends on the actual ins and outs of your validations. Even if you need something a little richer than SQL to define validity, you could still probably get a 10-100x speed increase just be loading the minimal data with a thinner SQL interface and examining the data directly. If that's the case Perl or Python might be a better choice for raw performance.</p>
http://stackoverflow.com/questions/1433906/is-it-possible-to-edit-a-here-document-after-creating-it/1433921#14339213Answer by dasil003 for Is it possible to edit a Here document after creating it?dasil0032009-09-16T16:05:37Z2009-09-16T16:05:37Z<p>heredoc is just a syntax for generating a string. Therefore you can use all standard string methods. eg:</p>
<pre><code>replaceddoc = myheredoc.gsub(/div/, 'replaced div')
</code></pre>
http://stackoverflow.com/questions/781054/convert-an-array-of-integers-into-an-array-of-strings-in-ruby/781058#7810582Answer by dasil003 for Convert an array of integers into an array of strings in Ruby?dasil0032009-04-23T09:58:41Z2009-04-23T09:58:41Z<pre><code>str_array = int_array.map(&:to_s)
</code></pre>
http://stackoverflow.com/questions/1848117/rails-newrecord-not-reset-to-true-if-transaction-is-rolled-back/1848280#1848280Comment by dasil003 on Rails' new_record? not reset (to true) if transaction is rolled back dasil0032009-12-04T18:11:51Z2009-12-04T18:11:51Znew_record? is a method that is supposed to reflect the database state.http://stackoverflow.com/questions/1615969/what-are-the-semantics-of-javascripts-if-statement/1616022#1616022Comment by dasil003 on What Are the Semantics of Javascripts If Statementdasil0032009-10-23T21:46:59Z2009-10-23T21:46:59ZThis is the most sensible explanation. The if statement casts to Boolean. Bonus points if anyone can find a spec for this behavior.http://stackoverflow.com/questions/1615969/what-are-the-semantics-of-javascripts-if-statement/1615987#1615987Comment by dasil003 on What Are the Semantics of Javascripts If Statementdasil0032009-10-23T21:45:32Z2009-10-23T21:45:32ZCheck out the next two answers :)http://stackoverflow.com/questions/1615969/what-are-the-semantics-of-javascripts-if-statement/1615987#1615987Comment by dasil003 on What Are the Semantics of Javascripts If Statementdasil0032009-10-23T21:37:03Z2009-10-23T21:37:03ZBoolean(" ") => true
Boolean("") => falsehttp://stackoverflow.com/questions/1615969/what-are-the-semantics-of-javascripts-if-statement/1616009#1616009Comment by dasil003 on What Are the Semantics of Javascripts If Statementdasil0032009-10-23T21:34:02Z2009-10-23T21:34:02ZGood link, I had Javascript: The Good Parts, but I don't know where it ran off to.http://stackoverflow.com/questions/1615969/what-are-the-semantics-of-javascripts-if-statement/1615987#1615987Comment by dasil003 on What Are the Semantics of Javascripts If Statementdasil0032009-10-23T21:32:17Z2009-10-23T21:32:17ZWell, holy wars have been perpetuated merely by the definition of truthiness in programming languages, but in javascript I just assumed that since == does casting and === is an exact match, == true would be the natural definition of truthiness.http://stackoverflow.com/questions/1609267/how-to-find-if-range-is-contained-in-an-array-of-rangesComment by dasil003 on How to find if range is contained in an array of ranges? dasil0032009-10-22T19:33:45Z2009-10-22T19:33:45ZYou can create ranges of Times no problem (although there is a date component which I expect might work out for the best anyway):
Time.now..(Time.now + 3600) or with ActiveSupport Time.now..(Time.now + 1.hour)http://stackoverflow.com/questions/1609267/how-to-find-if-range-is-contained-in-an-array-of-rangesComment by dasil003 on How to find if range is contained in an array of ranges? dasil0032009-10-22T19:29:03Z2009-10-22T19:29:03Z@avguchenko The tricky part of scheduling is the optimal allocation of resources. The way this problem is stated is straightforward because it doesn't involve any choices.http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful/383503#383503Comment by dasil003 on Is JavaScript 's "new" Keyword Considered Harmful?dasil0032009-10-22T19:18:40Z2009-10-22T19:18:40ZFantastic answer.http://stackoverflow.com/questions/1605218/is-there-a-0-width-way-to-prevent-floated-divs-from-collapsing/1605267#1605267Comment by dasil003 on Is there a 0-width way to prevent floated divs from collapsingdasil0032009-10-22T06:17:46Z2009-10-22T06:17:46ZGo back and read the very first sentence of the question.http://stackoverflow.com/questions/1605218/is-there-a-0-width-way-to-prevent-floated-divs-from-collapsing/1605230#1605230Comment by dasil003 on Is there a 0-width way to prevent floated divs from collapsingdasil0032009-10-22T05:54:25Z2009-10-22T05:54:25ZUm, that's kind of embarassing I didn't know that.http://stackoverflow.com/questions/1532218/life-without-joins-understanding-and-common-practices/1576766#1576766Comment by dasil003 on Life without JOINs... understanding, and common practicesdasil0032009-10-17T18:35:47Z2009-10-17T18:35:47ZHere's some interesting technical information about real world distributed systems at Google:
<a href="http://perspectives.mvdirona.com/2009/10/17/JeffDeanDesignLessonsAndAdviceFromBuildingLargeScaleDistributedSystems.aspx" rel="nofollow">perspectives.mvdirona.com/2009/10/…</a>http://stackoverflow.com/questions/1557546/what-separates-a-ruby-dsl-from-an-ordinary-api/1557561#1557561Comment by dasil003 on What separates a Ruby DSL from an ordinary APIdasil0032009-10-16T18:28:24Z2009-10-16T18:28:24ZTotally agree on this. The trouble is that you find many people that are absolutely sure they have a solid definition of what makes a DSL, but none of them agree! In practice things are just more or less DSL-y, with languages like Ruby and Lisp encouraging the style, and languages like Java making it damn near impossible.http://stackoverflow.com/questions/1543107/what-is-the-cleverest-ui-feature-you-have-seen-in-a-website/1543155#1543155Comment by dasil003 on What is the cleverest UI feature you have seen in a website?dasil0032009-10-16T08:35:20Z2009-10-16T08:35:20ZFacebook has always been pretty solid for me on decently spec'ed machines.
You might not like Facebook, you might think it has too much stuff going on, and that may certainly be valid. However I don't think you can argue that the implementation is one of the most impressive of any site on the web. The AJAX everywhere, the chat / notifications, thumbs up, like, commenting, share. It's all packed in there tidily, drives serious growth and engagement, and they push updates almost daily. They invented the newsfeed for crying out loud. Facebook has amazing UI, don't fool yourselves.http://stackoverflow.com/questions/1344232/how-can-i-see-the-sql-that-will-be-generated-by-a-given-activerecord-query-in-rub/1344563#1344563Comment by dasil003 on How can I see the SQL that will be generated by a given ActiveRecord query in Ruby on Railsdasil0032009-10-16T05:23:56Z2009-10-16T05:23:56ZI'm not sure if it's due to Rails 2.3 or something in my environment, but this doesn't work for me. See my response below.