Oct 29, 2011

Firefox and Microsoft, sitting in a tree. K-I-S-S-I-N-G!

Going through the usual RSS feeds on weekend to day and I stumble into this: Firefox with Bing. Basically, it's a special Mozilla Firefox version which uses Bing as the default search engine. I thought, what's the big deal, you can always change the default search engine anytime. Then I read this: http://www.muktware.com/news/2827 and thought that there may be some deal with it.

I read on and decided to check it out the website at www.firefoxwithbing.com and this is what I get (screenshot below). Note that I am doing this on a Debian machine.


And there it is folks! The very first web page that greets a Debian user: discrimination! And we all know it was Microsoft's IE that brought down Netscape Navigator (which was owned by Mozilla).

Oct 27, 2011

The Gospel According to Biff, Christ's Childhood Pal

After more than 2 years of owning the book, I finally finished it today.

The book is about how Biff a.k.a. Levi recollects and writes a book on the life of Jesus (Joshua in the book) during their childhood. Biff is, according to this book, Joshua's best friend.

Having been born into Christianity, I was rigorously taught about the Bible and the Catholic faith. The most reiterated stories from the Bible are taken from the synoptic gospels of Mark, Matthew and Luke as well as the canonical gospel of John. But if you have read these or are at least familiar with these gospels, then you'd be keen to observe that they tell the story of Jesus from the age of 30+ till his death. I personally feel that there is a gap of not knowing exactly what happened from age 1 through 29. That's where Christopher Moore comes in.

"This story is not and never was meant to challenge anyone's faith; however, if one's faith can be shaken by stories in a humorous novel, one may have a bit more praying to do." ~ Christopher Moore

Contrary to my first impression when I picked up this book, I somehow found it to be enjoyable to read. Having read some Dan Brown books, it's not hard to stereotype this book as something that strikes the same chord -- blasphemy. Unlike the Da Vinci Code, where Christ was portrayed to have (secretly) married Mary Magdalene and had children, I realized that the author did not want to stir controversy in this book but to just create something fun to read. It was really creative how the author used the 3 wise men who visited Jesus on his birth as the instruments of knowledge to prepare Him for His future as the messiah. And did I mention that the book was also humorous?

I liked the ending of the book, where it showed how Biff dealt with Joshua's death -- truly dramatic.

If you are a Christian with an open mind (and sound faith), then I suggest you read this book. If however the title alone already questions your faith or somehow irritates you, then, as I quoted the author above, one may have a bit more praying to do.

Sep 4, 2011

The best way I found to determine when I installed my Linux distro

# tune2fs -l /dev/sda1 | grep cr

This returns:
# Filesystem created: Thu Aug 25 06:01:44 2011

Swap /dev/sda1 to your specific partition.

Do you know of any other way? Let me know.

ALWAYS ON my mobile

I tried using the ALWAYS ON bandwidth based plan from Smart Telecommunications. Using my entry-level smartphone, I tried out the PhP300 variant which gave me 250MB worth of bandwidth valid for 30-days.

Aug 29, 2011

How to make the trackpoint + middle button = scroll function for a X32 Thinkpad and Debian Squeeze

I have been using an X32 Thinkpad for some time now and I have never really found time to configure the "Trackpoint + Middle Button = Scrolling" to work. I wasted around an hour today to get this working. From creating a /usr/share/X11/xorg.conf.d/20-thinkpad.conf file (which didn't work) to creating a /etc/udev/rules.d/99_trackpoint.rules rule for udev (which didn't work) to creating the most generic X11 configuration file, the /etc/X11/xorg.conf, which also didn't work.

Long story short, to make it work, it was very simple using xinput but note that these steps may be specific to Thinkpad X32 and Debian Squeeze.

First, create a ~/.xsessionrc and the put the ff. lines inside the file:
# Enable vertical scrolling
xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 8 1
xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Button" 8 2

(Optional)  


# Enable horizontal scrolling xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Axes" 8 6 7 4 5

Do restart xorg (or just restart your laptop) and it will work (it worked for me).