Philips CD4401S/22 Review

Today my new cordless phone for my home arrived. I ordered a Philips CD4401S/22 at internetwarenhuis. The reason I chose this phone is because the handsfree was supposed to be very good. My previous phone was another philips phone, but it occasionally resets for some reason since a few months. Overal it's a descent phone, although there are some things that could be better. Here are my impressions after half an hour:

  • The phone is not white! On all images it is white, but in reality it's gray
  • It has more topweight than bottom weight. My preference is the other way around
  • The blue screen is too bright, can't be adjusted. Without bluelight, it's too dark too read. Also, the display is slow. (LCD)
  • The buttons are a tad too hard to press, but overall they're ok.
  • My previous phone used the green dial button to toggle handsfree. I think that's better
  • If you're in a call, and put the phone in it's cradle, it hangs up! It is possible to dial a number when it's in the cradle and then pick it up.
  • Handsfreemode has a volume treshold, which is annoying
  • Sound quality is very clear. The handsfreemode is excellent
  • The phonesize is perfect. You can hold it in your neck perfectly.
Overall I'm content with the phone, especially because I got it for only 40 euro, and 8 euro shipping. I wish Pilips would do some more usability tests for their "sense and simplicity" slogan. I'd be happy to receive some free products in exchange for feedback.

So what things are important for you when choosing a home/office phone?

Share this:

Awesome video about the web2.0 bubble

Just found this video via http://www.dutchcowboys.nl/video/12117 It's about the web 2.0 bubble duh. Anyay. I love it :) Especially after our Silicon Valley Adventure..

Share this:

StringBuffer / StringBuilder performance improvements

Lately I've been thinking about some (possible) performance improvements for StringBuffer / StringBuilder:

Now, SBs are designed to work with char-arrays, because they are mutable, and if you append a value, you don't need to create extra objects. In most use-cases, an SB will be used to concatenate some (String)values. Most people don't set the initialCapacity, because that requires some extra code. The default cap is 16. Now, let's concat some strings:

sb.append("Hello ").append("Joris"/*user.getName()*/).append(", how are you doing ").append("Today?" /* or night */);

This will do the following:

check capacity for 6 more chars
copy "Hello " chars
count = 6

check capacity for 5 more chars
copy "Hello " chars
count = 11

check capacity for 18 more chars
expand capacity: curcap*2 or newsize -> (16+1)*2 > 5+9 --> newcap = 34
copy "Hello Joris"
copy " how are you doing " chars
count = 29

check capacity for 6 more chars
expand capacity: curcap*2 or newsize -> (16+1)*2 > 34+6 --> newcap = 70
copy "Hello Joris how are you doing "
copy "Today?" chars
count = 6


Ok.. So.. how could we prevent the expanding? If we'd have set the initialCapacity to 40, that wouldn't have happened. But as I said, nobody really does that, except for high performance stuff.

If you create an SB that will keep an linked list (or arraylist and probably a custom implementation) of strings and just add the new strings to the list. You wouldn't have to do all the copying. Only when you invoke toString() (or charAt, or something similar), you will have to create a single string. But by then, you already know how large the string will be!

That way, you prevent temporary array copies, temporary char-array creations and destructions, and therefore reducing GC.

Of course, I haven't tested all this in a real life situation :) If someone has a nice testcase for String concatenation performance, please send it to me. The tests I do are biased ofcourse ^^.

Share this:

Firefox 3 beta 1: slow resizing, and no google toolbar

Well, today I installed Firefox3 . First impressions: it seems faster, but we'll see if the memory leaks / hanging threads / 100% cpu bugs are fixed :)... I don't think they are, because they'd have fixed them in FF2 by now then. One thing I really am missing is the Google Toolbar. I got used to it. I like the gmail / rss notifiers, quickfind and the US-search button. My default google search is Dutch, but sometimes I just check if I can find the things I'm looking for with the US-engine.

I get the folowing error:
Google Toolbar for Firefox 3.0.20070525W could not be installed because it is not compatible with Firefox 3.0b1


2 weeks ago I tried FF3 too, and somewhere I saw that firefox was reporting version 0.0.0, but I can't remember where I saw that :(

Share this:

How not to run a delivery company

Ok, so I ordered a new workstation yesterday, a quadcore 6600 + 4gb ram + 500gb hdd. I chose pay at the door, because transferring from bank to bank takes 2 or 3 days (insane...) and I wanted it here so I could install and test it over the weekend.

The TNT Post guy came at my house and told me:
I could NOT use my atm card. I had to pay cash.
I could NOT go to the atm machine (600 meters from here) to get some cash
I could NOT go after him and pay him (his next few packages were also in the street)
He could NOT go back to my house after his other packages
He could NOT leave the package at the post office, because he HAD to deliver it twice first.

If I order a pizza from Domino's or whatever, I can pay the few euro's by ATM on the spot or pay in advance using iDeal (out Dutch internet payment system)

So basically I'm pissed off right now, because I can't play with my new toy. + I payed extra to get the package here in a day.

Thank you TNT Post, I know I'll be using other companies when in the future I have to send something..

Share this:

No postgresql for symmetricds

It looks like I hadn't read enough about symds. There's no postgresql dialect yet, but I'm thinking of writing one for them. It shouldn't be too much work, and I really need it :) I'll keep y'all posted.

Share this:

Wow.. almost a month ago since my last post! I've been spending some time with my gf, working on a project, and on Armada. We've setup the forums at forum.bloomsix.com so feel free to register :D

I just read about symmetricds.org, and it seems like it does what I want. Basically I have 2 workstations (1 desktop, 1 laptop), and a server (for production and development). Now, maintaining those databases are a pain in the ass IMHO, and I was looking for replication for data and schemas for mysql and postgresql. The problem is, there isn't a good solution yet for this.. I found something for pgsql, but that was linux only, and my workstations are winxp. I hate cygwin, and I hate compiling :)

Tomorrow I'll try to setup replication, and if all goes well, I'll have a cool development database that I can use accross my machines and even without network connection!

Share this:

New chairs

Today my chairs arrived at the store. So now I finally have a dining table with 4 chairs instead of 2 that constantly fall :D
Time to play a game of magic again!

Share this:

Amazing html layoutmanager

Ever wanted html layout to be more like the layoutmanager structure of java? Tired of copying css hacks for liquid columns?
Then check out this prototype based layout manager

I can't wait to create something with it!

Share this:

Amazon S3 SLA!

Today I discovered that Amazon is finally providing an SLA of 99.9% availability. That means max 43 minutes downtime each month.

I think this will be a something a lot of businesses will like. It's kinda hard to sell "I don't know what happens if it goes down" :) And that's what I've been reading on some mailinglists / forums / blogs too.

Read more about the Amazon S3 SLA

Share this:

Outback Jack or Outback Luke?

I've just read the latest posts of my good friend Sander van Velzen. The project he has been working on the last couple of weeks are ending soon. I'm not really a fan of that kind of television shows, but I really enjoyed beauty and the nerd, temptation island, and I think the other one was called who wants to marry a millionaire? Usually I only like the first season

Hmmm blogspot does not support trackbacks. Oh well, here's the link to some pictures.

Share this:

Wharfedale Loudpanels

Last week I bought 2 pairs of Loudpanels by Wharfedale on eBay. I was a bit skeptic about the sound quality at first, because a Wharfedale dealer in Rotterdam told me they didn't really sound very well, and that the product was discontinued (That wasn't the reason though).

Loudpanels are speakers in a picture frame (about 40x50cm). You can put your own photo / poster / whatever in the frame. "No more ugly speakers" for most people, but the only speakers I had were a pair of Behringer Truth monitors at my computer.

The sound quality is pretty much like your average hifi-set. I'm still listening to all sorts of music, but so far they've exceeded my expectations. And that for only 70 euro per pair!

Share this: