Railscasts – Formtastic Part 1 & 2

November 2, 2009

This is more like it:Railscasts – Formtastic Part 1 and Part 2.


Soap4R Online RDoc Documentation

October 22, 2009

The Ruby Soap4R API docs at http://dev.ctor.org/doc/soap4r/ are way out of date compared to the most recent gem. Don’t use them. Use gem server to view the rdocs locally.


7 Things I Wish I Had Known About jQuery

October 14, 2009

On Your Best Behavior: Prototype, LowPro, and Responsible Scripting | The Thoughts of Robots

October 14, 2009

git pull origin master config

October 14, 2009

Configuring origin master in git: git pull origin master config


Curb on RailsMachine Cent OS 64-bit

October 8, 2009

Today I was having trouble installing the Curb gem on a Rails Machine 64-bit Cent OS server. Then I found this:

yum -y install krb5-devel e2fsprogs-devel libidn-devel openssl-devel
zlib-devel

Found it here:
http://groups.google.com/group/curb—ruby-libcurl-bindings/browse_thread/thread/cb50d150424b4fe5


Soap4R’s Online Docs not Up-To-Date

June 19, 2009

Wondering why I couldn’t find SOAP::Mapping::LiteralRegistry and SOAP::Mapping::EncodedRegistry in the online Soap4R docs, I finally fired up the gem rdoc server. Sure enough, there they are. So, if you need to look at Soap4R’s rdocs, don’t view them online.


CouchDB Replication

May 6, 2009

Because CouchDB provides an easy way to do offline replication, people can mirror your hosted application for personal use, and sync back later when they’ve made changes.books.couchdb.org/relax/hosted-applications

This has wonderful work-flow implications compared to apps using relational databases for storage.


Cucumber

April 30, 2009

The more I use Cucumber on the Blacklight project, the more I like it. Sometimes, when I’m feeling lazy, it seems that it’s just taking up my time. But every time I use it I’m glad I did. Cucumber holds my hand as I write my features and scenarios. Write scenarios, watch them fail, copy-paste the output to a step, write the application code, pass, move on. When I’m done, I’ve got running code that specifies a feature and its scenarios. This really paid off the other day when I was refactoring the code behind Blacklight’s search history feature.


Successful Lisp

April 13, 2009

I’ve been using this as my introduction to Lisp: Successful Lisp. So far I’m finding it to be a wonderful resource.