Current rates of RM 99 will be lowered to RM 66 for unlimited data usage every month. Current customers will automatically have their rates lowered as well. Source: MyPDACafe forums.
Archive for October, 2007
2 more reasons to be exact - IMAP IDLE and double the storage (now at ~4.5GB).
GMail certainly shook the free webmail arena not too long ago. Remember the 10 - 20 MB of storage we were getting? And the ridiculous charges for POP access? Thanks to competition (read: GMail), we now have features that is comparable to those of paid email services. In fact, I suspect that GMail’s uptime is better than some of the paid email services. That’s why I don’t use my hosting’s email anymore. I’m also sorry to say that GMail walks all over my company’s email services. Uptime, speed, features, ease of use, better interface, you name it. But what I’ve found most invaluable is that even though I’ve got close to 1GB of email stashed right now in GMail, I’ve never had an issue with retrieving a particular email thanks to the search functionality. Most of the time however, I rely on its excellent and intuitive labeling. Imagine categories on steroids. So if you find email is your poison, check out GMail.
P/S: I cheated. I admit the plain vanilla GMail can be improved. And it has been (Firefox only).
I’ve recently seen first hand how Maxis treats its customers. First let me put things into context:
- Maxis offers wireless broadband for RM 98 for 3.6Mbps
- Because it is wireless, connection speed can get a wee bit inconsistent, depending on area
- Maxis offers ONLY a seven day trial period
- After which, you are required to continue the service for 18 months
- At the end of the 18 month contract, the service will AUTO-EXTEND for another 18 month unless you write in a month in advance
- There is no way of canceling your subscription should the 7 day trial period has lapsed
Now before you say caveat emptor, most of the time, the dealer or sales person pushing this service does not in anyway highlight this which is unfair. The terms and conditions of the subscription is also not made apparent to the consumer.
Basically, Maxis is banking on the consumer’s naiveness to rake in big money from its broadband business. A friend of mine recently highlighted this to me (he wishes to terminate the subscription due to the paltry download speed of 7 to 8kbps). Judging from the post at the blog section of The Star, and Google search results, it looks like problems with Maxis broadband isn’t something new.
If anyone know how to resolve this quickly, please feel free to let me know via the comments section. Also, spread the word to any of your friends that is thinking about signing up with Maxis Wireless Broadband. At the very least, try out within the trial period of 7 days, cancel if anything goes wrong.
I’m wondering though, what happens to the poor consumer who suffers connection issues a few months down the line. Is it fair to have such a contract that puts the consumer in such a disadvantage? See the screenshots below of Maxis Wireless Broadband Terms & Conditions.


Buyers beware!
Here’s a command that’ll show CPU, RAM and your PCI peripherals installed. Tested on Solaris 9 but according to this blog (which is where I got the command), it should work on Solaris 7 up to Solaris 10. No root privilege is needed.
/usr/platform/`uname -i`/sbin/prtdiag
Problem
Even though tomcat5.5 is installed and *appears* to be running (ps -ef | grep tomcat returns an entry) when I entered the correct URL, nothing comes out. Strange, I thought. Turns out, it’s NOT strange. It’s just one of those things that is supposed to work that doesn’t when using Linux. Oh well…
Fix
See here - Can’t start Tomcat on Ubuntu Feisty Fawn. Also, be sure to install the admin and webapps applications as well (sudo apt-get install tomcat5.5-admin tomcat5.5-webapps). Then restart tomcat to see the if it works.
Having embarked on a simple freelancing project, I had a need to setup a CVS server. Needless to say, I chose to use Linux since it’s free and is very lightweight when running headless. Of course, never having setup CVS before, I fumbled around before giving up. Next up, Google. Found an excellent post - Ripple’s Blog: CVS server on Ubuntu. Seeing that the blog was last updated in 2006, I figured I better copy the thing down. So here it is, I hope it help can help others.
Install the CVS server:
sudo apt-get install cvsdWhen prompted in the cvsd installation process for Repository, type in “/cvsrepoâ€.
Now that the cvsd installation in complete goto /var/lib/cvsd
or seeking for a change(or if there is a new version of cvs updated):sudo cvsd-buildroot /var/lib/cvsd
If the folder cvsrepo does not exist, then create it ..
sudo mkdir cvsreposudo chown -R cvsd:cvsd cvsrepo
and then initilize the repository
sudo cvs -d /var/lib/cvsd/cvsrepo initcreate a user and password
sudo cvsd-passwd /var/lib/cvsd/cvsrepo +username
sudo vi //var/lib/cvsd/cvsrepo/CVSROOT/config
Change “SystemAuto=no”
Test
cvs -d :pserver:username@localhost:/cvsrepo login
cvs -d :pserver:username@localhost:/cvsrepo checkout