Archive for December, 2005

Cuisinart DGB-500 Coffee Maker Review

December 30th, 2005 | Category: General, Tech

Cuisinart DGB-500 (black)
For Christmas, I got one of these bad boys to fulfill my caffeinated cravings. Needless to say, I’m impressed. Here’s some of the highlights:

  • built-in grinder
  • programmable timer
  • auto shutoff
  • built-in water filter
  • permanent coffee filter included

Also, all of the removable parts (grinder apparatus, coffee and water filter parts) are all dishwasher safe. The directions are clear and easy to follow to get things setup. If you like truely fresh coffee with minimal hassle, this unit is great. The only minor gripe that I have, is that the grinder makes a lot of noise, but it only runs for about 20 seconds.

On Cuisinart’s web site, it lists for $150, but I got mine from Bed Bath & Beyond for about $100. There’s also a stainless-steel model for $50 more.

Git yo java on!

No comments

Easiest way to get Vim colors in AIX

December 29th, 2005 | Category: AIX, Opensource

Put this in your .vimrc:

:if has("terminfo")
: set t_Co=16
: set t_AB=Esc[%?%p1%{8}%< %t%p1%{40}%+%e%p1%{92}%+%;%dm
: set t_AF=Esc[%?%p1%{8}%< %t%p1%{30}%+%e%p1%{82}%+%;%dm
:else
: set t_Co=16
: set t_Sf=Esc[3%dm
: set t_Sb=Esc[4%dm
:endif

(Note: the Esc’s should be replaced with a real Esc (Ctrl-v Esc).)

This should give you sixteen-color support if you are using an xterm (or a derivative, like rxvt, konsole, etc.) that supports color (the standard xterm in AIX 5.3 does not appear to support color). At least it did for me in the 30 seconds I took to test it. You can also change TERM:

TERM=xterm-color (only supports eight colors)
or
TERM=xterm-16color

If you make these changes to TERM though, you will most likely run into problems with other tools (like man and telnet) that won’t know about this terminal type, unless you update the terminfo database. The .vimrc code is courtesy of the excellent help in vim.

No comments