Sai Emrys

235
Reputation
73 views

Registered User

Name Sai Emrys
Member for 6 months
Seen Nov 26 at 23:39
Website
Location SF Bay Area
Age 27
http://saizai.livejournal.com/info has the answers
Oct
28
comment Multiple column foreign keys / associations in ActiveRecord/Rails
That 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.
Oct
28
revised Multiple column foreign keys / associations in ActiveRecord/Rails
added 2614 characters in body
Oct
27
revised Multiple column foreign keys / associations in ActiveRecord/Rails
added 43 characters in body
Oct
27
revised Multiple column foreign keys / associations in ActiveRecord/Rails
added 516 characters in body
Oct
27
revised Multiple column foreign keys / associations in ActiveRecord/Rails
added 41 characters in body; added 4 characters in body
Oct
27
revised Multiple column foreign keys / associations in ActiveRecord/Rails
edited tags; edited title; added 56 characters in body
Oct
27
asked Multiple column foreign keys / associations in ActiveRecord/Rails
Oct
25
answered Getting the Hostname or IP in Ruby on Rails
Oct
10
comment Where to patch Rails ActiveRecord::find() to first check collections in memory?
This 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.
Oct
4
asked Where to patch Rails ActiveRecord::find() to first check collections in memory?
Jun
15
comment Ruby: print the code of an arbitrary method (and exec in context)
Well earned. ;-)
Jun
15
awarded  Scholar
Jun
12
revised Ruby: print the code of an arbitrary method (and exec in context)
added 492 characters in body
Jun
12
comment Ruby: print the code of an arbitrary method (and exec in context)
Per 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.
Jun
12
comment Ruby: print the code of an arbitrary method (and exec in context)
Your 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.
Jun
12
comment Ruby: print the code of an arbitrary method (and exec in context)
Fixed 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. ;)
Jun
12
revised Ruby: print the code of an arbitrary method (and exec in context)
fixed bug; added 6 characters in body
Jun
12
comment Ruby: print the code of an arbitrary method (and exec in context)
My 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 done in 1.8 / 1.9. ;-)
Jun
12
revised Ruby: print the code of an arbitrary method (and exec in context)
added 33 characters in body; added 165 characters in body
Jun
12
comment Questions about a career in the IT/Programming industry
If it's for your English class, you might want to spell "career" correctly.
Jun
12
comment In a StackOverflow clone, is it acceptable for Questions and Answers to be separate tables?
I 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.
Jun
12
asked Ruby: print the code of an arbitrary method (and exec in context)
Jun
7
revised Change a finder method w/ parameters to an association
added 161 characters in body
Jun
7
revised Change a finder method w/ parameters to an association
added 1172 characters in body
Jun
7
comment Change a finder method w/ parameters to an association
Re. 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".
Jun
7
comment Change a finder method w/ parameters to an association
... also, AFAICT your code doesn't work. Even adding the necessary :class_name and :foreign_key, your avatar_assets barfs: Unknown column 'users.asset_id' '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.
Jun
7
comment Change a finder method w/ parameters to an association
Also - is there any way that would enable me to do something like: Post.find(1).comments(:include => {:users => {:avatar_asset => :thumb }})?
Jun
7
comment Change a finder method w/ parameters to an association
I 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.)
Jun
6
revised This I used to believe
wikified
Jun
6
asked This I used to believe
Jun
6
asked Change a finder method w/ parameters to an association
Jun
6
revised Good CSS for flashes (aka info messages in Rails, growls in OSX)
added 185 characters in body; edited tags; edited title
Jun
6
comment Good CSS for flashes (aka info messages in Rails, growls in OSX)
I 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. <div id="flashes> <div class="flash info"/> <div class="flash info"/> ... </div> - is OK. I would like this to be pure CSS if possible, or understand why not if not.
Jun
6
awarded  Commentator
Jun
6
comment Good CSS for flashes (aka info messages in Rails, growls in OSX)
Part of the req is that I don't know the dimensions it'll use. Some will be tiny - e.g. "Sorry, Bob not found" - and some will be a mini documentation / introduction to a feature with a whole bunch of text. It should not be dependent on any JS; I'm seeking a pure CSS solution. Will see if Roar's stylesheet does this.