Daikini

We're human after all.

svn.roundhaus.com SSL Certificate Renewed Today

Posted by Jonathan on April 19, 2008 at 10:20 AM

I’ve renewed the svn.roundhaus.com SSL certificate today which means that the subversion client may prompt with an “Error validating server certificate message”.

This is correct and the proper solution is to either accept (t)emporarily, which means the subversion client will prompt again next time it connects to svn.roundhaus.com, or to accept (p)ermanently, which means that the subversion client will not prompt again with this message until next year when the certificate is renewed again.

If this isn’t clear or there are any questions please email support at roundhaus.com.

Error validating server certificate for 'https://svn.roundhaus.com:443':
 - The certificate is not issued by a trusted authority. Use the
   fingerprint to validate the certificate manually!
Certificate information:
 - Hostname: svn.roundhaus.com
 - Valid: from Sat, 19 Apr 2008 23:09:14 GMT until Wed, 20 May 2009 23:09:14 GMT
 - Issuer: Equifax Secure Inc., US
 - Fingerprint: 59:39:e8:5c:2c:20:6f:4b:25:7c:96:61:1b:a9:57:ff:0a:5e:34:4d
(R)eject, accept (t)emporarily or accept (p)ermanently? p

MountainWest RubyConf 2008 Presentation

Posted by Jonathan on March 31, 2008 at 12:21 PM

I had an unbelievable time at MountainWest RubyConf this year. I’d say it was by far the most enjoyable conference I’ve been to.

Speaker Badge

The slides and demo application for my presentation “Using Amazon’s Webservices From Ruby” are available on github.

I believe the video for the presentation will be available from Confreaks later this week. I’ll update the post with a link when I get it. You’ll be able to get to videos of all the presentations here when they are ready.

UPDATE 04/03/2008: Presentation is now available.

RoundHaus Maintenance

Posted by Jonathan on February 20, 2008 at 07:34 AM

RoundHaus will be going down for maintenance at 6:40am MST for approx. 20 minutes.

I’ll post an update when it is back up.

Update 7:06am MST – RoundHaus maintenance has been completed

Comments: 0 (view/add your own) Tags: (none)

RoundHaus Plan Upgrades

Posted by Jonathan on November 30, 2007 at 09:50 AM

I’ve upgraded the plan project limits for RoundHaus. The breakdown is as follows:

bronze_plan.number_of_projects  # => 3
bronze_plan.update_attribute(:number_of_projects, 10)  # => true

silver_plan.number_of_projects  # => 10
silver_plan.update_attribute(:number_of_projects, 25)  # => true

gold_plan.number_of_projects  # => 30
gold_plan.update_attribute(:number_of_projects, 50)  # => true

SimpleHighlight Plugin Updated

Posted by Jonathan on August 26, 2007 at 08:47 PM

Due to the awesome work of S. Brent Faulkner the SimpleHighlight plugin now supports theme selection and turning on/off line numbering on a per code block basis. Thanks Brent!

   1  <code theme="mac_classic" numbers="no">
   2  class Post
   3    has_many :comments
   4  end
   5  </code >
class Post
  has_many :comments
end