search for: newforum

Displaying 10 results from an estimated 10 matches for "newforum".

Did you mean: newform
2006 May 03
6
ActiveRecord and Lost Connection
...keywords varchar(255), created_on DATETIME DEFAULT ''0000-00-00 00:00:00'', PRIMARY KEY (id) ); -------- New Report being run Wednesday 05/03/2006 03:52 AM -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 May 29
1
Init lifecycle and rails
...load and setup a particular object. Also, what about with sessions as well. I would like to call some library when a user session begins and possibly kill that object when the session ends. -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 May 03
7
Business Logic and where to place with rails
...cationController include SystemProcess ... ... Where there is a file called ''system_process.rb'' in my ''lib'' directory. Is this good, bad for rails design? -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 Jun 01
1
Upgrading old rails application for new rails version
...ibrary and things seem to work. Do I really need to update the actual code. Can I update the code? For example, I noticed that prototype is a lot newer version. I would like to update that. -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 May 04
1
Ways to share code among the ''layout''
Is there a way to use the same code accross multiple layouts. Normally, I am associating a layout with a particular controller? Is there a cleaner way. -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 May 29
0
Custom command line libraries for controllers and rails
...en I just allocate an instance in one my controller methods and that is it. Of course, there is one instance per request which is a little wasteful. But, that is my initial approach thus far. -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 Apr 18
0
activerecord(mysql) and hash to unique count
...:first, :conditions => [ "word = ?", w ], :limit => 1) if found found.occurrence = found.occurrence + 1 found.save end # End of Exception end -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 Apr 27
0
Another simple rails application - really only a hour or two
...probably was a hour or so to setup and design the layout and what-not. http://www.newspiritcompany.com:8086/helper_numbers_idea/ http://www.newspiritcompany.com/ruby_rails_descr.html Anyway. -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 Apr 30
2
Give me NIL or null results
...=> [ "created_on desc" ], :limit => @max_links_send, :conditions => [ "numbers_sent_feed_link == nil" ] ) -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 Apr 22
3
How to use Rails and REST
Hi, I just wrote an article on how to easily create a REST API for Ruby on Rails applications: http://www.xml.com/pub/a/2006/04/19/rest-on-rails.html It describes how to create everything from the ground up and includes information on testing your API too. -- Thanks, Dan Kubb