Archive

Archive for August, 2008

Reiser guilty and sentenced to 15 years

August 31st, 2008

Hans Reiser, developer of the ReiserFS, has been found guilty. He has actually pointed the authorities to the grave of his wife. So there is little doubt left that he is quilty.

I’m running his filesystem on my machine, that feels weird.

Linux, Personal ,

Funny

August 29th, 2008

Open source and exchange

August 27th, 2008

The man is making sense. There is no alternative for exchange in the opensource. Not for the server, and not for the client. It’s a sad thing because it makes acceptance of linux in the business world tough, if not impossible.

If Ubuntu is serious about the #1 bug, start thinking about this first: what software stack do you need to be a competitor to M$? That will include business software, quite a lot I think.

Enterprise 2.0, Opinion, Ubuntu

Nemo filemanager

August 27th, 2008

I’ve been searching for a new approach to filemanagement for a while now. In my search I ran into Nemo. That’s a pretty interesting idea. It organizes your files grouped by date. I don’t know if that works, you loose the possibility to make your own structure. I like to keep a project oriented structure in my files, I’m not sure the date thing would work.

But at least somebody is thinking of other solutions then the directory thing which sucks for years already. My project directory contains about 8500 files, and that’s the from the last two years only. How am I going to find anything in that? The Google approach is the best so far: just search. Sadly there are very little desktop client that really enable this. Google Desktop is too clumsy and takes too much CPU. Deskbar is rubbish, at least I can never find what I’m looking for. Tracker… Nice try.

Are there any alternatives? Tagging sounds promising. If I can tag my documents, preferably in a visual way (drag some existing tags to it, or something). Then some tag cloud to browse… Maybe it would work.

Then I was playing with Cairo Dock. It took me hours to get it to do what I want. The good thing is: it can do what I want, the bad thing is: it takes a lot of time. The config gui is absolute crap. Anyway, it does work, that’s cool!

GUI, Linux ,

New theme: elementary

August 26th, 2008

The new Elementary theme is pretty good. I don’t like the GDM theme and the scroll bars have reversed light and dark, but the overall look is quite good.

Apparently it’s really complicated to create a dark theme that still works. There are a lot of themes available but they all have a weak spot. This one is working so far…

I’m using AWN right now, but I’m switching to Cairo Dock. Man, what a huge amount of configs!

GUI, Linux ,

Learning how to run a business

August 24th, 2008

the road to successI never wanted to start a business, but just like everybody who has been a professional for some time I do have ideas about how to run a business. Personally I think a business is about creating a mindset in your employees. Try to think how you would like you clients to be treated and train your employees to comply to that. Me personally, I would like my supplier to learn. Never make the same mistake twice, wouldn’t that be great?

In every business you have to make decisions. Usually between money and something. Money and quality, money and people, money and … Whatever. Of course money is an important driver for your business, but there are other drivers. I think the most important one is: keep your business alive. That means: LEARN!

If you don’t learn as an entrepreneur you’ll never run a successful business. Learn from your successes, mistakes, competition, employees, friends, it doesn’t really matter: you have to watch and learn. The funny thing is I’ve had a couple of employers and they all tend to forget instead of learn. It’s probably easier to push a mistake away instead of writing it down at the top of your list of things to improve. “Human nature”?

Frustrating, but I still don’t want to be an entrepreneur. Let other people show that they can make something work. I’ll help them, and keep reminding them to learn.

Opinion, Personal ,

CSS stylesheets are more intelligent then I thought

August 24th, 2008

Who would have guessed that you could do this with a stylesheet:

a[href $='.pdf'] {
 padding-right: 18px;
 background: transparent url(icon_pdf.gif) no-repeat center right;
}

Read more

GUI, Web ,

Root themes, etc.

August 17th, 2008

Did you even notice that applications you start as root (for example: synaptic) look pretty crappy? I noticed it often, but I never came to the obvious conclusion: the themes and icons are not available when you’re root since you installed them in your home folder.

Just executing:

sudo ln -s ~/.icons /root
sudo ln -s ~/.themes /root

Fixes the problem. It is not a beautiful solution, but it works perfectly!

GUI, Linux

GUI improvement

August 7th, 2008

Why are we still working with menus in our desktops? It’s just about the most stupid way to give access to features in an application. Menus don’t give the user the possibility to ‘ask’ an application if a feature is available. If a feature is hidden somewhere deep the user might even never find it.

I’m pretty sure interaction designers thought a lot on how to replace menus. But I still see the concept coming back in every application an every website.

Looking forward to the web 3.0 ideas: why don’t we at least have a way to search in the features that an application provides? Why can’t I search in a menu? Better then that: why can’t I search for a feature? I’d like to enter in a word processor: “paper size” and then I want to see the dialog where I can set the paper size. I don’t want to enter the help, search, and get an explanation where I can do what I just found! That’s how we had to solve it in the 80′s, but applications should be able to do a bit more now.

Enterprise 2.0, GUI ,

Less is more?

August 3rd, 2008

Ok, so I spend another day configuring my Ubuntu… My girlfriend was out all day and we had rain in Amsterdam, what else is there to do then reconfigure everything you’ve configured a thousand times before?

So I set of to figure out if I could get my desktop to work without Compiz. I wanted this because Compiz wants your virtual desktop to be smaller then 2048 pixels, which sucks. The thing keeping me from just turning Compiz off was, please don’t kick me, Google Gadgets. I really love that little app, but it looks like total crap without a compositing window manager.

Then I remembered that Gnome 2.22 (the default in Ubuntu 8.04) has ‘some’ compositing features. Some searching gave me this:http://library.gnome.org/misc/release-notes/2.22/#sect:metacity. That works just fine, Google apps does still have a transparent background.

Cool! So now I can disable Compiz (Appearance -> Visual Effects –> none). With my setup that also killed the <Alt>Tab – windows switch. That is solvable in the Keyboard Shortcuts under the remarkable name of: “Move between windows with popup”. It took me 30 minutes to find that…

With that done, I wanted to have the fn-f7 of my Sony to work as it was meant to. It should switch through the different monitor settings possible: internal, external, both, mirrored… I found a script that does this perfectly: http://www.thinkwiki.org/wiki/Sample_Fn-F7_script

Having that script it was easy to add a acpi key event that calls the script. I created two scripts:

Download sonyvideoswitch.sh and move it to /etc/acpi

  • sony-videoswitch:
# /etc/acpi/events/sony-brightness-up
event=sony/hotkey SPIC 00000001 00000012
action=/etc/acpi/sonyvideoswitch.sh toggle

Create sony-videoswitch in /etc/acpi/events/.

NOTE: don’t forget to add the Virtual to your SubSection “Display” in /etc/X11/xorg.conf. This should contain the maximum virtual desktop.

GUI, Linux, Ubuntu ,