From jrubyforge-raleigh-rb at indythinker.com Sun Apr 4 23:12:58 2010 From: jrubyforge-raleigh-rb at indythinker.com (Justis Peters) Date: Sun, 04 Apr 2010 23:12:58 -0400 Subject: [raleigh.rb] TriLUG Meeting Thu 7p: Greg DeKoenigsberg, OLPC, Sugar Labs, and Open Source in Education Message-ID: <4BB9553A.7090509@indythinker.com> April 8 Meeting: OLPC, Sugar Labs and Open Source in Education - Lessons Learned with Greg DeKoenigsberg, Red Hat HQ, April 8th 7pm ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Join us in April when Greg DeKoenigsberg, Senior Community Architect for Red Hat, presents a retrospective on the use of open source in education, with lessons learned from the OLPC project, along with future ideas of collaboration in teaching. Greg is certainly in a position to know what he's talking about - he was a community advisor to the One Laptop Per Child project and a founding board member of the Sugar Labs project. He serves on the advisory boards of several open source advocacy organizations, writes about open source issues, and speaks at open source events worldwide. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ More information can be found here: http://trilug.org/wiki/Meetings_Schedule http://trilug.org/node/103 http://laptop.org/en/laptop/ http://www.sugarlabs.org/ Kind regards, Justis Peters From tj at stank.us Wed Apr 7 12:45:04 2010 From: tj at stank.us (TJ Stankus) Date: Wed, 7 Apr 2010 12:45:04 -0400 Subject: [raleigh.rb] No West End Ruby meetup tonight Message-ID: Just an FYI that we're skipping this month's West End Ruby meetup. The next scheduled West End meetup is May 5th. I'll send out a notice later this month. -TJ From thomas at ravinggenius.com Thu Apr 8 11:13:51 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Thu, 8 Apr 2010 11:13:51 -0400 Subject: [raleigh.rb] Rails 3 view help Message-ID: Does anyone know how to check if a partial exists before rendering it? For instance: def safe_render_partial partial_path partial_path = 'fallback/partial' unless is_valid_partial?(partial_path) render :partial => partial_path end -- Thomas Ingram ><> Raving Genius? - foaming at the brain? 919 449.6305 thomas at ravinggenius.com http://www.ravinggenius.com/ http://www.isittheweekendyet.com/ From nilbus at nilbus.com Thu Apr 8 13:55:11 2010 From: nilbus at nilbus.com (Edward Anderson) Date: Thu, 8 Apr 2010 18:55:11 +0100 Subject: [raleigh.rb] Rails 3 view help In-Reply-To: References: Message-ID: Easiest way is to try and rescue from a ActionView::MissingTemplate exception. def safe_render_partial partial_path begin render :partial => partial_path rescue ActionView::MissingTemplate render :partial => "default_partial" end end On Thu, Apr 8, 2010 at 4:13 PM, Thomas Ingram wrote: > Does anyone know how to check if a partial exists before rendering it? > For instance: > > def safe_render_partial partial_path > partial_path = 'fallback/partial' unless is_valid_partial?(partial_path) > render :partial => partial_path > end > > -- > Thomas Ingram ><> > Raving Genius? - foaming at the brain? > 919 449.6305 > thomas at ravinggenius.com > http://www.ravinggenius.com/ > http://www.isittheweekendyet.com/ > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members -------------- next part -------------- An HTML attachment was scrubbed... URL: From thomas at ravinggenius.com Thu Apr 8 15:41:27 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Thu, 8 Apr 2010 15:41:27 -0400 Subject: [raleigh.rb] Rails 3 view help In-Reply-To: References: Message-ID: Well that works, so thank you. I've been going through Rails source and found template_exists?, but it doesn't check for partials. So far I haven't found the option to specify that. On Thu, Apr 8, 2010 at 13:55, Edward Anderson wrote: > Easiest way is to try and rescue from a ActionView::MissingTemplate > exception. > def safe_render_partial partial_path > ??begin > ?? ?render :partial => partial_path > ??rescue ActionView::MissingTemplate > ?? ?render :partial => "default_partial" > ??end > end -- Thomas Ingram ><> Raving Genius? - foaming at the brain? 919 449.6305 thomas at ravinggenius.com http://www.ravinggenius.com/ http://www.isittheweekendyet.com/ From thomas at ravinggenius.com Thu Apr 8 19:46:24 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Thu, 8 Apr 2010 19:46:24 -0400 Subject: [raleigh.rb] Rails 3 view help In-Reply-To: References: Message-ID: By the way, this is what I was looking for: partial_path = 'fallback/partial' unless template_exists? partial_path, nil, true On Thu, Apr 8, 2010 at 15:41, Thomas Ingram wrote: > Well that works, so thank you. I've been going through Rails source > and found template_exists?, but it doesn't check for partials. So far > I haven't found the option to specify that. -- Thomas Ingram ><> Raving Genius? - foaming at the brain? 919 449.6305 thomas at ravinggenius.com http://www.ravinggenius.com/ http://www.isittheweekendyet.com/ From thomas at ravinggenius.com Fri Apr 16 00:08:02 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Fri, 16 Apr 2010 00:08:02 -0400 Subject: [raleigh.rb] HELP! weird Bundler and/or Rails 3 beta 3 error Message-ID: There is a little back-story, so please bear with me... I have a Rails 3 application that used to be running fine. (Source is linked below.) It started as a Rails 3beta1 app. When beta2 was released, I upgraded without incident. I don't remember if I ran `bundle install` after upgrading or not but I certainly ran `bundle check`. I also upgraded to beta3 without any issues. So far no problems. Tonight I was experimenting with different servers, since WEBrick is so slow. `rails s`, `rackup` and `thin start` all worked fine. Then I uncommented gem 'unicorn'. My system gems don't include unicorn, so I ran `bundle install`, followed by `bundle check`. Everything seemed okay, so I tried `rails s`. Then `rackup`. Then `thin start`. Then `unicorn` and `unicorn_rails`. Everything gave me the same error: "/usr/lib/ruby/gems/1.8/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require': no such file to load -- sqlite_adapter (LoadError)". I commented gem 'unicorn' back out in my Gemfile, and I still get the error. `git diff` and `git status` both confirm that nothing in my project is different from when it would run. How does `bundle install` break things this badly? The error says sqlite_adapter could not be found. I tried to install it, but it doesn't seem to exist. http://github.com/ravinggenius/scratch_pad Does anyone have a solution for this? -- Thomas Ingram ><> Raving Genius? - foaming at the brain? 919 449.6305 thomas at ravinggenius.com http://www.ravinggenius.com/ http://www.isittheweekendyet.com/ From mike at hales.ws Fri Apr 16 09:26:38 2010 From: mike at hales.ws (Michael Hale) Date: Fri, 16 Apr 2010 09:26:38 -0400 Subject: [raleigh.rb] HELP! weird Bundler and/or Rails 3 beta 3 error In-Reply-To: References: Message-ID: I'm thinking the problem will be found in APP_HOME/.bundle/environment.rb. On Fri, Apr 16, 2010 at 12:08 AM, Thomas Ingram wrote: > There is a little back-story, so please bear with me... > > I have a Rails 3 application that used to be running fine. (Source is > linked below.) It started as a Rails 3beta1 app. When beta2 was > released, I upgraded without incident. I don't remember if I ran > `bundle install` after upgrading or not but I certainly ran `bundle > check`. I also upgraded to beta3 without any issues. So far no > problems. > > Tonight I was experimenting with different servers, since WEBrick is > so slow. `rails s`, `rackup` and `thin start` all worked fine. Then I > uncommented gem 'unicorn'. My system gems don't include unicorn, so I > ran `bundle install`, followed by `bundle check`. Everything seemed > okay, so I tried `rails s`. Then `rackup`. Then `thin start`. Then > `unicorn` and `unicorn_rails`. Everything gave me the same error: > "/usr/lib/ruby/gems/1.8/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in > `require': no such file to load -- sqlite_adapter (LoadError)". I > commented gem 'unicorn' back out in my Gemfile, and I still get the > error. `git diff` and `git status` both confirm that nothing in my > project is different from when it would run. How does `bundle install` > break things this badly? The error says sqlite_adapter could not be > found. I tried to install it, but it doesn't seem to exist. > > http://github.com/ravinggenius/scratch_pad > > Does anyone have a solution for this? > > -- > Thomas Ingram ><> > Raving Genius? - foaming at the brain? > 919 449.6305 > thomas at ravinggenius.com > http://www.ravinggenius.com/ > http://www.isittheweekendyet.com/ > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From thomas at ravinggenius.com Fri Apr 16 10:47:04 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Fri, 16 Apr 2010 10:47:04 -0400 Subject: [raleigh.rb] HELP! weird Bundler and/or Rails 3 beta 3 error In-Reply-To: References: Message-ID: Actually that file doesn't exist. The only file in the directory was config; the contents of which are below: --- BUNDLE_WITHOUT: "" Plus after the first project stopped working, I got the exact same error in another (Rails 3) project that used to work. I tried removing the directory, but still nothing. On Fri, Apr 16, 2010 at 09:26, Michael Hale wrote: > I'm thinking the problem will be found in APP_HOME/.bundle/environment.rb. -- Thomas Ingram ><> Raving Genius? - foaming at the brain? 919 449.6305 thomas at ravinggenius.com http://www.ravinggenius.com/ http://www.isittheweekendyet.com/ From mike at hales.ws Fri Apr 16 12:49:09 2010 From: mike at hales.ws (Michael Hale) Date: Fri, 16 Apr 2010 12:49:09 -0400 Subject: [raleigh.rb] HELP! weird Bundler and/or Rails 3 beta 3 error In-Reply-To: References: Message-ID: Strange. I'm assuming your Gemfile has a line like this? gem 'sqlite3-ruby', :require=>"sqlite3" On Fri, Apr 16, 2010 at 10:47 AM, Thomas Ingram wrote: > Actually that file doesn't exist. The only file in the directory was > config; the contents of which are below: > > --- > BUNDLE_WITHOUT: "" > > Plus after the first project stopped working, I got the exact same > error in another (Rails 3) project that used to work. I tried removing > the directory, but still nothing. > > On Fri, Apr 16, 2010 at 09:26, Michael Hale wrote: >> I'm thinking the problem will be found in APP_HOME/.bundle/environment.rb. > > -- > Thomas Ingram ><> > Raving Genius? - foaming at the brain? > 919 449.6305 > thomas at ravinggenius.com > http://www.ravinggenius.com/ > http://www.isittheweekendyet.com/ > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members From thomas at ravinggenius.com Fri Apr 16 13:01:56 2010 From: thomas at ravinggenius.com (Thomas Ingram) Date: Fri, 16 Apr 2010 13:01:56 -0400 Subject: [raleigh.rb] HELP! weird Bundler and/or Rails 3 beta 3 error In-Reply-To: References: Message-ID: I added that, but the problem still remains. I have opened a Lighthouse ticket: https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/4416-help-weird-bundler-andor-rails-3-beta-3-error On Fri, Apr 16, 2010 at 12:49, Michael Hale wrote: > Strange. I'm assuming your Gemfile has a line like this? > > ? ?gem 'sqlite3-ruby', :require=>"sqlite3" -- Thomas Ingram ><> Raving Genius? - foaming at the brain? 919 449.6305 thomas at ravinggenius.com http://www.ravinggenius.com/ http://www.isittheweekendyet.com/ From seancribbs at gmail.com Tue Apr 20 07:27:06 2010 From: seancribbs at gmail.com (Sean Cribbs) Date: Tue, 20 Apr 2010 07:27:06 -0400 Subject: [raleigh.rb] Fwd: [Radiant-Dev] Hiring Radiant/Spree Developers In-Reply-To: References: Message-ID: If any of you are considering/have moved to the DC area and need a job, Sean Schofield is a good guy and it sounds like you'd be able to do a lot of open-source work. Cheers, Sean ---------- Forwarded message ---------- From: Sean Schofield Date: Mon, Apr 19, 2010 at 1:52 PM Subject: [Radiant-Dev] Hiring Radiant/Spree Developers To: radiantcms-dev at googlegroups.com Rails Dog is now hiring experienced Ruby/Rails developers for full time positions. ?Developers will be working primarily on client work related to the Spree e-commerce project. ?This is a great opportunity to work for a company that is passionate about open source. ?MS Word is the only commercial software you are likely to encounter in our office! ?Come join our team and help shape the future of e-commerce. Candidates must be local to the Washington, D.C. Metro Area. Developers will work on site but can expect flexible scheduling and the ability to work from home. ?Our office is located at the Friendship Heights Metro. Prior experience with Spree is not necessary but we do require at least 12 month of experience with Ruby/Rails. ?We offer full benefits including health insurance. Send email to jobs at railsdog.com -- Radiant CMS Dev Mailing List Post: ? ? ? ?radiantcms-dev at googlegroups.com Unsubscribe: radiantcms-dev-unsubscribe at googlegroups.com Group Site: ?http://groups.google.com/group/radiantcms-dev/ From nathaniel at talbott.ws Tue Apr 20 14:14:58 2010 From: nathaniel at talbott.ws (Nathaniel Talbott) Date: Tue, 20 Apr 2010 14:14:58 -0400 Subject: [raleigh.rb] Pre-Meeting Chow Message-ID: New venue this week - Cloo's Coney Island gets rave reviews, and it's right up the "strip" from Ruckus. I'll be there around 5:30, and would love to have anyone and everyone join me to chat a bit and unwind before heading over to Red Hat for the meeting proper. See you there! -- Nathaniel Talbott <:((>< From fmedlin at gmail.com Tue Apr 20 14:17:38 2010 From: fmedlin at gmail.com (Fred Medlin) Date: Tue, 20 Apr 2010 14:17:38 -0400 Subject: [raleigh.rb] Pre-Meeting Chow In-Reply-To: References: Message-ID: In. Just can't get away from the torpedo shapes can we? On Tue, Apr 20, 2010 at 2:14 PM, Nathaniel Talbott wrote: > New venue this week - Cloo's Coney Island gets rave reviews, and it's > right up the "strip" from Ruckus. I'll be there around 5:30, and would > love to have anyone and everyone join me to chat a bit and unwind > before heading over to Red Hat for the meeting proper. > > See you there! > > > -- > Nathaniel Talbott > <:((>< > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rick.denatale at gmail.com Tue Apr 20 14:32:10 2010 From: rick.denatale at gmail.com (Rick DeNatale) Date: Tue, 20 Apr 2010 14:32:10 -0400 Subject: [raleigh.rb] Pre-Meeting Chow In-Reply-To: References: Message-ID: You could have just said "Hot Dog" On Tue, Apr 20, 2010 at 2:17 PM, Fred Medlin wrote: > In. Just can't get away from the torpedo shapes can we? > > On Tue, Apr 20, 2010 at 2:14 PM, Nathaniel Talbott > wrote: >> >> New venue this week - Cloo's Coney Island gets rave reviews, and it's >> right up the "strip" from Ruckus. I'll be there around 5:30, and would >> love to have anyone and everyone join me to chat a bit and unwind >> before heading over to Red Hat for the meeting proper. >> >> See you there! >> >> >> -- >> Nathaniel Talbott >> <:((>< >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members > > > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Github: http://github.com/rubyredrick Twitter: @RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale From sbauman at gmail.com Sat Apr 24 18:07:24 2010 From: sbauman at gmail.com (Shannon Bauman) Date: Sat, 24 Apr 2010 18:07:24 -0400 Subject: [raleigh.rb] Looking for a Ruby on Rails Developer Message-ID: Hey Raleigh RB folks, I'm creating a startup that will be an online marketplace to find Security Professionals (people to do a security audit on your site). We are building the site in Ruby on Rail. I'm looking to bring in someone else for part time contract work to help build the site. Ideally, I would find someone who is interested in working for part cash, and part equity - but this is negotiable. Timeline: I hope to find a person who is a good fit by the end of this coming week, and then have them start as early as May 1st. We hope to have MVP out live my June 1st, with continued work after that as needed. What I'm looking for in a developer: - Someone who is comfortable working on shared code - Someone who can build a very user friendly UI. I don't need them to be a graphic designer - I will bring in someone else for that, but I want the person to be good at building a usable workflow for the end user. - Someone who is interested in web security would be a super bonus It would be a work-from-home gig, but I would want to touch base in person once or twice a week to do mind-melds. If you are interested, shoot me some info (resume, portfolio, whatever). And of course, feel free to shoot me questions if you have any. Much obliged. -shannon bauman sbauman at gmail.com From jay.thrash at pobox.com Fri Apr 30 10:51:11 2010 From: jay.thrash at pobox.com (Jay Thrash) Date: Fri, 30 Apr 2010 10:51:11 -0400 Subject: [raleigh.rb] discounted ticket to RailsConf 2010 available Message-ID: Hi all, Anyone out there wanting to attend RailsConf, but didn't register before the early-bird pricing expired? If so, we have a "Conference Sessions" pass which we can no longer use. Rather than simply cancel the registration and pay the processing fee, I thought there might be someone in the local Ruby community that might want it. According to the conference website, transferring a registration to another person is completely fine. ( https://en.oreilly.com/rails2010/public/register) Because of the processing fee involved if we cancel, we are willing to sell our ticket for even less than what we paid: $650! If you were to buy this pass today, it would cost you $795. Like I mentioned previously, this is a "Conference Session" pass which covers:** - All sessions (Tuesday ? Thursday) - All keynotes - Exhibit Hall & all events held there - All on-site networking events - All BoFs - Lunch (Tuesday ? Thursday) - RailsConf T-Shirt This offer is good through May 5. If you're interested or have any questions, please feel free to contact me via email at jay.thrash at pobox.com cheers, -Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: From rick.denatale at gmail.com Fri Apr 30 13:20:25 2010 From: rick.denatale at gmail.com (Rick DeNatale) Date: Fri, 30 Apr 2010 13:20:25 -0400 Subject: [raleigh.rb] Off-topic, best firmware for WRT-54G Message-ID: I was just curious what people who have these are using these days. I've been running OpenWrt Kamikaze - With X-Wrt Extensions 7.09. I hadn't used this router for a while, relying on a single Airport express for quite a while. Since I got my iPad I needed better coverage of the whole house so I pulled out the old Linksys. I actually turn off the router functions of both of these, and use them more as wireless access points, both wired to the LAN. I'd tried before, and failed to set up wds between OpenWrt and the AEX. I'm pretty sure that I did have both the WRT and AEX running before with the same essid and channel, much as they would be with WDS, but wired. Now that doesn't seem to work, when I tried, the iPad at least, didn't seem to see either, so I switched to two different channels and essids. But this means that devices don't automatically switch to whichever has the stronger signal as I move about the house. So is there a better setup? What about Tomato? Does anyone have any experience or recommendations. -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Github: http://github.com/rubyredrick Twitter: @RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale From mike at hales.ws Fri Apr 30 14:06:33 2010 From: mike at hales.ws (Michael Hale) Date: Fri, 30 Apr 2010 14:06:33 -0400 Subject: [raleigh.rb] Off-topic, best firmware for WRT-54G In-Reply-To: References: Message-ID: I like dd-wrt. One thing to watch out for with WDS is it can really kill your wireless bandwidth. The reason being that there is usually only one radio in wireless devices so your access point has to stop talking to your computer to talk to the upstream access point. On Fri, Apr 30, 2010 at 1:20 PM, Rick DeNatale wrote: > I was just curious what people who have these are using these days. > > I've been running OpenWrt Kamikaze - With X-Wrt Extensions 7.09. > > I hadn't used this router for a while, relying on a single Airport > express for quite a while. ?Since I got my iPad I needed better > coverage of the whole house so I pulled out the old Linksys. > > I actually turn off the router functions of both of these, and use > them more as wireless access points, both wired to the LAN. > > I'd tried before, and failed to set up wds between OpenWrt and the > AEX. ?I'm pretty sure that I did have both the WRT and AEX running > before with the same essid and channel, much as they would be with > WDS, but wired. > > Now that doesn't seem to work, when I tried, the iPad at least, didn't > seem to see either, so I switched to two different channels and > essids. But this means that devices don't automatically switch to > whichever has the stronger signal as I move about the house. > > So is there a better setup? ? What about Tomato? ?Does anyone have any > experience or recommendations. > > > -- > Rick DeNatale > > Blog: http://talklikeaduck.denhaven2.com/ > Github: http://github.com/rubyredrick > Twitter: @RickDeNatale > WWR: http://www.workingwithrails.com/person/9021-rick-denatale > LinkedIn: http://www.linkedin.com/in/rickdenatale > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From nospam at tonyspencer.com Fri Apr 30 14:43:46 2010 From: nospam at tonyspencer.com (Tony Spencer) Date: Fri, 30 Apr 2010 14:43:46 -0400 Subject: [raleigh.rb] Off-topic, best firmware for WRT-54G In-Reply-To: References: Message-ID: <376B7491-DBE1-4D6A-9B82-9E5A05E6DC4F@tonyspencer.com> I'm also running dd-wrt on 2 routers. I chose it primarily b/c VPN support is easier to implement than on Tomato. Installation on this Asus router was easy and has been solid for months: http://www.newegg.com/Product/Product.aspx?Item=N82E16833320030 On Apr 30, 2010, at 2:06 PM, Michael Hale wrote: > I like dd-wrt. One thing to watch out for with WDS is it can really > kill your wireless bandwidth. The reason being that there is usually > only one radio in wireless devices so your access point has to stop > talking to your computer to talk to the upstream access point. > > > On Fri, Apr 30, 2010 at 1:20 PM, Rick DeNatale wrote: >> I was just curious what people who have these are using these days. >> >> I've been running OpenWrt Kamikaze - With X-Wrt Extensions 7.09. >> >> I hadn't used this router for a while, relying on a single Airport >> express for quite a while. Since I got my iPad I needed better >> coverage of the whole house so I pulled out the old Linksys. >> >> I actually turn off the router functions of both of these, and use >> them more as wireless access points, both wired to the LAN. >> >> I'd tried before, and failed to set up wds between OpenWrt and the >> AEX. I'm pretty sure that I did have both the WRT and AEX running >> before with the same essid and channel, much as they would be with >> WDS, but wired. >> >> Now that doesn't seem to work, when I tried, the iPad at least, didn't >> seem to see either, so I switched to two different channels and >> essids. But this means that devices don't automatically switch to >> whichever has the stronger signal as I move about the house. >> >> So is there a better setup? What about Tomato? Does anyone have any >> experience or recommendations. >> >> >> -- >> Rick DeNatale >> >> Blog: http://talklikeaduck.denhaven2.com/ >> Github: http://github.com/rubyredrick >> Twitter: @RickDeNatale >> WWR: http://www.workingwithrails.com/person/9021-rick-denatale >> LinkedIn: http://www.linkedin.com/in/rickdenatale >> _______________________________________________ >> raleigh-rb-members mailing list >> raleigh-rb-members at rubyforge.org >> http://rubyforge.org/mailman/listinfo/raleigh-rb-members >> > _______________________________________________ > raleigh-rb-members mailing list > raleigh-rb-members at rubyforge.org > http://rubyforge.org/mailman/listinfo/raleigh-rb-members > From steve.pinkham at gmail.com Fri Apr 30 16:02:05 2010 From: steve.pinkham at gmail.com (Steve Pinkham) Date: Fri, 30 Apr 2010 16:02:05 -0400 Subject: [raleigh.rb] Off-topic, best firmware for WRT-54G In-Reply-To: References: Message-ID: <4BDB373D.5080400@gmail.com> WDS is not necessary if you have both wired in. Just cable in to one of the switch ports on the non-routing access point. I have my wireless set up on different channels and the same ESSID. Works well under both OpenWRT and the default firmware. I don't have an AEX, but I can say my laptop and iPod Touch do work fine on my wireless in that mode with 2 OpenWRT routers. BTW, might be time to upgrade to something a bit more modern then 7.09. The 8.09 releases up to 8.09.2 included a number of security fixes. Of course, not critical if it's not being used as your external router... I still haven't tried 10.03 wireless on my WRT54GL with the new 2.6 kernel wireless drivers yet, but the 2.4 kernel version works without problems anyway. Rick DeNatale wrote: > I was just curious what people who have these are using these days. > > I've been running OpenWrt Kamikaze - With X-Wrt Extensions 7.09. > > I hadn't used this router for a while, relying on a single Airport > express for quite a while. Since I got my iPad I needed better > coverage of the whole house so I pulled out the old Linksys. > > I actually turn off the router functions of both of these, and use > them more as wireless access points, both wired to the LAN. > > I'd tried before, and failed to set up wds between OpenWrt and the > AEX. I'm pretty sure that I did have both the WRT and AEX running > before with the same essid and channel, much as they would be with > WDS, but wired. > > Now that doesn't seem to work, when I tried, the iPad at least, didn't > seem to see either, so I switched to two different channels and > essids. But this means that devices don't automatically switch to > whichever has the stronger signal as I move about the house. > > So is there a better setup? What about Tomato? Does anyone have any > experience or recommendations. > > -- | Steven Pinkham, Security Researcher | | http://www.mavensecurity.com | | GPG public key ID CD31CAFB |