Archive for March, 2007

 

ant21 on Mar 23rd, 2007IBM ThinkPad T43 track point scrolling on Ubuntu

I just installed Hiweed, an Ubuntu based distributed edition on my ThinkPad T43 yesterday. Unfortunately, track point can not scroll with the blue middle button. But fortunately, there is a solution. According to this guide, add the following lines in “/etc/X11/xorg.conf” and comment the original. After reboot, scrolling works.
Section “InputDevice”
Identifier “Configured Mouse”
Driver [...]

ant21 on Mar 8th, 2007chacha.com

Yesterday I tried chacha. There is a human guide who help me search what I want. What I search for is ruby. Here is our conversation.
Status: Connecting …Status: Looking for a guide …Status: Connected to guide: linda(34978)linda(34978): Welcome to ChaCha!linda(34978): Hello I will be doing all your searching [...]

ant21 on Mar 6th, 2007no such file to load — openssl

Playing with scRUBYt! is not very easy. When I try to run the following example it complained there is no ‘openssl’ lib could found.
require ‘rubygems’require ’scrubyt’
google_data = Scrubyt::Extractor.define do  fetch ‘http://www.google.com/’  fill_textfield ‘q’, ‘ruby’  submit         result ‘Ruby Programming Language’end
google_data.to_xml.write($stdout, 1)Scrubyt::ResultDumper.print_statistics(google_data)
I googled and found maybe need ‘libopenssl-ruby1.8‘. After ‘apt-get install libopenssl-ruby1.8′, it still complained no [...]