Close and Go BackBack to Viget

Viget Labs Presenting at Rails Conf ‘07

Patrick Reagan
Patrick Reagan, Development Director, February 04, 2007 3

As details about registration were released, we were excited to hear that the proposal Ben submitted (“Building and Working with Static Sites in Ruby on Rails”) was chosen as one of the presentations for the conference.  The material for this talk comes from his work developing and deploying a mini-framework within Rails to handle custom content management and presentation of static content.  This allowed us to deliver a fully functional site to the Alexandria Convention and Visitors Association without the need for them to continue hand-editing their event listings.

Besides the talk he will be delivering at Rails Conf, Ben has been active in the Rails community for quite awhile.  Most recently, he was ranked #8 in the Working With Rails Hackfest competition (sponsored by CDBaby) and has had several patches accepted into the Rails core.

If you’re interested in heading to this year’s conference, local user groups are offering discount codes to help defray the registration cost.  If the current rate of sign-ups continues (1/3 of the seats were filled the first day), this event is sure to sell out quickly!

Greg said on 02/04 at 10:10 AM

Congratulations Ben!
-----

BearXu said on 08/09 at 09:51 PM

I have seen the pdf.
I have to say it’s excellent.
But I puzzled with the last page.Did you guys discuss them in the conf?

Ben Scofield - Senior Developer said on 08/13 at 01:06 PM

That slide was intended to fill some time if no one asked questions - it had points to talk on or go into greater depth on.

Someone did ask the CMS question (why not use Radiant or CoMatoSe?) - the answer is that it’s hard to integrate custom code with fully-built-out CMSs, and they’re often much weightier than the little framework we developed.

Name:

Email:

URL:

Not a robot? Prove it by entering the word below.


Remember my personal information

Notify me of follow-up comments?

A Development Community for Viget Labs and Beyond

Every team member here at Viget Labs strives to be an innovator. We members of the development team are no different - that's why we're constantly engaging in community discussions and exploring the unknown that is the next generation of open-source web applications.

Viget Is Hiring!

Viget has job openings for Ruby Developers, Interns, and Front-End Developers. Learn More »

Recent Comments

Interesting.

I’ve been (mis)using similar behaviour in javascript for years.


var i = 0, car;
while( car = cars[i++]){
// do stuff
}

I suppose that the reason it works is exactly the same reason it works in Ruby ... but in this case I think the code is actually very easy to read.