Archive for the “ruby” category

inotify – Linux File System Activity Monitoring

0Milinda10th Nov 2008c programming, linux, linux tips, php, programming, python, ruby

inotify is a Linux kernel subsystem which monitors Linux file system operations, such as read, write, create and delete. It was included in More »

Ruby Aliasing

0Milinda13th Aug 2008ruby

Aliasing is a powerful Ruby feature that allows more than one method to be referred to by multiple names. This can be used More »

Ruby method lookup(method name resolution) algorithm

1Milinda10th Aug 2008ruby

I found this nice discussion(http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/33615) about Ruby’s name resolution algorithm while browsing through the internet. You can browse through the discussion by clicking More »

Ruby method lookup flow

1Milinda9th Aug 2008ruby

In a previous post I describe the advantages of Ruby method_missing feature. Here is good diagram which shows the flow of Ruby method More »

The importance of Ruby’s method missing concept

1Milinda21st Jul 2008python, ruby

To be frankly, I don’t have any previous experience with Ruby programming. I first looked at Ruby code(WSF/Ruby source), when I started to More »