The Scala Programming Language
Submitted by jimthunderbird on Tue, 06/29/2010 - 14:56.- Login to post comments
MySQL: How do you set up master-slave replication in MySQL? (CentOS, RHEL, Fedora)
Submitted by jimthunderbird on Tue, 06/29/2010 - 08:03.- Login to post comments
MySQL: How do you set up master-master replication in MySQL? (CentOS, RHEL, Fedora)
Submitted by jimthunderbird on Tue, 06/29/2010 - 08:02.- Login to post comments
Dolphin --- Online Dating Software, Social Networking Software, Community Software
Submitted by jimthunderbird on Sun, 06/27/2010 - 20:15.- Login to post comments
5 Tips to Scale Your Ruby on Rails Application
Submitted by jimthunderbird on Sat, 06/26/2010 - 17:21.- Login to post comments
Cache anything (easily) with Rails and memcached
Submitted by jimthunderbird on Sat, 06/26/2010 - 07:22.http://www.ridingtheclutch.com/2009/01/08/cache-anything-easily-with-rai...
When I first heard about memcached I was excited because of the promise of a very fast caching mechanism that could store anything, but was a little frightened by the idea of dipping my toes into the caching world. Isn’t caching hard? Not the actual process of storing something. Expiring from cache is a different story. I’m only going to deal with the first problem.
So, how easy is it? First, get memcached. If you’re running something like Ubuntu this is as easy as:
Simple cPanel XML api call using Ruby
Submitted by jimthunderbird on Sat, 06/26/2010 - 00:41.http://www.rajesharma.com/blog/articles/simple-cpanel-xml-api-call-using...
This is a demonstration of making a cPanel XMP API call via a ruby script.
For this you will require:
# #A working Ruby installation (1.8+, tested with 1.8.5)
# #A working (lib)curl installation, with development stuff (7.5+)
for curl-devel ( development stuff ,if you dont have it), do
$ yum install curl-devel
Then we install ‘curb’.The ‘curl’ module for ruby.
$ gem install curb
Here is the simple demonstration of the API call using Basic Authentication:
File : cp_ruby.rb
Quick install Rails 3.0.pre without using gem
Submitted by jimthunderbird on Fri, 06/25/2010 - 06:39.- Login to post comments
Meld : Diff and merge tool
Submitted by jimthunderbird on Wed, 06/23/2010 - 23:10.- Login to post comments
Compiling Ruby 1.9.1p378 on Fedora 13
Submitted by jimthunderbird on Wed, 06/23/2010 - 22:55.1. Untar ruby 1.91p378 tarball
2. In the untared directory, do wget http://myxman.org/dp/files/fix_stack_not_found.tgz
3. tar zvxf fix_stack_not_found.tgz
4. cat fix_stack_not_found.patch | patch -p1
5. sudo ./configure
6. sudo make
7. sudo make install