KDE at FOSDEM 2005 Report

FOSDEM is Europe's biggest meeting of Free Software developers and KDE turned out in force at it last weekend. As well as talks in the main track on KDE and KDevelop, the KDE Developers' room hosted a series of other talks. We also ran a stall and still found time for some hacking.

FOSDEM is a spectacular event. In the capital of Europe over two thousand geeks come together for a weekend of talks, hacking and socialising. One contingent of KDE developers came on a road trip from the Netherlands and spent much of Friday evening spiraling Brussels until we came to the pre-FOSDEM party in Grand Place where we were greeted by the welcome sight of as many litre glasses of Hoegaarden as we could drink. The great and the good of Free Software were there including Alan Cox, possible future Debian Project Leader Matthew Garrett and our own founder Matthias Ettrich.

On the Saturday we set up our stall selling a fine range of KDE t-shirts and badges sporting the new official KDE logo. The first KDE talk was on KDevelop by Harald Fernengel who ran us through the many features of KDE's IDE. We then retreated to our own KDE Developers room for a talk on KOffice discussing the up-coming 1.4 release and how to make plugins for KOffice using KParts.

That evening we went to a centre which trains women to use computers. In return for talking about Free Software and KDE we got internet access and a space to hack for the evening. It was great to see that many of the women were already running GNU/Linux. They mentioned that they would really like Ubuntu if only it came with KDE, which made Jonathan and Andreas smile.

Sunday opened with Matthias's talk on KDE showing how much the Unix desktop has changed since 1996. We are, he says, at a very exciting time in desktop development with challenges and opportunities including Qt4, desktop search, D-BUS and more.

Later in the day our developer's room was busy for the KDE Development Using Python Talk. Programming in Python will slow down your applications by only a second or two but speed up your development time by a factor of 2 or more because the language is so much easier to use than C++. Issues about KDevelop's less than optimal Python support were raised, then swiftly brought crashing down when at the end of the talk Alexander Dymo announced that during the talk he had added Python support for KDevelop's Qt Designer. This earned him a round of spontaneous applause - obviously Python development is moving fast.

Our final talk was an update from Scott Wheeler about his ideas for a searchable web of context on the desktop. He has found existing search tools such as Google desktop and Beagle lacking because, unlike Google on the web, the desktop has no links, if we can add links to desktop entities then search will become a lot more powerful.

Other talks we went to included Alan Cox explaining how he manages to make a stable branch of Linux releases based on all the fixes Linus doesn't use; Hanna Wallach promoted the Debian Woman project ("not here to provide girlfriends to lonely geeks") which has managed to double the number of women involved with Debian, also RMS presented the Free Software Foundation's award to OpenBSD's Theo de Raadt.

If you ever get the opportunity to go to FOSDEM do not turn it down.

Photos from Jonathan, Sebastian and Raphiel.

Dot Categories: 

Comments

by annma (not verified)

Thanks for this report, it leads us to interesting talks to read and nice pics to look at. Debian Women! Go! ;-) Cool logo by the way.
Ah, and a note to the reader: as we say in French, not all who wear a skirt are women (loosely translated)

by cmot (not verified)

Just for correctness' sake... Matthew Garret is a Debian Project Leader candidate - elections will be held soon, and http://www.nl.debian.org/vote/2005/vote_001 shows 5 other candidates, too. So speaking of 'future DPL' is a bit premature.

cheers

by Anonymous (not verified)

Maybe Jonathan has a krystal ball? :-)

by MM (not verified)

This sounds really cool, especially the knotes integration. But I have a question... what happens when a file becomes renamed? Will there be a monitor that records all 'rename' actions?

Just curious...

by Bram Schoenmakers (not verified)

Well, nothing has been implemented yet, these are only ideas. But you might try contacting Scott for this issue.

by MM (not verified)

No need for it anymore, thanks though.

by Aaron J. Seigo (not verified)

> Will there be a monitor that records all 'rename' actions

hopefully not.

there's no reason the name of the note must be reflected in the name of the file. the file "name" could simply be numeric and in a hidden folder, which they already are. so the user shouldn't be going about in there and renaming those files.

it's kind of like worrying what happens when a user renames config files in /etc or `kde-config --localprefix`/share/config ;)

moreover, there's no real reason why the notes themselves would have to be stored in regular on-disk files at all.

by MM (not verified)

Well, I meant it the other way around...

Just to make it clear... e.g., there is a file file://home/mm/unnamed.kwd and it has a note assigned to it. Then the file is renamed/moved to file://home/mm/Documents/todo.kwd

Will the note be linked against a wrong/non-existing document? What about the search feature, will it find the right file, but the wrong name and path?

I'm asking because I believe I remember Apples spotlight seems to have integrated something that solves such problems, but I don't know how this works (and if it works). Maybe they just changed their "Finder" so it keeps track of all rename and move actions. Or they changed the libraries.

I'm aware that this is a minor problem during the design phase, just wanted to mention it.

Sorry for my english...

by Aaron J. Seigo (not verified)

ah.. when the _target_ of the note's URI changes.. yes, this is something we need to watch for. there area few ways of doing it that i can think of, but i'm not sure at this point which is the best. certainly an area for research =)

the big factor will be whether we care if it breaks when using the command line (we probably do) and if so how efficiently we can hook into change notifications from the kernel. this _is_ one of the things that's easier to do when you embed it into the filesystem itself, a luxury we don't have.

but as long as we can get these notifications working decently, there is only one point in the mesh for any given URI where than URI is actually referenced. so making these changes, once they are known, is trivial to do with exactly zero loss of information within the mesh itself.

by SadEagle (not verified)

AFAIK, the only notification DNotify produces is "directory changed" --- and do all systems even have change notification? So you probably can't count on kernel help.

by MM (not verified)

> this _is_ one of the things that's easier to do when you embed it into the filesystem itself, a luxury we don't have.

I was about to suggest a Reiser4 plugin, but I'm not sure if plugins are allowed to do anything more than providing attributes (or "files within a file").

If plugins are limited in this way, it though should be possible to save a "history" of the file (recent names and paths, date and time of the rename/move action). But this information would be useless for klink, as attributes can only be read if the correct path and name are known, so klink would have to search the whole harddisk and scan the "history" attributes of all files...

And not everybody uses Reiser...

by MM (not verified)

Oh, and even if Reiser4 plugins are not limited, I wonder how a notification system of a file system could look like... I feel a bit uncomfortable having a file system that depends on dcop (no offense, dcop is great, but on file system level?)

by Waldo Bastian (not verified)

It should be noted that CPU processing power has increased dramatically in the last 9 years but that harddisk access times haven't. KDE performance is limited mostly by the latter and adding background search indexing is going to hurt there because it will make the harddisk access times worse.

Even despite the increase in CPU processing, drawing in e.g. Konsole manages to keep even the fastest CPU's busy because of Qt's poor support for fixed width fonts.

So if you like challenges: redesign Konsole to work with variable width fonts and still have your "ls -al" output line up.

Extra cookies are available for bidi-support.

by Simon Edwards (not verified)

It should also be noted that:

a) if you index the contents of file just after it has been modified, then it is probably still in the system's disk cache.

b) Most desktop hard disks are not kept busy 100% of the time. They are often doing nothing. This wasted time can be used for indexing. The inder will also need stop what it is doing when something more important (like the user) wants to use the hard disk.

There is no reason for search indexing to hurt.

Before everyone gets the wrong impression about Scott's work, content indexing *is not* what it is all about. Although it looks like it will play a part, the idea is to record the context and 'links' between things and documents that users create implicitly by just using their desktop and applications.

just IMHO of course.

--
Simon

by koos (not verified)

> There is no reason for search indexing to hurt.

Is there already a way (or always has been w/o me knowing it :-)) to do disk indexing w/o trashing the disk caches?

by Simon Edwards (not verified)

> Is there already a way to do disk indexing w/o trashing the disk caches?

nope,

but you don't have to constantly thrash the hard disk either. That is only needed when building the _initial_ index.

--
Simon

by Aaron J. Seigo (not verified)

and even the initial indexing can probably be mitigated somewhat by being run as a lazy background process.

by koos (not verified)

I don't understand what you mean with thrash the hard disk. You said that it should run if hdd is idle and it wouldn't hurt performance. But in the morning, after updatedb has ran, my system is a lot slower (that's what I meant with the disk cache being trashed). Well at least on linux, their is no API that I know of to skip disk caching while indexing (or eg. playing a DVD).
So, how do you manage to not hurt performance then?

by Scott Wheeler (not verified)

It's becoming a requirement of modern kernels to have useful (i.e. not dnotify) mechanisms for notifying user-space of file system changes. At least on Linux there's a reasonable chance that by the time this stuff is ready for the mainstream that inotify will also be something we can rely on.

We'll see. But these really aren't the issues that we're worrying about now, premature optimization being the root of all evil and all that.

by Ngigi Waithaka (not verified)

Why then can we just hack on the QT implementation of the fonts? This would be more efficient than a picemeal approach!

by Aaron J. Seigo (not verified)

> adding background search indexing is going to hurt there because it will make
> the harddisk access times worse

it seems that we will likely only have to index files "relevant" to desktop search. so... we likely won't be indexing things like the http cache, or system directories, or tmp directories, or ... the number of "relevant" file writes and locations is, hopefully, manageable.

by plugging support for such things into the file dialogs, we should be able to catch many such file writes quickly.

this doesn't mean it's without yet-to-be-solved challenges such as which locations to index by default, or how to pick up changes that were made on the file system but not through the system (changed file notifications, basically). there's also the factor of how up to date the search needs to be in relationship to the file system.

when someone saves 100 files in one go to the filesystem, do they need to be indexed immediately? what are the "rules" that govern this?

when someone removes 100 files from the filesystem, how quickly do they need to be removed from the index?

etc... the file indexer will be an interesting project in its own right. =)

by Navindra Umanee (not verified)

For your tireless and interesting coverage of FOSDEM up to date.

You're also a great editor to have on the KDE Dot News team and it's just awesome to see all the work you are doing for KDE. We're lucky to have you. :)

by Simon Edwards (not verified)

...who organised the accommodation and the dev-room and a bunch of other stuff too. Thanks Fab and everyone else involved!

--
Simon