Announcing BonfireJOBS

Posted by Michael Thu, 29 Nov 2007 15:02:00 GMT

We’ve been working on a new project for a while now and we’re ready to start having users. we’d appreciate you checking it out, sending us feedback and blogging about it. Here’s the short short version of BonfireJOBS:

Get paid to find a job. No really.

BonfireJOBS is a new website that rewards candidates for prompt, courteous responses to employer requests.

Post a resume – leave off contact information. Employers who can search our database for free will find you. If they want to make a connection, they will use our system to contact you.

Respond in 24-hours and they pay your price – just for making a connection with them. We’ll mail you a check once a month.

Refer your friends – you can refer both candidates and employers to BonfireJOBS. If you do, you’ll get a piece of the service charge we charge employers on each transaction. By the way, the benefit is mutual, we are giving the person you refer a piece for joining through your referral.

Send feedback to info@bonfirejobs.com.

Posted in  | no comments | no trackbacks

Capistrano 2.0 and Mongrel Recipies

Posted by Michael Tue, 27 Nov 2007 20:15:00 GMT

Capistrano 2.0 doesn’t work with those mongrel recipes we all have nowadays. We scratched our head at some hacks before finding a good solution via the blog world.

Thanks to Megablaix, Inc for posting this code. Works great for us, just tack it onto the end of your deploy.rb and go:

namespace :deploy do
  namespace :mongrel do
    [ :stop, :start, :restart ].each do |t|
      desc "#{t.to_s.capitalize} the mongrel appserver" 
      task t, :roles => :app do
        #invoke_command checks the use_sudo 
        #variable to determine how to run 
        # the mongrel_rails command
        invoke_command "mongrel_rails cluster::#{t.to_s} -C #{mongrel_conf}", :via => run_method
      end
    end
  end

  desc "Custom restart task for mongrel cluster" 
  task :restart, :roles => :app, :except => 
       { :no_release => true } do
    deploy.mongrel.restart
  end

  desc "Custom start task for mongrel cluster" 
  task :start, :roles => :app do
    deploy.mongrel.start
  end

  desc "Custom stop task for mongrel cluster" 
  task :stop, :roles => :app do
    deploy.mongrel.stop
  end
end

Posted in , , ,  | no comments | no trackbacks

MacBook Seagate drive problems

Posted by Michael Tue, 27 Nov 2007 19:13:00 GMT

According to an Appleinsider article today, certain Seagate drives, specifically those with model numbers ST96812AS and ST98823AS are flawed and can cause data loss.

Make sure you back them up and get them replaced.

To see if you have an affected drive:

  • click the apple icon on your menu bar
  • select “About this mac”
  • click “more info…”
  • look at the drive model in the Serial-ATA section

Email support@imapenguin.com if you need assistance.

Posted in  | no comments | no trackbacks

VMWare Server 2.0 BETA

Posted by Michael Thu, 15 Nov 2007 17:05:00 GMT

We’ve been testing the 2.0 Beta release of the free VMWare server. We’ve been using the 1.x series in both development and production since it was called GSX server and are very impressed with the 2.0 version.

Our favorite feature is the web based administration console. With a firefox plugin, you can now do what the desktop version could do and more.

Here’s a screenshot:

vmware webshot

We’re available at support@imapenguin.com if you’re interested in how this version will affect your current VMWare servers or are interested in how virtualization can work for you.

Posted in , ,  | no comments | no trackbacks

Android SDK Available now

Posted by Michael Mon, 12 Nov 2007 16:22:00 GMT

Get it here, while it’s hot off the presses. I know, we’re such nerds…

Here’s an emulator screenshot.

andriod screenshot

Posted in , , ,  | no comments | no trackbacks

Finally, hope of an open phone platform

Posted by Michael Mon, 05 Nov 2007 13:28:00 GMT

We penguins have been discussing publicly since we first started developing on mobile back in 2001 that mobile phone apps will continue to largely suck until some major players come up with a reasonably open platform. That was finally announced today:

Posted in  | no comments | no trackbacks

Upgrading Ubuntu servers from feisty to gutsy

Posted by Michael Sat, 03 Nov 2007 17:26:00 GMT

Upgrading is a snap. Do:

sudo sed -e 's/\sfeisty/ gutsy/g' -i /etc/apt/sources.list
sudo apt-get update
sudo apt-get dist-upgrade

Posted in  | no comments | no trackbacks