Tilendor

1,170
Reputation
98 views

Registered User

Name Tilendor
Member for 1 year
Seen Nov 19 at 0:24
Website
Location US
Age 27
I'm a programmer & Geek
Nov
18
awarded  Popular Question
Nov
16
answered rake db:migrate running all migrations correctly
Nov
5
revised Rails: Elegant way to structure models into subfolders without creating submodules
Found an even better method
Oct
27
revised Creating a generic HTML header with blocks in Rails
snytax error fixed
Oct
21
comment IronRuby On Rails VS. Ruby On Rails (Getting Started)
E text editor (e-texteditor.com) is the TextMate equivalenton windows, and very superior to scite.
Oct
21
answered Creating a generic HTML header with blocks in Rails
Oct
12
comment Missing template after link_to_remote
and my_partial_form is named _my_partial_form.html.erb?
Oct
9
answered Missing template after link_to_remote
Oct
6
awarded  Notable Question
Oct
6
answered Core dump equivalent for the Rails exception
Sep
23
comment JavaScript + onbeforeunload
Not tried, but make sure your function doesn't return anything at all.
Sep
19
revised Rails: Elegant way to structure models into subfolders without creating submodules
added 4 characters in body
Sep
19
answered Rails: Elegant way to structure models into subfolders without creating submodules
Sep
18
comment What is the worst real-world macros/pre-processor abuse you’ve ever come across?
I'd like to see the macros
Sep
8
answered Create a “playable demo” version of a Rails site?
Sep
6
comment Hide Adsense on localhost
you could go one step further with that helper and use a block def display_ads if ENV['RAILS_ENV'] != "development" yield end end and in the partial: <% display_ads do %> <div> Buy Pepsi </div> <% end %>
Sep
6
answered Any thoughts on Multi-tenant versus Multi-database apps in Rails
Sep
5
comment Accessing associations in Rails
Awesome answer. Spot on.
Sep
2
answered Updating a Javascript Variable with AJAX
Sep
2
answered How do I render two html documents per action?
Aug
16
awarded  Yearling
Aug
3
asked why do I get 24 when adding 2 + 4 in javascript
Jul
22
awarded  Taxonomist
Jul
15
answered Rails/AR find where habtm does not include
Jul
10
comment Why all the Active Record hate?
Using :joins or :includes in the finds IE Customer.find(:all, :include => :contacts, :conditions => "active = 1") will do an SQL join, not a full table scan of either.
Jul
10
comment Why do I have to restart apache to properly refresh a Ruby on Rails view in the browser?
Except in Vista. Mongrel is slow as can be in Vista, use webrick instead.
Jul
1
revised What are some good pop-up dialog boxes for Ruby on Rails
edited tags; edited title
Jul
1
answered Rails - Two-way “friendship” model (cont’d)
Jun
25
answered Simulating a tab keypress using JavaScript
Jun
18
comment Ruby on Rails on Windows XP CTRL+C in console not stopping mongrel
I ran into this problem too. Ctrl+Pause/Break worked wonderfully. This seems to be a new issue with rails 2.3.2. I just upgraded from 2.1.1. If I change my environment to 2.3.2 Ctrl+C doesn't work, change it back to 2.2.2, works great.