User Sai Emrys - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T04:24:25Zhttp://stackoverflow.com/feeds/user/102580http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1896014/rails-how-can-i-access-the-parent-model-of-a-new-records-nested-associations0Rails: How can I access the parent model of a new record's nested associations?Sai Emrys2009-12-13T09:36:01Z2009-12-14T04:36:12Z
<p>Suppose we have the standard Post & Comment models, with Post having <code>accepts_nested_attributes_for :commments</code> and <code>:autosave => true</code> set.</p>
<p>We can create a new post together with some new comments, e.g.:</p>
<pre><code>@post = Post.new :subject => 'foo'
@post.comments.build :text => 'bar'
@post.comments.first # returns the new comment 'bar'
@post.comments.first.post # returns nil :(
@post.save # saves both post and comments simultaneously, in a transaction etc
@post.comments.first # returns the comment 'bar'
@post.comments.first.post # returns the post 'foo'
</code></pre>
<p>However, I need to be able to distinguish from within Comment (e.g. from its before_save or validation functions) between</p>
<ol>
<li>this comment is not attached to a post (which is invalid)</li>
<li>this comment is attached to an <em>unsaved</em> post (which is valid)</li>
</ol>
<p>Unfortunately, merely calling <code>self.post</code> from Comment doesn't work, because per above, it returns nil until after save happens. In a callback of course, I don't (and shouldn't) have access to @post, only to self of the comment in question.</p>
<p>So: how can I access the parent model of a new record's nested associations, from the perspective of that nested association model?</p>
<p>(FWIW, the actual sample I'm using this with allows people to create a naked "comment" and will then automatically create a "post" to contain it if there isn't one already. I've simplified this example so it's not specific to my code in irrelevant ways.)</p>
http://stackoverflow.com/questions/1515856/where-to-patch-rails-activerecordfind-to-first-check-collections-in-memory2Where to patch Rails ActiveRecord::find() to first check collections in memory?Sai Emrys2009-10-04T07:49:38Z2009-10-30T23:57:26Z
<p>For somewhat complicated reasons, I would like to create something that works like this:</p>
<pre><code># Controller:
@comments = @page.comments # comments are threaded
# child comments still belong to @page
...
# View:
@comments.each_root {
display @comment {
indent & recurse on @comment.children
} }
# alternatives for how recursion call might work:
# first searches @comments, then actually goes to SQL
comment.in_memory.children
# only looks at @comments, RecordNotFound if not there
# better if we know @comments is complete, and checking for nonexistent
# records would be wasteful
comment.in_memory(:only).children
# the real thing - goes all the way to DB even though target is already in RAM
# ... but there's no way for find() to realize that :(
comment.children
</code></pre>
<p>I'm not even sure yet if this is possible, let alone a good idea, but I'm curious, and it'd be helpful.</p>
<p>Basically I want to redirect find() so that it looks first/only at the collection that's already been loaded, using something like a hypothetical <code>@collection.find{|item| item.matches_finder_sql(...)}</code>.</p>
<p>The point is to prevent unnecessarily complex caching and expensive database lookups for stuff that's already been loaded en masse.</p>
<p>If possible, it'd be nice if this played nice with extant mechanisms for staleness, association lazy loading, etc.</p>
<p>The nested-comments thing is just an example; of course this applies to lots of other situations too.</p>
<p>So... how could I do this?</p>
http://stackoverflow.com/questions/1633369/multiple-column-foreign-keys-associations-in-activerecord-rails0Multiple column foreign keys / associations in ActiveRecord/RailsSai Emrys2009-10-27T20:10:53Z2009-10-28T00:09:48Z
<p>I have badges (sorta like StackOverflow). </p>
<p>Some of them can be attached to badgeable things (e.g. a badge for >X comments on a post is attached to the post). Almost all come in multiple levels (e.g. >20, >100, >200), and you can only have one level per badgeable x badge type (= <code>badgeset_id</code>).</p>
<p>To make it easier to enforce the one-level-per-badge constraint, I want badgings to specify their badge by a two-column foreign key - <code>badgeset_id</code> and <code>level</code> - rather than by primary key (<code>badge_id</code>), though badges does have a standard primary key too.</p>
<p>In code:</p>
<pre><code>class Badge < ActiveRecord::Base
has_many :badgings, :dependent => :destroy
# integer: badgeset_id, level
validates_uniqueness_of :badgeset_id, :scope => :level
end
class Badging < ActiveRecord::Base
belongs_to :user
# integer: badgset_id, level instead of badge_id
#belongs_to :badge # <-- how to specify?
belongs_to :badgeable, :polymorphic => true
validates_uniqueness_of :badgeset_id, :scope => [:user_id, :badgeable_id]
validates_presence_of :badgeset_id, :level, :user_id
# instead of this:
def badge
Badge.first(:conditions => {:badgeset_id => self.badgeset_id, :level => self.level})
end
end
class User < ActiveRecord::Base
has_many :badgings, :dependent => :destroy do
def grant badgeset, level, badgeable = nil
b = Badging.first(:conditions => {:user_id => proxy_owner.id, :badgeset_id => badgeset,
:badgeable_id => badgeable.try(:id), :badgeable_type => badgeable.try(:class)}) ||
Badging.new(:user => proxy_owner, :badgeset_id => badgeset, :badgeable => badgeable)
b.level = level
b.save
end
end
has_many :badges, :through => :badgings
# ....
end
</code></pre>
<p>How I can specify a <code>belongs_to</code> association that does that (and doesn't try to use a <code>badge_id</code>), so that I can use the <code>has_many :through</code>?</p>
<p>ETA: This partially works (i.e. @badging.badge works), but feels dirty:</p>
<pre><code>belongs_to :badge, :foreign_key => :badgeset_id, :primary_key => :badgeset_id, :conditions => 'badges.level = #{level}'
</code></pre>
<p>Note that the conditions is in <em>single</em> quotes, not double, which makes it interpreted at runtime rather than loadtime.</p>
<p>However, when trying to use this with the :through association, I get the error <code>undefined local variable or method 'level' for #<User:0x3ab35a8></code>. And nothing obvious (e.g. <code>'badges.level = #{badgings.level}'</code>) seems to work...</p>
<p>ETA 2: Taking EmFi's code and cleaning it up a bit works. It requires adding <code>badge_set_id</code> to Badge, which is redundant, but oh well.</p>
<p>The code:</p>
<pre><code>class Badge < ActiveRecord::Base
has_many :badgings
belongs_to :badge_set
has_friendly_id :name
validates_uniqueness_of :badge_set_id, :scope => :level
default_scope :order => 'badge_set_id, level DESC'
named_scope :with_level, lambda {|level| { :conditions => {:level => level}, :limit => 1 } }
def self.by_ids badge_set_id, level
first :conditions => {:badge_set_id => badge_set_id, :level => level}
end
def next_level
Badge.first :conditions => {:badge_set_id => badge_set_id, :level => level + 1}
end
end
class Badging < ActiveRecord::Base
belongs_to :user
belongs_to :badge
belongs_to :badge_set
belongs_to :badgeable, :polymorphic => true
validates_uniqueness_of :badge_set_id, :scope => [:user_id, :badgeable_id]
validates_presence_of :badge_set_id, :badge_id, :user_id
named_scope :with_badge_set, lambda {|badge_set|
{:conditions => {:badge_set_id => badge_set} }
}
def level_up level = nil
self.badge = level ? badge_set.badges.with_level(level).first : badge.next_level
end
def level_up! level = nil
level_up level
save
end
end
class User < ActiveRecord::Base
has_many :badgings, :dependent => :destroy do
def grant! badgeset_id, level, badgeable = nil
b = self.with_badge_set(badgeset_id).first ||
Badging.new(
:badge_set_id => badgeset_id,
:badge => Badge.by_ids(badgeset_id, level),
:badgeable => badgeable,
:user => proxy_owner
)
b.level_up(level) unless b.new_record?
b.save
end
def ungrant! badgeset_id, badgeable = nil
Badging.destroy_all({:user_id => proxy_owner.id, :badge_set_id => badgeset_id,
:badgeable_id => badgeable.try(:id), :badgeable_type => badgeable.try(:class)})
end
end
has_many :badges, :through => :badgings
end
</code></pre>
<p>While this works - and it's probably a better solution - I don't consider this an actual answer to the question of how to do a) multi-key foreign keys, or b) dynamic-condition associations that work with :through associations. So if anyone has a solution for that, please speak up.</p>
http://stackoverflow.com/questions/42566/getting-the-hostname-or-ip-in-ruby-on-rails/1619840#16198400Answer by Sai Emrys for Getting the Hostname or IP in Ruby on RailsSai Emrys2009-10-25T02:46:38Z2009-10-25T02:46:38Z<p>Put the highlighted part in backticks (sadly SO doesn't seem to handle the fact that backticks are legal Ruby :():</p>
<p><code>dig #{request.host} +short</code>.strip # dig gives a newline at the end</p>
<p>Or just request.host if you don't care whether it's an IP or not.</p>
http://stackoverflow.com/questions/833418/whats-a-good-free-drop-in-set-of-mimetype-icons4What's a good, free, drop-in set of mimetype icons?Sai Emrys2009-05-07T08:07:43Z2009-08-19T08:22:59Z
<p>I want a set of mimetype icons to go with my file uploads, to show in users' files lists and the like.</p>
<p>It should be:</p>
<ul>
<li>16x16 PNG or JPG (other sizes through 64x64 would be a bonus but not required)</li>
<li>already organized such that I can do e.g. mimetype.sub('/','-') + '.png' and get the icon file name (I'd like to avoid spending a bunch of time figuring out the associations)</li>
<li>not platform specific, preferably using properitary apps' native icons where available (e.g. a .zip icon should not look like a KDE box)</li>
<li>pretty but readable and suitable to a general audience ;-)</li>
</ul>
<p>What's a good package for this?</p>
http://stackoverflow.com/questions/985102/ruby-print-the-code-of-an-arbitrary-method-and-exec-in-context0Ruby: print the code of an arbitrary method (and exec in context)Sai Emrys2009-06-12T05:08:46Z2009-06-13T19:56:23Z
<p>I would like to do something like the following:</p>
<pre><code>class String
def fancy_thing appendix
# Just a trivial example to ensure self and params work.
# Pretend this is something complex.
self.reverse + appendix
end
end
# print_method on instance or class should spit out a string
# containing the actual code for that method
ft_code = "cob".print_method :fancy_thing
ft_code = String.print_instance_method :fancy_thing
# => "{|appendix| self.reverse + appendix }" *
# ft_code gets passed around a bit...
# exec on an object should run code (w/ parameters) as if that code is
# an instance method on that object (or class method if it's a class)
"cob".exec(ft_code, '!') #=> "boc!"
</code></pre>
<p>How might one code print_method and foo.exec? Preferably, they should work for any arbitrary methods, without knowing a priori where they might happen to have been defined or sourced from.</p>
<ul>
<li>Yes, I know methods and blocks aren't completely the same. But this is closer to what yield and call would normally take; I don't know of a better solution.</li>
</ul>
http://stackoverflow.com/questions/958676/change-a-finder-method-w-parameters-to-an-association0Change a finder method w/ parameters to an associationSai Emrys2009-06-06T00:41:41Z2009-06-07T22:38:44Z
<p>How do I turn this into a has_one association? </p>
<p>(Possibly has_one + a named scope for size.)</p>
<pre><code>class User < ActiveRecord::Base
has_many :assets, :foreign_key => 'creator_id'
def avatar_asset size = :thumb
# The LIKE is because it might be a .jpg, .png, or .gif.
# More efficient methods that can handle that are OK. ;)
self.assets.find :first, :conditions =>
["thumbnail = '#{size}' and filename LIKE ?", self.login + "_#{size}.%"]
end
end
</code></pre>
<p>EDIT: Cuing from AnalogHole on Freenode #rubyonrails, we can do this:</p>
<pre><code> has_many :assets, :foreign_key => 'creator_id' do
def avatar size = :thumb
find :first, :conditions => ["thumbnail = ? and filename LIKE ?",
size.to_s, proxy_owner.login + "_#{size}.%"]
end
end
</code></pre>
<p>... which is fairly cool, and makes syntax a bit better at least.</p>
<p>However, this still doesn't behave as well as I would like. Particularly, it doesn't allow for further nice find chaining (such that it doesn't execute this find until it's gotten all its conditions).</p>
<p>More importantly, it doesn't allow for use in an :include. Ideally I want to do something like this:</p>
<pre><code>PostsController
def show
post = Post.get_cache(params[:id]) {
Post.find(params[:id],
:include => {:comments => {:users => {:avatar_asset => :thumb}} }
...
end
</code></pre>
<p>... so that I can cache the assets together with the post. Or cache them at all, really - e.g. <code>get_cache(user_id){User.find(user_id, :include => :avatar_assets)}</code> would be a good first pass.</p>
<p>This doesn't actually work (self == User), but is correct in spirit:</p>
<pre><code>has_many :avatar_assets, :foreign_key => 'creator_id',
:class_name => 'Asset', :conditions => ["filename LIKE ?", self.login + "_%"]
</code></pre>
<p>(Also posted on <a href="http://refactormycode.com/codes/900-change-a-finder-method-w-parameters-to-an-association" rel="nofollow">Refactor My Code</a>.)</p>
http://stackoverflow.com/questions/958707/this-i-used-to-believe1This I used to believe [closed]Sai Emrys2009-06-06T00:59:35Z2009-06-06T01:18:59Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect">What is your longest-held programming assumption that turned out to be incorrect?</a> </p>
</blockquote>
<p>What did you once believe (that is topical for SO) that you no longer do?</p>
<p>Why did you change your mind?</p>
<p><hr /></p>
<p>Me: I grew up on C. I thought that pointers – and custom management of assignment sizes and so forth (saving a few bytes here and there) – was important, and scripting or interpreted languages (eg Java) were inefficient because they hid this.</p>
<p>Man, was I wrong (in practical terms). In real life (working on production systems with tens of millions of users), this has been totally insignificant compared to the real speed and memory bottlenecks (bad SQL, network i/o, race conditions, caching, etc); language level stuff has essentially never been worth any sacrifice.</p>
<p>Not having to deal with that level of stuff any more makes my coding much more enjoyable, since I get to write much more <em>stuff I want to happen</em> and much less <em>how it runs</em>.</p>
<p>IOW, high level programming is good.</p>
<p>Caveat: This applies only to systems where you have the luxury of modern processors and RAM sizes. Operating on e.g. an old Palm Pilot with a Dragonball Z processor, one starts running more into processing constraints. Sorry to all the embedded systems programmers out there. ;)</p>
http://stackoverflow.com/questions/832558/good-css-for-flashes-aka-info-messages-in-rails-growls-in-osx4Good CSS for flashes (aka info messages in Rails, growls in OSX)Sai Emrys2009-05-07T01:45:25Z2009-06-06T00:38:35Z
<p>I'm having difficulty getting CSS to work like I want it to for flashes (those little messages that show when you log in or do something or whatnot to confirm your action, eg in Rails).</p>
<p>I want it to:</p>
<ul>
<li>live within any arbitrary div</li>
<li>look like a centered box with text in it</li>
<li>be only as big as needed to fit the text (if less than specified max width) or wrap the text (if larger) </li>
<li>have centered or left-aligned (or combination) text, depending on the flash (e.g. short errors are centered; longer how-to newbie intros are left-aligned); an extra CSS class (e.g. 'flash info left') to support this is OK</li>
<li>play well with having multiple flashes on a page right next to each other (as in example)</li>
<li>preferably consist of a single element w/ a class around the text, rather than text within an element within a wrapper element</li>
<li>preferably be YUI CSS compatible and pure CSS (not JS)</li>
<li>work right on IE7+, FFx 3+, Safari 3+; work 'good enough' on older browsers</li>
</ul>
<p>Most of the CSS I've seen for this doesn't do one of those - e.g. most specify a fixed width, which means that either it gets wrapped poorly or it's got way too much padding.</p>
<p>How can I do this? (Or: Why can't I?)</p>
<p>Here's my current CSS:</p>
<pre><code><div class="flash info">
<span class="close"><a href="AJAX callback">X</a></span>
Some informational text here that can be closed w/ the X
</div>
<div class="flash error">
Some other simultaneous error
</div>
.flash {
text-align: center;
padding: .3em .4em;
margin: 0 auto .5em;
clear: both;
max-width: 46.923em; /* 610/13 */
*max-width: 45.750em; /* 610/13.3333 - for IE */
}
.flash.error {
border: thin solid #8b0000;
background: #ffc0cb;
}
.flash.notice, .flash.info {
border: thin solid #ff0;
background: #ffe;
}
.flash.warning {
border: thin solid #b8860b;
background: #ff0;
}
.flash .close {
float: right;
}
.flash .close a {
color: #f00;
text-decoration: none;
}
</code></pre>
<p>Bonus points: I achieved what I want only partially with the tooltip code below; namely, it isn't capable of wrapping.</p>
<p>For some reason, unless nowrap or a width is specified, it defaults to being very small in width. I couldn't figure out why, or how to make it just wrap at a specific, wider width (like I want to happen w/ the flash).</p>
<pre><code>Some text with <span class="tooltip">info <span>i can has info?</span></span> about a word
.tooltip {
position: relative; /*this is the key*/
background-color: #ffa;
}
.tooltip:hover{
background-color: #ff6;
}
.tooltip span {
display: none
}
.tooltip:hover span { /*the span will display just on :hover state*/
z-index: 1;
display: block;
position: absolute;
top: 1.6em;
left: 0;
border: thin solid #ff0;
background: #ffe;
padding: .3em .6em;
text-align: left;
white-space: nowrap;
}
</code></pre>
<p>Thanks!</p>
<ul>
<li>Sai</li>
</ul>
http://stackoverflow.com/questions/904510/rails-voting-site/918212#9182121Answer by Sai Emrys for Rails Voting SiteSai Emrys2009-05-27T21:53:28Z2009-05-27T21:53:28Z<p>You should also take a look at 'counters' in the API, such that each vote has a value and the tallies are kept on the voted-on object (so it doesn't have to run a count every single time).</p>
http://stackoverflow.com/questions/913345/where-is-this-rails-file-stored-db-development-sqlite3/918195#9181950Answer by Sai Emrys for Where is this Rails file stored? db/development.sqlite3Sai Emrys2009-05-27T21:51:46Z2009-05-27T21:51:46Z<p>FWIW the file might not exist if you haven't done rake db:create yet.</p>
http://stackoverflow.com/questions/908520/rails-dashboard-design-one-controller-action-per-div/912286#9122865Answer by Sai Emrys for Rails dashboard design: one controller action per divSai Emrys2009-05-26T19:31:46Z2009-05-27T21:48:48Z<h2>Version 1:</h2>
<p>Simple method that I've actually used in production: iframes.</p>
<p>Most of the time you don't actually care if the page renders all at once and direct from the server, and indeed it's better for it to load staggered.</p>
<p>If you just drop an iframe src'd to the controller's show action, you have a very simple solution that doesn't require direct cross-controller interactions.</p>
<p>Pro:</p>
<ul>
<li>dead easy</li>
<li>works with existing show actions etc</li>
<li>might even be faster, depending on savings w/ parallel vs sequential requests and memory load etc</li>
</ul>
<p>Cons:</p>
<ul>
<li>you can't always easily save the page together with whatever-it-is</li>
<li>iframes will break out of the host page's javascript namespace, so if they require that, you may need to give them their own minimalist layout; they also won't be able to affect the surrounding page outside their iframe</li>
<li>might be slower, depending on ping time etc</li>
<li>potential n+1 efficiency bug if you have many such modules on a page</li>
</ul>
<h2>Version 2:</h2>
<p>Do the same thing using JS calls to replace a div with a partial, à la:</p>
<pre><code><div id="placeholder">
<%= update_page {|page| page['placeholder'].replace with some partial call here } %>
</code></pre>
<p>Same as above, except:</p>
<p>Pro:</p>
<ul>
<li>doesn't lock it into an iframe, thus shares JS context etc</li>
<li>allows better handling of failure cases</li>
</ul>
<p>Con:</p>
<ul>
<li>requires JS and placeholder divs; a bit more complex</li>
</ul>
<h2>Version 3:</h2>
<p>Call a whole bunch of partials. It gets complicated to do that once you're talking about things like dashboards where the individual modules have significant amounts of setup logic, however.</p>
<p>There are various ways to get around this by making those things into 'mixins' or the like, but IMO they're kinda kludgy.</p>
<p>ETA: The way to do it via mixins is to create what is essentially a library file that implements your module controllers' setup functions, include that wherever something that calls 'em is used, and call 'em.</p>
<p>However, this has drawbacks:</p>
<ul>
<li>you have to know what top level controller actions will result in pages that include those modules (which you might not easily, if these are really widgety things that might appear all over, e.g. user preference dependent)</li>
<li>it doesn't really act as a full fledged controller</li>
<li>it still intermixes a lot of logic where your holding thing needs to know about the things it's holding</li>
<li>you can't easily have it be segregated into its own controller, 'cause it needs to be in a library-type file/mixin</li>
</ul>
<p>It IS possible to call methods in one controller from another controller. However, it's a major pain in the ass, and a major kludge. The only time you should consider doing so is if a) they're both independently necessary controllers in their own rights, and b) it has to function entirely on the back end.</p>
<p>I've had to do this once - primarily because refactoring the reason for it was even MORE of a pain - and I promise you don't want to go there unless you have to.</p>
<h2>Summary</h2>
<p>The best method IMHO is the first if you have complex enough things that they require significant setup - a simple iframe which displays the module, passing a parameter to tell it to use an ultraminimalist layout (just CSS+JS headers) because it's not being displayed as its own page.</p>
<p>This allows you to keep the things totally independent, function more or less as if they were perfectly normal controllers of their own (other than the layout setting), preserve normal routes, etc.</p>
<p>If you DON'T need significant setup, then just use partials, and pass in whatever they need as a local variable. This will start to get fragile if you run into things like n+1 efficiency bugs, though...</p>
http://stackoverflow.com/questions/874390/a-technology-for-reading-pdfs-online-with-annotations/912313#9123130Answer by Sai Emrys for A technology for reading pdfs online with annotations?Sai Emrys2009-05-26T19:37:15Z2009-05-26T19:37:15Z<p>Not sure if they do annotations, but both of these will show PDFs quite well:</p>
<p><a href="http://pdfmenot.com" rel="nofollow">http://pdfmenot.com</a></p>
<p><a href="http://docs.google.com" rel="nofollow">http://docs.google.com</a></p>
http://stackoverflow.com/questions/800122/best-way-to-convert-strings-to-symbols-in-hash/890864#8908641Answer by Sai Emrys for Best way to convert strings to symbols in hashSai Emrys2009-05-21T00:14:58Z2009-05-21T00:14:58Z<p>Here's a better method, if you're using Rails:</p>
<p>params.<a href="http://api.rubyonrails.org/classes/ActiveSupport/CoreExtensions/Hash/Keys.html#M001162" rel="nofollow">to_options</a></p>
<p>The end.</p>
<p>If you're not, just rip off their code (it's in the link).</p>
http://stackoverflow.com/questions/763863/passenger-crash-when-trying-to-use-https/890058#8900580Answer by Sai Emrys for Passenger crash when trying to use httpsSai Emrys2009-05-20T20:27:46Z2009-05-20T20:27:46Z<p>You're probably getting the Passenger error because DreamHost killed your app for using too much memory.</p>
<p>Given that you're using spawn, that's probably the reason - spawn creates a whole new Rails process.</p>
<p>Try doing something that doesn't involve spawning a new app instance. I would bet however that it is NOT a matter of SSL.</p>
http://stackoverflow.com/questions/832551/rails-how-can-i-log-on-which-site-my-javascript-is-embedded/832689#8326891Answer by Sai Emrys for Rails: How can I log on which site my javascript is embedded?Sai Emrys2009-05-07T02:55:16Z2009-05-19T15:47:09Z<p>Make a database table that logs your hits. Whenever someone hits show, log it.</p>
<p>You can rip my code for something similar from <a href="http://github.com/saizai/hyperdictionary" rel="nofollow">http://github.com/saizai/hyperdictionary</a> - take the four_oh_four controller, model, & migration.</p>
<p>If you have other information (eg you know the logged on user somehow? you know whose link it is?) you can easily add it to that table as a foreign key. Then you'd do something like </p>
<pre><code>user.js_hits.find(:all, :select => "name, count(id) as count", :group => 'name')
</code></pre>
<p>And drop it in a simple view (see my app/views/four_oh_fours/index.html.erb for a simple example).</p>
http://stackoverflow.com/questions/845527/how-fast-does-it-take-to-write-a-simple-custom-editor/845588#8455883Answer by Sai Emrys for How fast does it take to write a simple, custom editor?Sai Emrys2009-05-10T16:10:47Z2009-05-10T16:10:47Z<p>Don't.</p>
<p>Go get something else (any of those Jason mentioned, or e.g. what SO itself uses, WMD). Swap out its images. The end.</p>
<p>Seriously you don't want to write your own editor unless you have a very good reason for it <em>functionally</em>, not just what it looks like.</p>
http://stackoverflow.com/questions/845503/database-schema-for-large-web-apps/845518#8455182Answer by Sai Emrys for Database schema for large web appsSai Emrys2009-05-10T15:19:30Z2009-05-10T16:05:58Z<p>Definitely the company_id.</p>
<p>Creating a new table for every anything - let alone a new DATABASE - would be absurd (and indeed is the fodder for many a Daily WTF post).</p>
<p>That's the whole point of using a relational database - you link things together.</p>
<p>If you need to then make the db bigger, there are tons of ways to do it (master/slave, master/multislave, dual master, horizontal scaling, just buying a ton of RAM, etc).</p>
<p>FWIW: my last app had ~12 million users (~300k per day); it had two databases (horizontal scaling; done by the previous guys. I didn't agree with that decision, and would've just used slaves).</p>
<p>EDIT: Caveat - this is assuming that you are only exposing access via your app (either its web interface or an API).</p>
<p>If you really need to expose the database directly to customers, a) tell them to think again because it's a bad idea, and b) then you may need to make hard choices between what's easier to maintain that preserves the needed firewalling. But srsly, you don't want to go there if you can help it.</p>
http://stackoverflow.com/questions/718508/tips-for-optimising-database-and-post-request-performance/845529#8455290Answer by Sai Emrys for Tips for optimising Database and POST request performanceSai Emrys2009-05-10T15:26:19Z2009-05-10T15:26:19Z<p>Have you tried profiling your app?</p>
<p>Not sure what framework you're using (if any), but frankly from your questions I doubt you have the technical skill yet to just eyeball this and figure out where things are slowing down.</p>
<p>Bluntly put, you should not be messing around with complicated ways to try to solve your problem, because you don't really understand what the problem is. You're more likely to make it worse than better by doing so.</p>
<p>What I would recommend you do is time every step. Most likely you'll find that either</p>
<ol>
<li>you've got one or two really long running bits or</li>
<li>you're running a shitton of queries because of an n+1 error or the like</li>
</ol>
<p>When you find what's going wrong, fix it. If you don't know how, post again. ;-)</p>
http://stackoverflow.com/questions/845402/can-one-rely-on-the-auto-incrementing-primary-key-in-your-database/845496#8454960Answer by Sai Emrys for Can one rely on the auto-incrementing primary key in your database?Sai Emrys2009-05-10T15:08:29Z2009-05-10T15:08:29Z<p>One caveat to EJB's answer:</p>
<p>SQL does not give any guarantee of ordering if you don't specify an order by column. E.g. if you delete some early rows, then insert 'em, the new ones may end up living in the same place in the db the old ones did (albeit with new IDs), and that's what it may use as its default sort.</p>
<p>FWIW, I typically use order by ID as an effective version of order by created_at. It's cheaper in that it doesn't require adding an index to a datetime field (which is bigger and therefore slower than a simple integer primary key index), guaranteed to be different, and I don't really care if a few rows that were added at about the same time sort in some slightly different order.</p>
http://stackoverflow.com/questions/845481/how-can-i-make-this-query-to-detect-multiple-accounts-more-efficient-play-well1How can I make this query to detect multiple accounts more efficient & play well w/ has_many?Sai Emrys2009-05-10T14:57:21Z2009-05-10T14:57:21Z
<p>In my User model, I want to search for whether a user has multiple accounts (aka 'multis').</p>
<p>Users have sessions; sessions are customized to set </p>
<ol>
<li><code>creator_id</code> = ID of first user the session was logged in as, and</li>
<li><code>updater_id</code> = ID of last user the session was logged in as</li>
</ol>
<p>(Both columns are indexed.)</p>
<p>If I detect that the two are different when a session is saved, I save the session for posterity (and this query), because it means that the user logged in as one and then logged in as the other - aka they're a multi. (To catch the recursive base case, the <code>creator_id</code> is then reset on the current session.)</p>
<p>Here's the code that does it:</p>
<pre><code>class Session < ActiveRecord::SessionStore::Session
attr_accessor :skip_setters
before_save :set_ip
before_save :set_user
def set_user
return true if self.skip_setters
# First user on this session
self.creator_id ||= self.data[:user_id]
# Last user on this session
self.updater_id = self.data[:user_id] if self.data[:user_id]
if self.creator_id and self.updater_id and
self.creator_id != self.updater_id
logger.error "MULTI LOGIN: User #{self.creator.login} and \
#{self.updater.login} from #{self.ip}"
# Save a copy for later inspection
backup = Session.new {|dup_session|
dup_session.attributes = self.attributes
# overwrite the session_id so we don't conflict with the
# current one & it can't be used to log in
dup_session.session_id = ActiveSupport::SecureRandom.hex(16)
dup_session.skip_setters = true
}
backup.save
# Set this session to be single user again.
# Updater is what the user looks for;
# creator is the one that's there to trigger this.
self.creator_id = self.updater_id
end
end
# etc... e.g. log IP
end
</code></pre>
<p>The following query does work.</p>
<p>However, it's ugly, not very efficient, and doesn't play well with Rails' association methods. Keep in mind that sessions is an extremely large and heavily used table, and users almost as much.</p>
<p>I'd like to change this into a has_many association (so that all the associational magic works); possibly <code>:through =></code> a <code>:multi_sessions</code> association. It should capture both directions of multihood, not just one like the current association.</p>
<p>How can this be improved?</p>
<pre><code>class User < ActiveRecord::Base
has_many :sessions, :foreign_key => 'updater_id'
# This association is only unidirectional; it won't catch the reverse case
# (i.e. someone logged in first as this user and then as the other)
has_many :multi_sessions, :foreign_key => 'updater_id',
:conditions => 'sessions.updater_id != sessions.creator_id',
:class_name => 'Session'
has_many :multi_users, :through => :multi_sessions,
:source => 'creator', :class_name => 'User'
...
# This does catch both, but is pretty ugly :(
def multis
# Version 1
User.find_by_sql "SELECT DISTINCT users.* FROM users \
INNER JOIN sessions \
ON (sessions.updater_id = #{self.id} XOR sessions.creator_id = {self.id}) AND \
(sessions.updater_id = users.id XOR sessions.creator_id = users.id) \
WHERE users.id != #{self.id}"
# Version 2
User.find(sessions.find(:all, :conditions => 'creator_id != updater_id',
:select => 'DISTINCT creator_id, updater_id').map{|x|
[x.creator_id, x.updater_id]}.flatten.uniq - [self.id])
end
end
</code></pre>
http://stackoverflow.com/questions/832261/what-is-the-best-plugin-to-handle-multiple-file-uploads-in-rails/832738#8327380Answer by Sai Emrys for What is the best plugin to handle multiple file uploads in Rails?Sai Emrys2009-05-07T03:13:32Z2009-05-07T03:13:32Z<p>I am using restful_authentication + attachment_fu + SWFUpload, which handles multiple attachments VERY well IMO.</p>
<p>Here's your quick start guide: <a href="http://github.com/davidsouth/rails-swfupload/tree/master" rel="nofollow">http://github.com/davidsouth/rails-swfupload/tree/master</a></p>
http://stackoverflow.com/questions/832017/what-tools-do-web-developers-use-with-php-ruby-on-rails-python-etc/832586#8325860Answer by Sai Emrys for What tools do web developers use with PHP, Ruby on Rails, Python, etc?Sai Emrys2009-05-07T02:03:36Z2009-05-07T02:03:36Z<p>I use Aptana/RadRails for my Ruby on Rails IDE. It's good.</p>
<p>Recently I've been using its debugger more, and it's saved me a fair amount of time.</p>
http://stackoverflow.com/questions/832483/is-prevention-of-xss-a-valid-reason-to-prefer-post-over-get-for-web-apps/832581#8325810Answer by Sai Emrys for Is prevention of XSS a valid reason to prefer POST over GET for web apps?Sai Emrys2009-05-07T02:00:05Z2009-05-07T02:00:05Z<p>XSS won't be stopped; XSS is when a user gets you to somehow output their script to other users. That requires filtering.</p>
<p>XSRF won't be stopped either; it requires adding one-time-tokens of some sort, to ensure that someone can only hit your site if they're actually on it (rather than posting from an embedded iframe or the like).</p>
<p>However, POST vs GET does prevent web accelerators and scrapers (eg Google Bot) from modifying your site. They only go to GET links, and thus if you don't want to have your site deleted (a la Daily WTF posts on this), make sure that 'delete this item' isn't a GET. ;-)</p>
<p>More usually, it's a matter of semantics and form size. GET does not post a form, thus is limited to whatever you can put in a URL, which is not much. POST allows arbitrary amounts of data. PUT and DELETE are more there for semantics; they can both be done via POST too.</p>
http://stackoverflow.com/questions/1896014/rails-how-can-i-access-the-parent-model-of-a-new-records-nested-associations/1898947#1898947Comment by Sai Emrys on Rails: How can I access the parent model of a new record's nested associations?Sai Emrys2009-12-14T16:11:42Z2009-12-14T16:11:42ZYou can set an attribute (e.g. parent, children) without setting the requisite _ids. That's how it does nested model saving currently - it just has this flaw of not being recursive.http://stackoverflow.com/questions/1633369/multiple-column-foreign-keys-associations-in-activerecord-rails/1633889#1633889Comment by Sai Emrys on Multiple column foreign keys / associations in ActiveRecord/RailsSai Emrys2009-10-28T00:10:46Z2009-10-28T00:10:46ZThat works, more or less. It's not quite an answer to the question, though it is an answer to the problem, and I'm crediting it as such.
I've cleaned up your code and put it in the question.http://stackoverflow.com/questions/1515856/where-to-patch-rails-activerecordfind-to-first-check-collections-in-memory/1517247#1517247Comment by Sai Emrys on Where to patch Rails ActiveRecord::find() to first check collections in memory?Sai Emrys2009-10-10T06:29:05Z2009-10-10T06:29:05ZThis doesn't do what I want, because it doesn't allow me to continue to use standard find and find-using methods (like .children from awesome_nested_set). The problem is not a caching issue (like what you address) but more a proxying issue.http://stackoverflow.com/questions/985102/ruby-print-the-code-of-an-arbitrary-method-and-exec-in-context/985159#985159Comment by Sai Emrys on Ruby: print the code of an arbitrary method (and exec in context)Sai Emrys2009-06-15T12:00:05Z2009-06-15T12:00:05ZWell earned. ;-)http://stackoverflow.com/questions/985102/ruby-print-the-code-of-an-arbitrary-method-and-exec-in-contextComment by Sai Emrys on Ruby: print the code of an arbitrary method (and exec in context)Sai Emrys2009-06-12T17:06:29Z2009-06-12T17:06:29ZPer my comment on joshng's solution, the purpose is a) for irb/console purposes (outside of the debugger proper) and b) just to see if it's possible. See edits for what they do.http://stackoverflow.com/questions/985102/ruby-print-the-code-of-an-arbitrary-method-and-exec-in-context/985159#985159Comment by Sai Emrys on Ruby: print the code of an arbitrary method (and exec in context)Sai Emrys2009-06-12T10:13:07Z2009-06-12T10:13:07ZYour solution is pretty good, but fails for two things. 1) class methods; 2) built-ins (e.g. "foo".print_method :to_s # => UnsupportedNodeError). I wonder if that's fixable.http://stackoverflow.com/questions/985102/ruby-print-the-code-of-an-arbitrary-method-and-exec-in-context/985159#985159Comment by Sai Emrys on Ruby: print the code of an arbitrary method (and exec in context)Sai Emrys2009-06-12T10:04:58Z2009-06-12T10:04:58ZFixed the method in OP. Part of the point of its definition though was to use 'self', as a test to ensure that exec had it bound properly. But 's really just a random example.
Now I wonder how parse_tree and ruby2ruby work that magic to_ruby call. Looks like I'll need to read their code. ;)http://stackoverflow.com/questions/985102/ruby-print-the-code-of-an-arbitrary-method-and-exec-in-context/985159#985159Comment by Sai Emrys on Ruby: print the code of an arbitrary method (and exec in context)Sai Emrys2009-06-12T10:00:00Z2009-06-12T10:00:00ZMy intent for it is in irb / rails console, for easy debugging, method editing, etc (when not necessarily in the debugger proper).
And just because I'm curious whether it can be <i>done</i> in 1.8 / 1.9. ;-)http://stackoverflow.com/questions/985047/questions-about-a-career-in-the-it-programming-industryComment by Sai Emrys on Questions about a career in the IT/Programming industrySai Emrys2009-06-12T05:25:48Z2009-06-12T05:25:48ZIf it's for your English class, you might want to spell "career" correctly.http://stackoverflow.com/questions/985113/in-a-stackoverflow-clone-is-it-acceptable-for-questions-and-answers-to-be-separa/985127#985127Comment by Sai Emrys on In a StackOverflow clone, is it acceptable for Questions and Answers to be separate tables?Sai Emrys2009-06-12T05:22:42Z2009-06-12T05:22:42ZI would do comments with polymorphism, not with two foreign keys.
In the future, tags, profiles, badges, users, etc might all also have comments on them (there's no semantic restriction); mutually exclusive required foreign keys just make for kludges.http://stackoverflow.com/questions/958676/change-a-finder-method-w-parameters-to-an-association/960803#960803Comment by Sai Emrys on Change a finder method w/ parameters to an associationSai Emrys2009-06-07T21:50:19Z2009-06-07T21:50:19ZRe. your edit - that's not what I meant. It's "include the avatars of users who commented on this post, so I can cache the whole damn thing". Not "find only the comments with avatar-having users".http://stackoverflow.com/questions/958676/change-a-finder-method-w-parameters-to-an-association/960803#960803Comment by Sai Emrys on Change a finder method w/ parameters to an associationSai Emrys2009-06-07T21:38:28Z2009-06-07T21:38:28Z... also, AFAICT your code doesn't work. Even adding the necessary :class_name and :foreign_key, your avatar_assets barfs: <code>Unknown column 'users.asset_id'</code> 'cause it doesn't know what user it's on. But I think this is leading me to something better; will need to reread about association extensions.http://stackoverflow.com/questions/958676/change-a-finder-method-w-parameters-to-an-association/960803#960803Comment by Sai Emrys on Change a finder method w/ parameters to an associationSai Emrys2009-06-07T21:14:22Z2009-06-07T21:14:22ZAlso - is there any way that would enable me to do something like: Post.find(1).comments(:include => {:users => {:avatar_asset => :thumb }})?http://stackoverflow.com/questions/958676/change-a-finder-method-w-parameters-to-an-association/960803#960803Comment by Sai Emrys on Change a finder method w/ parameters to an associationSai Emrys2009-06-07T20:50:02Z2009-06-07T20:50:02ZI actually took a look at Paperclip; it lacks some of the more sophisticated features that I happen to need. (Assets are used nontrivially in my app in many places and sometimes polymorphically; having one psuedocolumn per asset type would be bad.)http://stackoverflow.com/questions/832558/good-css-for-flashes-aka-info-messages-in-rails-growls-in-osx/935435#935435Comment by Sai Emrys on Good CSS for flashes (aka info messages in Rails, growls in OSX)Sai Emrys2009-06-06T00:31:30Z2009-06-06T00:31:30ZI don't get to dictate platform, unfortunately, however I am willing to let older browsers (e.g. pre IE7) display things suboptimally. It should work in IE7, FFX3, and Safari 3.
Each flash will have its own block element, as in the example above, so some can be centered and some not. Specifying an additional class on the flash div to achieve that is totally fine.
If necessary, an additional div around all the flashes - e.g. <code><div id="flashes> <div class="flash info"/> <div class="flash info"/> ... </div></code> - is OK.
I would like this to be pure CSS if possible, or understand why not if not.