Easily run an autoscaling, load-balanced, monitored failover-safe cloud computing cluster on Amazon’s EC2 cluster on open-source software!
read more | digg story
Entries Tagged 'ruby' ↓
PoolParty! An Open Source tool for managing EC2 clusters
June 5th, 2008 — ruby
PoolParty! An Open Source tool for managing EC2 clusters
June 5th, 2008 — ruby
Easily run an autoscaling, load-balanced, monitored failover-safe cloud computing cluster on Amazon’s EC2 cluster on open-source software!
read more | digg story
iPhone SDK, with IB
March 28th, 2008 — ruby
Shortly after the initial release of the first iPhone SDK, Apple quickly followed it up with a second release just one week later that includes the interface builder.
Seriously:
http://developer.apple.com/
Hurray!
March 12th, 2008 — ruby
I’ve moved to LA, finally! Hurray
Check out my recent works either at:
http://blog.xnot.org
http://guerillaimprov.com
http://iowest.com
http://sohotandsexyionlyneedoneshoweraweek.com
Oh yeah, and the iPhone SDK is OUT!
Effortlessly farm work to an EC2 instance without batting an eye!
February 20th, 2008 — code, ruby, rails, tutorial
We’ve (Ron Evans and myself) have been working hard to release a new gem called ProcessorPool that uses EC2 and S3 to run your processor heavy-lifting!
Check it out at Blog @ CitrusByte
Rails without a database
December 29th, 2007 — code, ruby, rails
Despite all other options, I decided to write a small project in Rails. But, this project is so small, there is really no need to store any information in a database!
Now, with Rails 2.0, it’s easy to accomplish!
The only real thing you have to do is add this line to your config/environment.rb:
config.frameworks -= [ :active_record ]
Cake!
I tend to remove the database.yml file, just to remind myself I’m not using a database!
Now Ruby beats PHP in speed and setup!
October 18th, 2007 — ruby
A thread-friendly, super-speedy Ruby web-application framework can now be built faster than heating a burrito!
read more | digg story
Classy web-development dressed in a DSL (EXPLAINED)
October 18th, 2007 — ruby
The blazing-fast, thread-safe micro-framework was released last week! A new Sinatra resource page has been put up here at http://www.xnot.org/sinatra/
Great for facebook apps and other speed-necessary web-apps. An entire application can be contained in one file!
read more | digg story
A ruby snippet worth mentioning
October 14th, 2007 — ruby
Here’s a snippet of code that I wrote when developing a particular feature for a client of mine.
class String
def ^(h={})
self.gsub(/:([w]+)/) {h[$1.to_sym] if h.include?($1.to_sym)}
end
end
(that regex should be /:([\w]+)/, thanks Kirill for the heads up!)
Wha?
p "Hello :word" ^ {:word => "World"}
Hope this comes in handy!
Oh and…
Stay tuned for the Sinatra tutorial. It’s on its way. In final deliberations. One more draft…
Anxious yet?
Rspec with edge rails… (rev 7468)
September 12th, 2007 — ruby, rails, bdd
If you are running on edge rails with an app… lately, we’ve run into the error:
NameError: uninitialized constant ActionView::Helpers::JavaScriptMacrosHelper
YUCK!
Since that’s located in the spec plugin, I simple just commented it out…
Line 31 (rspec_on_rails/lib/spec/rails/dsl/behaviour/helper.rb)
Change
include ActionView::Helpers::JavaScriptMacrosHelper
to
# include ActionView::Helpers::JavaScriptMacrosHelper
Couldn’t be more simple.
Now… back to development.
Hope this helps someone else out there in google-land.