dasil003

1,101
Reputation
95 views

Registered User

Name dasil003
Member for 1 year
Seen 2 days ago
Website
Location Mountain View, CA
Age 31
Web Design & Development: Ruby, Rails, PHP, Javascript, CSS, HTML. Mixed experience with Java, C, C++, Bash, Perl, Haskell, AppleScript. First language: HyperTalk.
Oct
27
answered How can I see the SQL ActiveRecord generates?
Oct
26
answered Thinking Sphinx delta indexing fails in production
Oct
25
answered How to tell which version of a gem a rails app is using
Oct
23
comment What Are the Semantics of Javascripts If Statement
This is the most sensible explanation. The if statement casts to Boolean. Bonus points if anyone can find a spec for this behavior.
Oct
23
comment What Are the Semantics of Javascripts If Statement
Check out the next two answers :)
Oct
23
comment What Are the Semantics of Javascripts If Statement
Boolean(" ") => true Boolean("") => false
Oct
23
comment What Are the Semantics of Javascripts If Statement
Good link, I had Javascript: The Good Parts, but I don't know where it ran off to.
Oct
23
comment What Are the Semantics of Javascripts If Statement
Well, 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.
Oct
23
awarded  Student
Oct
23
asked What Are the Semantics of Javascripts If Statement
Oct
23
accepted Rails / delayed_job - want to load newest version of job class
Oct
22
answered Rails / delayed_job - want to load newest version of job class
Oct
22
answered How to find if range is contained in an array of ranges?
Oct
22
comment How to find if range is contained in an array of ranges?
You 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)
Oct
22
comment How to find if range is contained in an array of ranges?
@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.
Oct
22
comment Is JavaScript ‘s “new” Keyword Considered Harmful?
Fantastic answer.
Oct
22
awarded  Scholar
Oct
22
comment Is there a 0-width way to prevent floated divs from collapsing
Um, that's kind of embarassing I didn't know that.
Oct
22
asked Is there a 0-width way to prevent floated divs from collapsing
Oct
21
accepted Doing a Rails Restful Implementation or Not?
Oct
20
accepted Access to current_user from within a model in Ruby on Rails
Oct
19
answered How different is Scrum practice from Agile Practice ?
Oct
17
answered How to use RewriteRule in Apache to redirect from /abc/ to /abc?
Oct
17
comment Life without JOINs… understanding, and common practices
Here's some interesting technical information about real world distributed systems at Google: perspectives.mvdirona.com/2009/10/…
Oct
17
accepted book about Rails recommendation
Oct
17
awarded  Organizer
Oct
17
revised how to make “ tr” of a table visible using javascript for a checkbox event
edited tags
Oct
17
awarded  Disciplined
Oct
16
answered Mixing php and html
Oct
16
comment What separates a Ruby DSL from an ordinary API
Totally 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.
Oct
16
comment What is the cleverest UI feature you have seen in a website?
Facebook 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.
Oct
16
answered Life without JOINs… understanding, and common practices
Oct
16
answered How can I see the SQL that will be generated by a given ActiveRecord query in Ruby on Rails
Oct
16
comment How can I see the SQL that will be generated by a given ActiveRecord query in Ruby on Rails
I'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.
Oct
16
answered How to use datetime in the condtions of a find/count in Ruby on Rails
Oct
16
answered Ruby on Rails layouts…except and only bug
Oct
15
comment book about Rails recommendation
Actually I'm not familiar with The Ruby Way so I can't really say. The format of the question "How do I..." seems slightly better suited to general programming languages than frameworks. The latter tends to devolve into cookbook-style solutions which I find to be pretty terrible in Rails. However maybe I'm wrong and there's something amazing out there that I haven't heard of. If not, The Rails Way would probably be the place I would start when trying to discover how to do something in Rails.
Oct
15
answered book about Rails recommendation
Oct
15
answered Access to current_user from within a model in Ruby on Rails
Oct
15
comment Access to current_user from within a model in Ruby on Rails
Actually this has a serious flaw in it in production mode that you would never find in development mode. In development the class is reloaded on every request, so the variable would always start out empty. However in production the class stays. jimfish's logic is almost correct, but because of the 'unless c.session[:user].nil?' clause, a non-logged-in user could potentially piggyback on the previous users permissions. If you really want to use this, you should remove that clause.
Oct
15
answered Doing a Rails Restful Implementation or Not?
Oct
15
answered How to gemify a Rails (engine) plugin?
Oct
15
answered after reading Simply Rails 2
Oct
15
accepted rails form_remote_tag and onselect submit…
Oct
15
answered rails form_remote_tag and onselect submit…
Oct
15
answered Escaping HTML in Rails
Oct
15
answered Ruby on Rails and XSS prevention.
Oct
15
revised Any clever workaround to avoid having to type the h method everywhere?
added 37 characters in body
Oct
15
revised Rails - Escaping HTML using the h() AND excluding specific tags.
New plugin
Oct
15
answered Any clever workaround to avoid having to type the h method everywhere?