search for: ketelsen

Displaying 6 results from an estimated 6 matches for "ketelsen".

2006 Jun 22
18
Ruby on Rails Live CD
...e friendly and helpful guides and tutorials built right in. But we''ll be adding those things over time and we look forward to contributions from the community. The Rails Live CD project was born on Ezra Zygmuntowicz'' blog (http://brainspl.at) and realized with help from Brian Ketelsen. It is based on PCLinuxOS which is a great Linux distribution for creating LiveCDs. It is released under the GNU Public License in the hope that others will contribute, extend and enjoy it. Download your ISO copy today at http://www.railslivecd.org Cheers - Brian Ketelsen *Please use cautio...
2009 Oct 09
1
While we're on the topic
.... I''m curious -- is the F5 straight to unicorn plan a good one? We''ve had no complaints from our customers and great performance, so it''s more of a rhetorical question, my average API response time is a tenth of a second. Are there any traps here? Thanks! Brian Ketelsen
2006 Feb 08
8
[kind of OT] Software Remote connect to MacOS ?
Hi sorry for the slighty out of topic question but I''m sure someone here will be able to answer. Does anyone use some kind of remote connection to connect to MacOS ? I''m thinking of using VNC but I''d love to hear from other (especially secure) alternatives. I''m just fond of textmate, I have a dell laptop which I''d like to use as a terminal. kind
2009 Oct 13
7
Unicorn Nginx Issue
I''ve setup nginx with this server { listen 80; server_name unicorn.local; location / { proxy_pass http://unicorn; } } upstream unicorn { server unix:/Users/mattmongeau/projects/test/unicorn/tmp/sockets/unicorn.sock; } When I run unicorn_rails -c config/unicorn.rb -E development I can access the application just fine on unicorn.local When I run unicorn_rails -c
2006 Feb 10
22
Mongrel 0.3 -- Runs Ruby On Rails
Hello Folks, This is the long awaited release of the Mongrel HTTP library that supports *Ruby On Rails*. I know tons of people have been waiting for it, so I''ve got a few things to lay down first before you get all excited: 1) It''s very very ALPHA support for Rails. It will run a Rails app, and runs my simple apps, but it''s not fast or correct as it needs to
2006 Feb 07
0
oracle scaffolding
I just got Oracle connectivity working on my Mac rails installation, and I started with a simple migration to test. def self.up create_table "computers", :force => true do |t| t.column "description", :string t.column "brand", :string end end def self.down drop_table "computers" end end This seemed to work, but when I