dmartin's blog

Microsoft openness initiative proves they still don't get it

I welcome efforts by companies such as Microsoft and Sun to embrace openness.  Sun gets it.  They've released Java under the GPL license.  That's a significant contribution to my software freedom, and I will always appreciate Sun for doing so.  As a result, I know I can involve myself in Java as deeply as I need, and never fear my software freedoms can be taken.

Ubuntu Linux on an HP DV9627CL

I was in the market for a laptop, and if I am anything, it's a frugal gadget geek.  I'm always buying gadgets, but I'm cheap about it.  Buy.com had a deal on refurbished HP DV9627CL laptops for $700.  While that's not cheap, it's a pretty loaded laptop, with a 17 inch widescreen, dual core 64bit processor, 2 GB memory, 200 GB HDD, and so on.  This thing isn't super portable, but it's well equipped for a developer like me. 

Asus Eee - Accessing Windows and Linux Desktops Remotely

The Asus Eee is good for many needs, but sometimes it's nice to have access to a full desktop machine from the convenience of your Eee.  Luckily, like most Linux desktops, Eee packs thousands of hidden utilities, including some that let you connect remotely to other computers.

Accessing a Windows desktop

Laptops and Desktops running Linux continue to sell out

When I decided to buy an Asus Eee I had a hard time finding one.  Amazon was sold out.  Buy.com was sold out.  Many of the smaller websites I found were also sold out, and claimed they would be in stock again on some future date.

Asus Eee

For her birthday, I bought Leslee an Asus Eee (pronounced E).  I've had my eye out for an ultraportable laptop for her for a while.  So far, I'd only found very expensive ultraportables.  When this came out, and was available in the $350-400 range, I jumped at it.  For some, the fact that it runs Linux might be a deterrent, but definitely not for me.

Leslee's homework on her Asus Eee in Open Office

JavaScript checking whether a variable exists

JavaScript provides no good way to check if a variable exists.  If you try to use one that doesn't, you get a big fat error.  I've seen some people use:

if (myVar == undefined)

But this only works if the variable has been declared, but wasn't set to a value.  Sometimes, you don't know if the variable was even declared.

Here's some code that solves that: 

try {
      if (myVar) {}
} catch (err) {
      var myVar = "";
}

And the winner of my browser taste test is....Galeon

I've been trying various browsers over the past 6 weeks or so.  I've used Firefox for four years now, since it was named Phoenix, then later Firebird, then later Firefox.  I've enjoyed the run, but I was starting to desire a bit of a change.  Firefox doesn't look as good as the rest of my Gnome desktop, and trying to make

How to get Flash 9 working in 64-bit versions of Galeon and Epiphany

Over the past few weeks, I've been trying browser options beyond Firefox.  I've really enjoyed using the GTK-native browsers Epiphany and Galeon.  They are fast, both in loading and rendering pages.  But, the biggest issue I had is that 64 bit builds of these browsers can't use 32 bit plugins.  And Flash 9 is only available in its 32 bit version.  It's pretty hard to use the web these days without Flash, now that sites like Youtube have pushed Flash beyond advertisements and into the mainstream.

How to get Java Swing apps working under Beryl or Compiz, including Java Web Start

Update: I'm getting reports that this has been fixed in Java 1.6 (aka Java 6).  So, I tested this with the latest Java 1.6 32-bit in Ubuntu Edgy, and apps seem to be working fine under Beryl.  So, you may not need to go to all the trouble below.  The latest Java 1.6 for AMD64 on Ubuntu Edgy, however, still doesn't work for me under Beryl.


 

Sorry, I just realized comment posting was broken

I just realized that comment posting wasn't working.  The Captcha plugin (spam prevention) for Drupal that I've been using was rejecting all attempts to create a comment.  It was in image mode, and I switched to math mode, which seems to be working.

I'm very sorry to anyone who typed in a comment only to be rejected.  I know how frustrating that can be.

Syndicate content