Slashdot Mirror


Has GNOME Become LAME?

auferstehung writes "Nicholas Petreley (should that be KNicholas KPetreley) of LinuxWorld and VarLinux.org has taken his gloves off in the latest article in his KDE vs Gnome series. An unabashed KDE supporter, Petreley uses some choice fighting words in re-acronymizing GNOME as the Language Agnostic Morphable Environment (LAME) Franken-GUI. Despite the sensationalistic flamage throughout the article, several of his GNOME criticisms (Gconf, file selector, features) echo those already voiced within the GNOME community itself. A happy GNOME user myself, please someone...tell me it isn't so."

128 of 780 comments (clear)

  1. The only once inside the GNOME-community by GauteL · · Score: 5, Insightful

    .. that complains about GConf, is the ones that do not know what it means.

    It is basically a configuration database that provides notification, and can use any backend, where the default is pure XML-formatted text files.

    An LDAP-backend is also being worked on, something which should be a boon for network administrators.

    The file-dialog is lame, and is being replaced.

    This article is basically a troll. Use whatever you like. Some people like KDE, others like GNOME.

    1. Re:The only once inside the GNOME-community by GauteL · · Score: 2, Funny

      "once inside"?

      HA! The preview button is for cowards.

    2. Re:The only once inside the GNOME-community by mbogosian · · Score: 2, Insightful

      It is basically a configuration database that provides notification, and can use any backend, where the default is pure XML-formatted text files.

      Can someone please tell me what the fsck is wrong with text configuration files (automatically created by the application or not)? And no, don't talk to me about XML...XML is not human readable and is fragile enough to be non-hand editable in a lot of cases. What ever happened to:

      • .emacs
      • .pinerc
      • .plan
      • .procmailrc
      • .profile (.login, .bashrc, .zlogin or whatever)
      • .ssh/...
      • etc.

      What was wrong with this paradigm?

    3. Re:The only once inside the GNOME-community by Yokaze · · Score: 4, Insightful

      First, XML is human-readable. It is not readable by Jon Doe, but you won't see him sticking his nose into these files anyway. Those people who can't edit an XML file will most certainly be even less inclined to edit a .emacs file.

      XML can be so fragile, that they are non-hand editable, but so can be a non XML-file.

      XML is a syntax, nothing more.

      With that listing, you have essentially shown yourself, what's wrong with the paradigm.

      Each and every application has it's own file, where it stores its configuration (which is not a problem) and it it's own syntax.

      The problem with each application it's own file is, that they aren't sharing common settings.

      The interesting part behind XML is, you don't have to invent your own syntax and implement your own parser. As a result other applications can quite easily access your data, too.

      --
      "Between strong and weak, between rich and poor [...], it is freedom which oppresses and the law which sets free"
    4. Re:The only once inside the GNOME-community by FirstEdition · · Score: 3, Insightful

      There's nothing basically wrong with this (.x) text file kind of configuration, but XML is more flexible in several ways:

      * it has inbuilt validation (of a sort) via DTD files
      * it is a format which lends itself to generation by other machines, eg many databases have native XML interfaces

    5. Re:The only once inside the GNOME-community by smittyoneeach · · Score: 4, Insightful

      So, in summary, XML is about standardization, a Good Thing.
      How satisfying is it when you can open something completely new, and discover your existing knowledge about how stuff works maps perfectly to the new application?

      --
      Get thee glass eyes, and, like a scurvy politician, seem to see things thou dost not.--King Lear
    6. Re:The only once inside the GNOME-community by Anonymous Coward · · Score: 5, Insightful
      Each and every application has it's own file, where it stores its configuration (which is not a problem) and it it's own syntax.

      Yeah, having a Babel of file formats can be a bad thing, but XML is not the be-all and end-all of data formats. It's great if you need to store something with a complex heirarchy, but what I find annoying are the people who use XML just to be trendy,* and end up with config files that look like this:

      <alice>
      <bob>blah</bob>
      <carol>blah</carol>
      <david>blah</david>
      </alice>
      <ed>
      <florence>blah</florence>
      <george>blah</george>
      <henry>blah</henry>
      </ed>
      Which takes up close to twice as much space as the corresponding ini-format data, with no difference in heirarchy:
      [alice]
      bob=blah
      carol=blah
      david=blah

      [ed]
      florence=blah
      george=blah
      henry=blah
      *[Insert anti-SUV rant here.]
    7. Re:The only once inside the GNOME-community by multi+io · · Score: 3, Interesting
      Each and every application has it's own file, where it stores its configuration (which is not a problem) and it it's own syntax.
      .profile, .bashrc, and .emacs, to name a few, contain source code. You'd have a hard time inventing an XML dialect for them, and doing it wouldn't save work in any way. You'd end up with basically unreadable files ten times as big as today's. XML is just too low-level for that kind of stuff, and its verbosity keeps getting in the way. These days people start integrating Javascript sections into their XML dialects...
    8. Re:The only once inside the GNOME-community by Yokaze · · Score: 5, Insightful
      As if space for config files would matter...
      Anyway:
      <alice bob=blah carol=blah david=blah/>
      <ed florence=blah george=blah henry=blah/>
      XML is certainly not the be-all and end-all of data formats of data formats, and is certainly sub-optimal in several cases and aspects.
      I find XML hyped, too. But I see it as a simple syntax.

      But now think about what you are optimising for.

      Space?
      Compress your examples: XML=111b INI=94b (bzip2)
      And what about code-size? Every progam it's own parser. Shudder.

      Ease of programming?
      Ever programmed a validating parser?
      As for me, I don't want parse a single line of text anymore. Thinking of all the possible deranged things a user or another program can feed into ones program makes me want to hide and curl.
      Remember, your program has to even tell the user what went wrong.

      Ease of use?
      Well, certainly is the XML-syntax less readable then the INI-format. But as I said before, John Doe is not going to see them.
      Try an XML-editor, feed it the DTD or Schema, and it will check your modifications.

      Interoperatiblity?
      See XML-editor.

      >It's great if you need to store something with a complex heirarchy

      I'm not very into XML, but I thought that is one of the deficiencies of XML. I don't know how to store anything, but a tree structures.
      I wouldn't use it for anything too complex.
      --
      "Between strong and weak, between rich and poor [...], it is freedom which oppresses and the law which sets free"
    9. Re:The only once inside the GNOME-community by squiggleslash · · Score: 2, Insightful
      XML is human-readable.
      For different values of human readable.

      My objection is that frequently it's used to replace keyword/value pairs with... er, values in tags, and is readability-impaired - not because a human being can't decypher what something says, but because you have to decypher that something first.

      If you don't understand what I mean, consider the following example:

      Old, obsolete, non-standard format:

      FullScreen=true
      Exciting, new, XML format:
      <FullScreen>true</FullScreen>
      You don't have to be a rocket scientist to realise that not only is the first form actually reads almost as a sentence ("FullScreen is true"), where as the second is a "Ok, I've got something surrounded by FullScreen tags, the something is 'true'". Imagine this not for one setting, but for hundreds.

      Worse than that, it's about as hard to parse the XML version in practice even using an XML library as it would be to write a program in C to parse the first form from first principles. Seriously. Thinking about it for two minutes, and then write the C program. The latter is piddlingly easy. Then compare it to something that makes calls to a generic XML parser. And if the argument is "Well, d'uh, but you wouldn't make calls to a generic XML library, you'd use a library that calls the XML library that does that", then you're kind of making the point for me, as the same can be true too of the first form, it's just the first form is so simple that very rarely does anyone bother learning how to use an entirely new config setting library to parse it.

      XML strikes me as one of those technologies that's been overused and stretched beyond what it's good at. It's very good at passing certain types of structured data between applications from different sources. However, despite the claims of its advocates, it's neither generic enough to be a universal file format (for one thing, it's plain text. Bye bye images, sound, and video), nor is it simple enough to replace all lower level file formats. It certainly shouldn't be used to replace keyword/value pair type configuration files for specific applications as there's no need, in that case, for portability or complex data structures, and the overheads of using it under those circumstances, from the pain it causes people who want to edit those files to the hit on performance and bloat is really quite unnecessary.

      Use the right tool for the job!

      --
      You are not alone. This is not normal. None of this is normal.
    10. Re:The only once inside the GNOME-community by Sandstorm · · Score: 2, Informative
      My objection is that frequently it's used to replace keyword/value pairs with... er, values in tags, and is readability-impaired - not because a human being can't decypher what something says, but because you have to decypher that something first.

      If you don't understand what I mean, consider the following example:

      Old, obsolete, non-standard format:

      FullScreen=true
      Exciting, new, XML format:
      <FullScreen>true</FullScreen>

      How about something like this?
      <Settings FullScreen="true" />
      A snippet from an actual config file would probably look something like this:
      <ScreenSettings
      FullScreen="true"
      Width="800"
      Height="600"
      />
      I think that would be both human readable and valid XML.
      --
      "People demand freedom of speech to make up for the freedom of thought which they avoid."
      -Kierkegaard
    11. Re:The only once inside the GNOME-community by Milo77 · · Score: 4, Insightful

      I hear this a lot, but people seem to forget that XML is about "extensible" syntax. Sure you could use your "ini file" syntax above, but you'd better be darned sure you never want to store anything other than string name/value pairs. Sure a simple parser for what you gave above is easy, but say you start adding capabilites to your format like multiline string CLOBS or allow for string value quoting, etc. What if you decide (or someone else decided) that one of the key/value pairs should be "icon" and the value needed to be a "png"...sure you could go and add the ability to your parser and if your a hobbiest programmer, you'll find this fulfilling, but I program professionally, and I find making good design decisions fulfilling. When my boss comes to me and says you need to add the ability to read PNGs from the config file I say "done". And with XML all this can be added *without* breaking existing apps.

    12. Re:The only once inside the GNOME-community by bwt · · Score: 2, Interesting

      How funny you are. The typo in your example "valuw2" really illustrates exactly why XML is a good thing.

      You didn't include all the custom code that you have to write to validate that the numbers on the right side of the equals signs actually define valid settings for the variables. XML Schemas make this very easy.

      Also, suppose I'm starting at your app and I wonder if I can use
      name2 = value2, valuw2
      or do I need
      name2 = "value2, valuw2"
      or does it even make sense to give name2 a list? Or do I separate lists with ";" or maybe ":" like in the environment profile that you hold up as a model? Now I have to read your code. Don't pretend that you put this in the documentation, because you didn't mention the documentation when we were measuring "simpler syntax".

      Of course, even on UNIX, nobody can agree on the exact syntax for the profile. Csh is different from bash is differnt from korn shell is different from blah, blah, blah. And nobody on non-unix platforms knows what the hell you are even talking about.

      XML is THE standard for platform independent data. Bash script syntax is not.

      Because it is the standard, and an open standard at that, you don't have to worry when you move your app to win32 or BeOS or Mac or Tru64 unix or fooOS about the availability of tools that can read and write the format.

    13. Re:The only once inside the GNOME-community by Anonymous Coward · · Score: 5, Insightful
      Every anti-XML rant pretty much boils down to the same thing:
      • It's trendy and I'm too cool to go along with the crowd
      • The bloat offends my 386 sensibilities
      • My favorite config format fits my contrived example


      As to your contrived example, we lived through systems {OS/2, Win3} based on INI files, and we know the fundemental problems: (A) Parsers are buggy, and (B) You can not impose a 2-level heirarchy.

      I think anyone who had to fight with Windows 3.1 would remember examples like this:

      [alice]
      bob=blah;blah;blah;{CR}
      henry=blah:0|b lah:99|blah:32{CRLF}

      (program crashs for unknown config-file related reason)

      Speaking from experience, coding parsers for hierarchies imposed on crappy flatfiles is time consuming, expensive, NO fun, and inevitably buggy in some way.

      Now if you are going to create a new config system like gconf, do you go down the Windows 3.1 road or do you do the right thing and use a standards-based format with off-the-shelf parsers? Or do you make a knee-jerk decision based on percieved "trendyness"?
    14. Re:The only once inside the GNOME-community by dead_penguin · · Score: 3, Interesting

      And what about code-size? Every progam it's own parser. Shudder.
      Ease of programming?


      I'm intentionally taking this slightly out of context, but I think this is one of the biggest overlooked benefits of XML.

      Sure, there might be slightly better data formats out there for specific cases in terms of speed or file size, but as far as development time goes, XML parsers can't be beat. You should basically be able to take a parser, wrap it with a few calls or a class to deal with your specific file, and you're done.

      You don't have to re-implement and fully test your own parsing engine; you're using a parser that's pretty much optimized and tested to completion. This lets you develop more robust software in a shorter amount of time, and also lets you focus on coding the things you actually *want* to be coding.

      Unless anyone you're someone that actually gets off on writing parsers (people like that are out there; I've met them...), I think there are very few reasons NOT to use XML.

      --

      It's only software!
    15. Re:The only once inside the GNOME-community by rabidcow · · Score: 3, Insightful

      Compress your examples: XML=111b INI=94b (bzip2)

      Is this supposed to be for or against XML? An 18% increase in size after compression is nothing to boast about. (and the XML can never be smaller, it has more information in it)

      Ever programmed a validating parser?

      There's a lot more to validate in XML than simpler formats. With the ini format, for example, there's basically two errors: "I can't find this," or "This line makes no sense."

      Every progam its own parser.

      ini format is pretty standard, not to mention that formats of this complexity have trivial parsers.

      Well, certainly is the XML-syntax less readable then the INI-format.

      I'll say. I'm a programmer and XML files hurt my eyes. Screw John Doe, *I* don't want to look at them.

      Try an XML-editor, feed it the DTD or Schema, and it will check your modifications.

      This is a cop out, you're essentially saying "yeah, I know it's not human readable, but you don't really need that."

      If that's what you want, you might as well go for a binary format. You could have a binary format that's just as expressive and save a lot of space.

    16. Re:The only once inside the GNOME-community by Yokaze · · Score: 2, Interesting

      > An 18% increase in size after compression is nothing to boast about. (and the XML can never be smaller, it has more information in it)

      You missed the point more important to me:
      >> As if space for config files would matter...

      A increase by some factor is debateable. A percentile increase not. Especially not in such a limited benchmark. On a sidenote: My compact example is even one byte smaller than the given INI-example.

      > There's a lot more to validate in XML than simpler formats.
      Yes, but you don't have to do it. Well, more importantly, I don't have to do it.

      >I'm a programmer and XML files hurt my eyes

      And it hurts my eyes (as a programmer) to have ever look at a textual-file beside code. I want the frickin data as binary in memory.

      > This is a cop out [...]
      > [...] you might as well go for a binary format

      No, it is not.
      It is human-readable. Visually not as pleasing as an INI-File. But not something you have to rack your brain about.
      All those people answering here wrote portions of valid XML, in a simple text-box without the use of some XML-editor and with minimal knowledge about XML.

      But additionally to editing it with vi, cat, echo, sed, awk, or dontknowwhat, you have the possibility of using any XML-editor which represents the data in a more eye-pleasing form, performs automatic syntax-checks, and saves you some typeing.

      Think source-code: You can use your spartanic editor, or your favourite developing enviroment with code completion, syntax check and the like.

      > I'll say. I'm a programmer and XML files hurt my eyes. Screw John Doe, *I* don't want to look at them.

      I think that is the main problem. Your personal dislike for XML. I don't think, I can discuss your aversion away.
      I'm not emotional attached to XML. At most I'm slightly unhappy about the redundancy introduced by the opening and closing tags, but it is there, it works, it is becoming standard.

      --
      "Between strong and weak, between rich and poor [...], it is freedom which oppresses and the law which sets free"
  2. Why do some many prefer Gnome then ? by bushboy · · Score: 3, Interesting

    If all of what this article implies is a reasonable "comparison" between the way KDE and Gnome function, why is it that so many prefer Gnome over KDE ?

    I've used both for years and have finally settled on Gnome as I find it faster, more intuitive and less "bloated" than KDE, yet the authour of the article finds pretty much the opposite to be true.

    I'm no programmer, so what happens behind 'the scenes' is not something I can use to compare the different desktops.

    All I know is that I much prefer Gnome over KDE.

    --
    A slashdotting - you get the stick first and then the carrot !
    1. Re:Why do some many prefer Gnome then ? by rseuhs · · Score: 3, Insightful
      Why?

      Because it's backed by RedHat and Sun.

      And it's no coincidence that RedHat users usually say that Linux isn't ready for the desktop yet while SuSE, Mandrake or Gentoo users say it is...

      At least that's my observation, and it's also confirmed by statistics (in Germany (= SuSE territory) Linux marketshare is about 3-4 times higher than in the USA (=RedHat territory))

    2. Re:Why do some many prefer Gnome then ? by twener · · Score: 2, Informative

      > why is it that so many prefer Gnome over KDE ?

      There are always some who don't share opinion or taste of the majority. For example have a look at the Gentoo Linux usage statistics. Adding all KDE installations compared to Gnome installations more seem to prefer KDE than Gnome. That's the tendency this statistic has in common with most web polls (which I in general wouldn't overestimate as being representative).

    3. Re:Why do some many prefer Gnome then ? by tempest303 · · Score: 2, Insightful
      And it's no coincidence that RedHat users usually say that Linux isn't ready for the desktop yet while SuSE, Mandrake or Gentoo users say it is...

      Perhaps this indicates that Red Hat users are more objective then, since Linux isn't yet ready for the desktop.

      KDE is a complete mess of feature and preference overload, with little apparent thought given to design. GNOME has the design part down a lot better, and has a far more sane attitude towards preferences, but is lacking in some features, a few of them major. (No, I don't mean stupid sh*t like edge-flipping - I'm talking about stuff like a lock-down system for administrators, a must-have in office environments!)

      Neither desktop is quite ready for Joe Consumer use - but I predict that one or both will get damn close this year, either by GNOME filling in a few feature gaps, or KDE getting serious about consumer-level usability.* We're not there yet, but we are damn close.

      * side note to Mosfet-worshippers: "organization" will not save you - kontrol center is drowning in useless preferences. Some of them simply have to go
    4. Re:Why do some many prefer Gnome then ? by rseuhs · · Score: 3, Insightful
      Perhaps this indicates that Red Hat users are more objective then, since Linux isn't yet ready for the desktop.

      Because you say so?

      KDE is a complete mess of feature and preference overload, with little apparent thought given to design. GNOME has the design part down a lot better, and has a far more sane attitude towards preferences, but is lacking in some features, a few of them major. (No, I don't mean stupid sh*t like edge-flipping - I'm talking about stuff like a lock-down system for administrators, a must-have in office environments!)

      There cannot be such a thing as "preference overload" because you only set preferences once, but use features daily. The maybe 10 seconds that it takes longer to find your preference in a preference-rich control-panel is irrelevant compared to the features you gain.

      The drooling morons just use the defaults anyway and never use the control panel, so they are the least affected user group

      Neither desktop is quite ready for Joe Consumer use - but I predict that one or both will get damn close this year, either by GNOME filling in a few feature gaps, or KDE getting serious about consumer-level usability.* We're not there yet, but we are damn close.

      Nonsense. KDE and even GNOME (yes, I'm a KDE fan, but while GNOME isn't that great anymore for power users, it's still good enough for basic users) is technically ready for Joe Consumer.

      All problems have nothing to do with KDE or GNOME itself:

      • We need Win32 application support. Hopefully Wine will get good enough this year to run most Win32 apps flawlessly, some Win32 apps with no equivalent on Linux are keeping a lot of people on Windows.
      • We need PC-makers to preinstall Linux. The best desktop in the world (which is IMO KDE) won't make an impression when it's not preinstalled. The Win32-compatibility will be of great help convincing PC-makers, too.
      • We need better marketing. At first the "Linux is too complicated" FUD has to stop (yes, I'm also talking about you), simply because it's no longer true. kcontrol may be complicated, but it's far easier to find something in it than it is to find the right tool in the Windows control panel. (kcontrol is organized in a tree, the Windows control panel is just a folder with tools thrown in) So if KDE isn't ready, neither is Windows. In reality both are good enough anyway.

      * side note to Mosfet-worshippers: "organization" will not save you - kontrol center is drowning in useless preferences. Some of them simply have to go

      Gooddamn, that's nonsense. You only need to set preferences *once*, so any time-gains are negletible and the so-called mysterious "average user" doesn't change the preferences at all, so using the "average user" as a reason to reduce kcontrol functionality is pretty moronic.

      OK, now in all-tabs, otherwise you won't get it:

      SHOW ME A SINGLE PROGRAM THAT IS SUCCESSFUL BECAUSE IT HAS REDUCED CONFIGURATION FUNCTIONALITY

      Name one. Everyone *I* know, ICQ, Winamp, Photoshop, MS Office, etc. is loaded with configuration options, and every version more are added. MS Office alone probably has more configuration options than KDE in it's full glory.

      Name a single program that has become successful because it has removed configuration options. Just a single one.

      So according to you, MS Office can't be used by "Joe average", right?

      You are dead wrong, sorry. I'm a Wordprocessing-newbie (well actually not really a newbie, I use them for several years, but only about once every 2 months, so I'm at the same skill level as a newbie, but I disgress) and I can get my work done using the defaults in OpenOffice. If I would use it more often, I would dig around and customize it to fit my needs - and I would be very happy to find the options I need.

    5. Re:Why do some many prefer Gnome then ? by entrox · · Score: 4, Insightful
      Show me a single program that is successful because it has a ridiculous number of configuration options.

      Emacs
      --
      -- The plural of 'anecdote' is not 'data'.
    6. Re:Why do some many prefer Gnome then ? by mickwd · · Score: 3, Insightful

      "* side note to Mosfet-worshippers: "organization" will not save you - kontrol center is drowning in useless preferences. Some of them simply have to go"

      I do so love being told what I can and can't do with my own computer.

      But yes, good organisation can sort out this situation. Why is it so difficult to choose a sensible level of "standard" options, well-thought-out and well presented, and hide more advanced options behind an "advanced" button in the appropriate dialogs ? Some applications already do - Microsoft also uses this idea in places.

      And if you insist that you're dealing with people that can't deal with "advanced" configuration options, I would suggest two solutions:
      1) All advanced dialogs to have a "Restore to Defaults" button (some applications already do this). In fact, this would probably be a good idea on all dialogs;
      2) Have some single centralised option, controllable by root or a system administrator, which simply turns off all "Advanced" dialogs (and the buttons which acccess them) if you insist that users can't be trusted to use them, and will only be confused by them (or that their use will make a system administration / support harder).

    7. Re:Why do some many prefer Gnome then ? by blibbleblobble · · Score: 2, Insightful

      "I've settled on Gnome as I find it faster, more intuitive and less "bloated" than KDE, yet the authour of the article finds pretty much the opposite to be true."

      I think the author of this article would agree with you, although he doesn't cover such issues in the article. Take his example of file-select box. He has a screenshot of KDE file-select, with bookmarks, favourites icons, an image-previewer, an optional directory-tree, a browser toolbar, and little icons by each type of file.

      He then gives a screenshot of the Gnome file-select, with a listbox and a "parent directory" dropdown, and goes on to note how basic it is. Yes, but how long did the K take to load? How much memory is that file-select using? How long does it take to redraw a directory with thousands of files?

      For me, speed is not the issue so much as reliability. I've had problems with KDE and Gnome crashing (Fixed in whichever version comes with the Drake 9) which lost me more time than any delays in the operating environment.

      WindowMaker is very good, for people who've not tried it yet. You can run you Gnome and KDE programs the same, but the environment is more stable and robust, and it loads in less than a second.

    8. Re:Why do some many prefer Gnome then ? by buysse · · Score: 2, Interesting

      KDE is updated more often (major revs) as well, so it's not a clear statistic. It could just be that more people emerge KDE to jump versions than Gnome users (which have been at 2.0 for a while).

      Statistics lie.

      --
      -30-
  3. Can't these kids grow up? by BrokenHalo · · Score: 5, Insightful

    I am very tired of reading flame wars between Gnome and KDE. OK, I am a big supporter of Gnome, but that doesn't mean KDE sucks. It plainly does not. I would be the first to agree that there have been some terrible blunders made by some of the Gnome developers along the way, but the current 2.2 is very sweet. Every so often I try out new versions of KDE as they come up, and every time I abandon it because my desktop looks cluttered and Kalling Keverything Kfoo.Kbar Ketc Kgives Kme Kthe Kshits... :-) [/rant]

    1. Re:Can't these kids grow up? by rseuhs · · Score: 4, Funny
      I am very tired of reading flame wars between Gnome and KDE.

      my desktop looks cluttered and Kalling Keverything Kfoo.Kbar Ketc Kgives Kme Kthe Kshits...

      You don't seem so tired of flame wars at all...

  4. I've tried to use GNOME but always go back to KDE by systemapex · · Score: 2, Informative

    From a pure user experience, I like GNOME's simplicity. But that simplicity, for whatever reason does not extend to its usability. I keep returning to KDE, though I sometimes find it tries to do too much and spreads its quality thin. GNOME simply does not do enough. There are just some things that bug me too much about GNOME that should be fixed immediately because it's just an embarassment to the project - the default file selector for gtk apps would be a good place to start.

  5. Re:It's nice to see by Nerant · · Score: 5, Insightful

    So to use your analogy, if I was to design a car, I can't design one that uses wheels because someone else has done it before?
    Microsoft has certain ideas that are sound in theory, but their implementation of it sucks in practice. There is nothing wrong with implementing GUI features in Gnome or KDE that have already proven to be useful in actual use.

    --
    Be kind. There are too many mean people out there already.
  6. Where's the flamage? by Isldeur · · Score: 3, Insightful

    Nicholas Petreley (should that be KNicholas KPetreley) ...&&... Despite the sensationalistic flamage throughout the article,

    So can you give examples of this "sensationalistic flamage"? I sure didn't find any. Why is there an immediate knee-jerk reaction when anyone ever criticizes gnome or kde? I personally think he has some very good points. Why can't people try and learn from constructive criticism?

    If I could now lapse into a personal opinion: I've tried gnome and I try it regularly. And to be simply honest, I continue to get this "Is this all?" feeling every time I use it.

    He's right about the dialogs. When I tried changing my background with one of the latest gnomes, I get this measly little window with three different picture boxes that don't help at all. I remember thinking how Spartan (?) this was back then.

    Gnome just seems to be going in so many directions that it's turning into a mess. And no one wants that.

    1. Re:Where's the flamage? by msaavedra · · Score: 2, Insightful
      So can you give examples of this "sensationalistic flamage"?

      You don't think referring to GNOME as LAME is flamage?

      I personally think he has some very good points.

      I'd say he has one good point: GNOME's file selection dialog sucks, and KDE's is much better. One thing I like about the Gtk file dialog is that it has tab completion. I don't know if KDE's does or not. The bookmarks rock, though.

      Beyond that, Petreley just seems to harp on consistency, though he doesn't give any concrete example of how KDE is consistent and GNOME is not. He seems to imply that KDE is consistent because it uses a bunch of small tools from a common framework. But Gnome is the same way. I fail to see what his point is.

      Further, he criticizes Gnome and Bonobo for not fully exploiting CORBA's network transparency, yet he doesn't explain how this makes it worse than KParts. He also ridicules Gnome's efforts at language indepence, though doesn't really explain why their efforts are bad.

      He also briefly criticizes a few other components:

      • GConf is like the windows registry - This old chestnut has been thouroughly debunked by Havoc Pennington in a number of places. I won't recount them here. Google is your friend.
      • Metacity and Nautilus are lacking features - Of course, he doesn't say what these missing features are, though.

      Beyond that, he incessantly spins things as negatively for Gnome as possible. I love this passage: "New holes are appearing, as well. Read my lips: no new file-pickers." When did not fixing a problem become equivalent to a new problem emerging?

      When I tried changing my background with one of the latest gnomes, I get this measly little window with three different picture boxes that don't help at all. I remember thinking how Spartan

      Changing a background image is a simple procedure, why would you need a complex dialog? I've used the Gnome2 background picker as well, and I haven't found anything lacking. On the contrary, I think it is quite elegant.

      Gnome just seems to be going in so many directions that it's turning into a mess.

      This seems to contradict your previous observation of Gnome's spartan qualities. How can something be both spartan (simple and lacking luxuries) and a mess moving in many different directions? That said, I can see your point here. There are places where Gnome is a bit awkward, though these are mostly relics from Gnome 1.4 that haven't been fixed yet. This is not an indication that things are moving in many different directions, just that they are moving, and still need to move some more.

      As an aside, I've noticed an increasing frequency in these anti-Gnome trolls. A while back, an Australian site did an interview with Shawn Gordon, and he came across as very arrogant and contemptuous of Gnome. The same interviewer tried to bait Gnome's Jeff Waugh into a flamewar over this, but he politely declined. Why have certain members of the KDE camp become so bitter? By the way, I don't mean to imply that your post was anything of the sort. Rather, I think it was honest and tactful. Petreley's article was a major league troll, though

      <disclaimer>I do not use either Gnome 2.x or KDE 3.x, though I do follow the Gnome project closely and admire what they are trying to accomplish.</disclaimer>

      --
      "Any fool can make a rule, and any fool will mind it."
      --Henry David Thoreau
  7. KDE did have a headstart by nkv · · Score: 3, Insightful
    Which is something to be said. I'm a GNOME user myself. KDE is definitely good and beats GNOME in lots of ways. But it does seem to be like the latter is getting there.

    One thing I completely agree with is the removal of sawfish and the inclusion of metacity. A lot of the GNOME users I know loved sawfish. Removing it was a bad decision. Perhaps the developers had their reasons but.... *shrug*.

  8. I find both of them "lame" by g4dget · · Score: 5, Insightful
    And that's not necessarily a bad thing: Gnome and KDE are competing with Windows and OS X for users, so they should look and behave roughly like what common users expect.

    However, some of Petrely's remarks are just silly. For example, he thinks that KDE being "more feature rich" is a good thing. Sorry, but that's not true. Having lots of features and buttons and widgets may work for some users, others may prefer something simpler, and yet others may want a different set of complex features. And while some users get all pushed out of shape about inconsistent appearances, consistency just isn't a big deal to many users either.

    But what makes Gnome/Gtk+ and KDE/Qt both really lame in my book is that they don't take advantage of the really powerful and useful capabilities of X11. Motif and Xaw, for all their many and fatal faults, had better support for remote applications, customization, and inter-application communication than either Gnome or KDE. And Gtk+ and Qt both make very inefficient use of the X11 APIs, giving X11 an undeserved reputation for being slow. The Gnome and KDE developers don't even seem to understand what they are not doing, they are just complaining with some regularity that X11 is more cumbersome than Windows (which it is, if you try to program it like Windows).

    As I was saying, I think both Gnome and KDE are ultimately good projects for Linux. I'm glad I have something simple and pretty to install on PCs for use by friends and family, something that, for better or for worse, works just like Windows and MacOS. But I also view them both as about equally "lame" from a technical point, and the differences between them seem minor compared to their common limitations.

    1. Re:I find both of them "lame" by rseuhs · · Score: 4, Insightful
      For example, he thinks that KDE being "more feature rich" is a good thing. Sorry, but that's not true.

      OK, show me the app that is successful because it's not feature-rich.

      MS Office? Nope, probably more configuration options than full KDE and full GNOME combined.
      Winamp? Nope, the plugins are all configurable, plus Winamp itself. On top there are skins.
      ICQ? Nope, configuration options are crawling everywhere and more are added with each version.
      And finally KDE: KDE is more successful than GNOME. That's a fact. The Gentoo statistics and numerous web polls confirm that. To argue that KDE has to become like GNOME to be more successful is quite retarded.

      KDE is great, better than the Windows GUI and MacOSX (yes, I tried both of them). I don't want to see make KDE the same mistake GNOME did and sacrifice usability and features for some mysterious "average user" that doesn't exist anyway.

    2. Re:I find both of them "lame" by g4dget · · Score: 4, Interesting
      Yes it is. Simplicity is a feature too. Or are you confusing "feature" with "clickable thing" like so many people who argue against "features" do?

      Petrely was talking about "clickable things", and I was simply using his terminology.

      If [consistency] isn't a big deal to those people, then they won't mind if everything is consistent then, will they?

      All things being equal, no, they wouldn't mind. But all things aren't equal: effort you spend on consistency won't be spent on other tasks. And you can't be consistent with everything at the same time.

      Remote applications? That's something built into X, not specific to Motif.

      As I was saying, KDE developers often don't even understand the issues... remote application usage isn't just about moving graphics from one screen to another, it's making configuration parameters, window management, and communications work correctly. Doing that requires toolkit and application support, but KDE and Qt don't even really try very hard.

      Inter-app communication? Like DCOP and MCOP?

      Yeah, that's the problem, like DCOP and MCOP.

      Care to give an example?

      Sure: the Konqueror window I'm looking at has about 50 distinct widgets and manipulable elements in it (buttons, menu entries, labels, scroll bars, icons, etc.), yet it only uses 7 distinct X11 subwindows. The intent of X11 was to use subwindows as a kind of structured graphics for building toolkits, but Qt and Gtk+ just do a whole lot of drawing inside big windows, and they have a whole lot of their own event processing logic. As an analogy, you can create graphics in PostScript by using its drawing commands, or you can create it by embedding a big bitmap. KDE/Qt and Gnome/Gtk+ are effectively doing the latter in a lot of cases.

    3. Re:I find both of them "lame" by Caligari · · Score: 2, Interesting

      >And Gtk+ and Qt both make very inefficient use of >the X11 APIs, giving X11 an undeserved reputation >for being slow.

      I don't know about Qt, but recent versions of GTK+ use the XRender extension. This bypasses entirely the regular X11 API. In fact, GTK+ makes VERY efficient use of X.

      Give some concrete evidence (e.g. benchmarks) before making wild claims about performance.

      Otherwise its just FUD.

      --
      The moving cursor writes, and having written, blinks on.
    4. Re:I find both of them "lame" by Nick_Gunz · · Score: 2, Insightful
      However, some of Petrely's remarks are just silly. For example, he thinks that KDE being "more feature rich" is a good thing. Sorry, but that's not true.

      In my experience, this is wrong. In my experience, people don't complain about too much configurability; people complain about not being able to find the features they want.

      Let me develop this idea further:

      As everybody with the ability to think knows, there are going to be different kinds of user that use any program. Some people just want to pick it up and have it work. Other people care about a few things and want to be able to change them. Other people want to be able to change every damn thing because a) they like to work with the computer in an unusual way or b) they just like to play. Then there are, obviously, going to be people arrayed at other various different points along this spectrum, but for now I'll just talk about it as a simplified model.

      The first type of users aren't going to be particularly freaked out by lots of features. They never even open the preferences menu, for the most part. Many of them don't know it exists. For these people, the important thing is that there are a good set of default preferences that work in an ergonomically reasonable way, and work the way that they expect it to work and feel comfortable with. This may mean that you have to set up your defaults to work kind of like Windows. The Win32 interface has become the standard, and that's how people expect their computer to operate. But it doesn't mean you don't have to let them change it.

      Ok, so lets skip ahead to the third kind of user, the kind who wants to change everything: Are these users so unreasonable? I don't think so. Partly this is because I am one. I like to play with my interface, tweaking it constantly. Gradually, as this happens, I drift way from the default windows-like standards. So be it. My point is that I will never be confused by 'too many features'.

      But there's another, more important, reason to allow users who want to change everything to change everything. Computers are designed to be flexible: to do tasks you never envisaged. That's the main point of them, really. Often, people will start using a computer in a new way and find that the old default configuration is no longer convenient or ergonomic. In this situation, not letting them change basic things about the way their computer interface works is like not letting them move the furniture around in their office. User interfaces aren't just an interface between the user and your application; they are also an environment in which the user uses your application.

      Ok, so to the second kind of user. The user that causes all the trouble in this respect. The user who wants to change the odd thing now and again, but not spend hours playing with tweaks. Again, this is not totally unreasonable. There are setting that users have to change even when they generally aren't into customization all that much. For example, if you don't happen to be an American and you want to use a word processor, chances are you're going to have to change the default language setting. So even the dumbest user who doesn't want to change anything will, at some point, have to venture into the bowls of some big, convoluted, preferences interface.

      As they do so, they become more and more frustrated. This is the important part: they don't become frustrated by the fact that they can change every little thing in the program. They become frustrated because they can't figure out how to change the things they want to change. This is when they start 'freaking out because of too many features'.

      There are a number of ways 'round this. For example, you can have a clearly marked 'meta' setting set, by default, to the simplest user mode. Alternately, you can put as many settings as possible in the context in which they're used. You want to change the way the window frames work? Click on the 'advanced' option in the window menu. This way the central prefs menu doesn't get too cluttered with options to find anything.

      Above all, you should make an effort to put commonly used preferences front and centre. Language settings in word processors are a prime example of this. Programmers know that even users who change no other options are going to have to change this one, but they still tend to put it three layers down in the options panel under a section marked: 'Advanced! No, we really mean it! This is supper advanced! Experts only!'

      Joe user wants to change to UK English. Joe user can't find the option for all the buttons asking whether he wants to set an alarm every time a new user logs on to a remote part of the network that doesn't exist, Joe user 'freaks out about features'.

      These ideas applied to the debate over GNOME:

      This is where I get to my critique of the new GNOME interface. When I started using it, there was a clear difference between GNOME and KDE from a user's perspective. KDE worked better. It kind of hung together better and look slicker. GNOME was the one you used if you liked to change everything and tweak everything. But in 2.2 they've taken out all that good stuff. Even simple things, non-confusing things, have been ripped out in the name of 'simplification'.

      To make matters worse, they've made it harder to get to whatever options remain. The gnome control centre is gone, and now you have to track trough endless menus to get to the bits you want (yes, there is a strange nautilus based interface, but they don't make it easy to find at all). There are even features where they left in the 'potentially confusing' control interface, but crippled the feature so that it doesn't actually work any more (eg. I used to be able to make each of my directories look physically different from one another in nautilus by changing the background colours. The control interface is still in place for that feature, but it doesn't work any more).

      Apparently, the GNOME development people think they're helping ordinary users by making all the features hard to get to, but nothing could be further from the truth. Power users are going to be pissed off because they can't find the features they used to rely on. Non-power users are going to be pissed off because they can't find or get to the few features they do need to change (remember my basic thesis: they're not annoyed by choice, but by not being able to find the choices they need). Nobody has been helped.

    5. Re:I find both of them "lame" by IamTheRealMike · · Score: 2, Informative
      However, some of Petrely's remarks are just silly. For example, he thinks that KDE being "more feature rich" is a good thing. Sorry, but that's not true. Having lots of features and buttons and widgets may work for some users, others may prefer something simpler, and yet others may want a different set of complex features.

      Agreed. He also seems to confuse "lots of stuff" with "features". Having 3 media players or whatever they're up to now is not feature rich, it's bloat. OK, OK, so I'm being picky, but I've yet to find features that I really miss from KDE. Sure, I liked the idea of having a mini-webserver in my panel, but I never actually used it.

      And Gtk+ and Qt both make very inefficient use of the X11 APIs, giving X11 an undeserved reputation for being slow.

      Ignoring the fact that both GTK and Qt have pluggable backends, which entails a very slight loss of tight integration, the real reasons that GTK2 is slower than GTK1.2 are

      1) It is double buffered. This slows GTK down, but makes it feel faster and smoother to the user. Net win.

      2) It uses anti-aliasing. XRender is still not finished, nor well optimized. Profiling the new gnome-terminal widget for instance showed that most of the time was spent inside the X server. That will speed up over time.

      3) If you do opaque resizes of apps, you'll find the content area doesn't stick to the borders. That's due to a problem with the internal scheduler, not due to lack of speed on the part of GTK.

    6. Re:I find both of them "lame" by tf23 · · Score: 2, Insightful

      Having lots of features and buttons and widgets may work for some users, others may prefer something simpler, and yet others may want a different set of complex features. And while some users get all pushed out of shape about inconsistent appearances, consistency just isn't a big deal to many users either.

      And what that really says is that you can't please everyone.

      I personally think that you can come close - and here's how you'd do it:

      1) Leave all the customization options *in*. Organize them as best you can. If someone wants to fiddle with 'em, fine.

      2) Create an interface that let's an admin *lock* out options/preferences and/or set the defaults. I think the Kiosk type thing may fit the bill here.

      I think if KDE and GNOME, and any other graphical interface parties do this, they'll be successful.

      An example: With a setup like this, I can put linux on a machine primarily for the kids to use. I can have either GNOME or KDE available to them to pick which one they want to use. And I can lock things like their webbrowser so that it uses our proxy, which filters out inappropriate sites. I can lock down their look n feel so that I don't get the "help me I lost this icon" etc while I'm watching MNF. Yet I can login and use the box with as much customizations as I want.

    7. Re:I find both of them "lame" by Anonymous Coward · · Score: 2, Informative

      Konqueror only uses 7 distinct X11 subwindows?
      Plain wrong. Just do 'xwininfo -tree'.

    8. Re:I find both of them "lame" by caseih · · Score: 2, Insightful


      OK, show me the app that is successful because it's not feature-rich.


      MS Office? Nope, probably more configuration options than full KDE and full GNOME combined.

      Umm, actually the feature bloat in MS Office is making it harder to use and harder to teach newbies how to use it. In fact, the mass of menu options has been deemed to be so comfusing that MS defaults to not showing all the menu options (which could be argued to be a usability blunder in itself). Also there is a difference between features and configuration options. Workable defaults is always the best thing. No one I know knows how to set much in MS Office. Fortunately the defaults are okay most of the time.

      And finally KDE: KDE is more successful than GNOME. That's a fact. The Gentoo statistics and numerous web polls confirm that. To argue that KDE has to become like GNOME to be more successful is quite retarded.

      Umm again, gentoo users are hardly average linux users. They typically tend to represent the minority "l33t" linux users. These users are control freaks and have the skills and the time to mess with every little thing. All you can really say is, "Among gentoo users that we have statistics for, I think that KDE is more popular." Anything else is unsupported.

      As a Linux professional, I just don't have the time or the caring to tweak every stupid little thing in KDE. I use Gnome and it's clean, nice, and it works. I can tweak everything I need or want to (I've been using transparent gnome-panel's for years -- by using special pixmaps in the background!). Most Linux professionals I prefer Gnome to KDE. And a good many prefer fluxbox in conjunction with gnome-panels. Hmm. Fluxbox has even less useless "features" and bloat than KDE.

      No blanket statements here. Just my own observations about what I have *seen*.

  9. I want my Swallowed App Back! by Anonymous Coward · · Score: 4, Insightful

    The "best" feature of gnome-panel was the Swallowed App, but it seems it's not to be in Gnome2... Now That's LAME!!

  10. Re:Gnome's very problem by Anonymous Coward · · Score: 2, Informative

    + References to obscure, technical sounding fields of study
    + Some vaguely accurate software engineering speak
    + No substatantiation whatsoever for any claims made

    First class trolling, sir!

  11. Why I use Gnome by JamesGreenhalgh · · Score: 5, Informative

    When I upgraded to SuSE 8.1, I decided to give KDE another whirl since it had hit version 3. Pretty good, does a lot of stuff, appears to do it well aside from a couple of basic apps which would crash every time they were closed (not KDEs fault as such).

    Why did I switch back to Gnome 2?

    Speed. The two systems I was using KDE on were a dual p2-400 and a celeron 800. On both, there was an enourmous speed increase switching to Gnome - especially with lots of open apps. They definitely still have work to do, I like Metacity because it's nice+light+simple, but the configuration leaves a little to be desired. GTK2 based apps appear to run a lot slower than GTK1, but even then they're still much quicker than the QT based KDE.

    Fortunately, with "big players" backing KDE and Gnome seperately, I don't see either going away - a good thing, although I do wish they'd agree on how drag+drop should work ;-)

    --

    --
    ALL YOUR BASE ARE BELONG TO US!
  12. well... by Unominous+Coward · · Score: 5, Funny

    my GNOME has always sat silently on my front porch. And now it's singing MP3s encoded with LAME?
    Who would've though that open source software would lead to a singing GNOME?

    --
    "Smoking helps you lose weight - one lung at a time" -- A. E. Neumann
  13. KDE VS NOME by westyvw · · Score: 2, Interesting

    I use gnome when I am root. As a user I like KDE. I am using Redhat 8 and I like KDE. I wanted to like gnome, I really did. I have upgraded it and KDE, and yes KDE is HUGE and its bloated big time. But so what, its linux, and its not like its gonna hit a swap file. Linux does what it does well, and on this laptop KDE is running smooth and sweet. I have eye candy, I have apps I use, and they work fine. Gnome just doesnt cut it when it comes to looking good. There are also several things in gnome that bug me. But the best part of all is that it doesnt matter, I also use Evil Entity and have been very intrigued with Enlightenment. When I get around to gentooing E17 as long as I get font antialiasing, I am going there and not turning back. Evil Entity Linux has shown me enlightenment and I am on board. How cool is it to double click the desk top and get a console? Very. How fast is it? Click and GO. So in conclusion KDE is huge, but has a reason to be, gnome? I dont know what your thinking. Its becomming more blurred every day.

  14. Sawfish by steveha · · Score: 4, Informative

    My understanding is that they removed Sawfish because it is difficult to maintain. The original developer of Sawfish has moved on to other things, and he isn't working on it at all. Sawfish is lacking some major features (multihead support, accessability), and large parts of Sawfish are written in LISP. I guess the GNOME developers don't like working with the code base.

    Metacity is simpler than Sawfish, and the theory is that it will be simpler to keep it bug-free.

    I've switched to Metacity; I'm content with it.

    The guys who get paid to work on GNOME are not doing anything with Sawfish. If its fans are dedicated enough, however, they could keep it going.

    steveha

    --
    lf(1): it's like ls(1) but sorts filenames by extension, tersely
  15. The problems of GNOME by rseuhs · · Score: 2, Insightful
    GNOME has a couple of problems:
    • It was created in a political effort (to replace (=kill) KDE.) and politics is still very involved in GNOME. I really acknowledge what GNU has done in the 80's and early 90's, but lately they have become a bunch of buerocrats and politicians. KDE vs GNOME is pretty similar to Linux vs. the Hurd. - Pragmatism versus Politics. It has improved lately, at least GNOME's primary goal doesn't seem to be killing off KDE anymore and they seem to even cooperate.
    • GNOME made the big mistake in listening to bashers. The bashers (= non GNOME users) said GNOME was too complicated so the politicians (see above) decided that many configuration options must go in Gnome2. That pissed off many real users but attracted not a single new user. (The drooling moron that was targetted by this decision doesn't use anything else other than what is preinstalled anyway. And even if he does (or it is preinstalled), he doesn't dig around config options anyway and uses the defaults, so any "complexity" doesn't hurt him.)
    • C. KDE/Qt/C++ programming is faster and more elegant. Again, this was a rather political decision. (Almost all GNU software is C-based, therefore GNOME has to be C-based, too) Yes, in theory many non-C language bindings exist, but in the real world none of them are used for any non-trivial project.

    1. Re:The problems of GNOME by msaavedra · · Score: 5, Insightful
      GNOME made the big mistake in listening to bashers. The bashers (= non GNOME users) said GNOME was too complicated

      No, they didn't listen to bashers. They listened to the usability tests that Sun and Ximian have done, with user skills from beginners to those very experienced with UNIX.

      Yes, in theory many non-C language bindings exist, but in the real world none of them are used for any non-trivial project.

      Not true again. Galeon is written in C++. A large portion of redhat's system tools, including their installer, are written with the python bindings. Sawfish is mostly written in a weird dialect of Lisp called Rep. None of these are trivial apps.

      I think your idea that Gnome is very politically oriented is a bit off. After all, they've refused to elect Richard Stallman to the Gnome Foundation Board :^)

      --
      "Any fool can make a rule, and any fool will mind it."
      --Henry David Thoreau
    2. Re:The problems of GNOME by deaddrunk · · Score: 5, Insightful

      Drooling moron? I wish you smelly, pedantic bores would realise that most people don't want to hand-hack some poorly documented config file, they want to play games, browse the web, do their taxes and all the other things that Windows allows them to do (albeit sometimes in shades of blue).

      Don't diss peope like my dad just because he's got better things to do. If you took your head out of your backside occasionally you might be able to see this for yourself.

      --
      Does a Christian soccer team even need a goalkeeper?
    3. Re:The problems of GNOME by koh · · Score: 5, Insightful

      Some clarifications are needed here.

      It was created in a political effort (to replace (=kill) KDE.) and politics is still very involved in GNOME. I really acknowledge what GNU has done in the 80's and early 90's, but lately they have become a bunch of buerocrats and politicians. KDE vs GNOME is pretty similar to Linux vs. the Hurd. - Pragmatism versus Politics.

      Once upon a time, a couple of students coding an image manipulation program (The Gimp) decided to design their own X toolkit as the existing ones didn't satisfy them. They called it gtk+, and it soon became the toolkit of choice for many coders, since QT was still affected by license sickness at the time.

      Gnome came up later not as a KDE killer, but as a higher-level UI API to design applications on top of gtk+. The K desktop environment is an environment, Gnome was supposed to be a toolkit (and in many aspects still is).

      It has improved lately, at least GNOME's primary goal doesn't seem to be killing off KDE anymore and they seem to even cooperate.

      The KDE vs Gnome flamewar was started, battled in, and lost by the same people who bash emacs vs vi or linux vs windows : users. The Gnome developpers and project leaders never tried to "kill" KDE AFAIK, and it wasn't the other way around either.

      GNOME made the big mistake in listening to bashers. The bashers (= non GNOME users) said GNOME was too complicated so the politicians (see above) decided that many configuration options must go in Gnome2. That pissed off many real users but attracted not a single new user.

      What they did is try to "innovate" in a "corporate" way by producing UI guidelines and following them. This may have been a political decision indeed, but the real problem here is that the UI specs just get in the way. Gnome is trying to be an environment, but, as a toolkit, it has to coexist nicely with former versions of itself. Having gnome1 and gnome2 apps running simultaneously (often you can't avoid it, e.g. everything you run is gnome2 except evolution which is still gnome1) brings chaos to your desktop. The preferences have to be defined twice, once for gnome then gnome2, and some overlap and mess things up.

      C. KDE/Qt/C++ programming is faster and more elegant. Again, this was a rather political decision. (Almost all GNU software is C-based, therefore GNOME has to be C-based, too) Yes, in theory many non-C language bindings exist, but in the real world none of them are used for any non-trivial project.

      C was chosen because not everyone could afford C++ compilers when gtk+ was designed. The choice has stuck ever since. Many language bindings do exist, and since you found no non-trivial project using these, did you consider the possibility it may be so because the _original_, _raw_, _C_ toolkit is easy enough to get the job done ? ;)

      As I final word, I have to say my main concern about gnome these days really, genuinely is gconf. I know about it being not evil, not really a registry, XML based, easy to modify, and such. I don't buy it. It is a registry. It means that every emerge -u world I issue that upgrades gnome2 may result in me and my users having to lose 20 minutes reconfiguring. Because some applet in your panel changed its gconf property format. Or everything keeps crashing because a major component has. And you can't be bothered to dig the gconf repository (ha!) to find the offending key, because, well, it's time to go to work. Which means deletion of .gconf and .gnome* so defaults can be restored and things can run again.

      Some registry upgrade strategy is required I believe...

      --
      Karma cannot be described by words alone.
    4. Re:The problems of GNOME by slux · · Score: 3, Insightful

      Yes!

      I've only started to really like GNOME after 2.x where they made it simple and elegant. There used to be millions of little options in the control center, WM, everything, just like there still is in KDE. The usability test have really improved GNOME a lot.

      Customizability is only a good thing up to a certain point. You can't really be easy to use *and* ultra-customizable at the same time. I have a lot of respect for KDE (and the file picker dialog really is better because of offering easy shortcuts to desktop, floppy, CD etc. even if a little busy... I bet GNOME will adopt those).

      So, you basically have to make some sort of a compromise between intuitive, ultra-customizable and efficient to use. GNOME has just decided to have the ease of use as the top priority and I applaud them for that. Fortunately, we can all choose between GNOME, KDE or something else (I'm currently using ion which could fall to the concentrate on efficiency above all category)

    5. Re:The problems of GNOME by lordcorusa · · Score: 2, Insightful

      Gnome has gone with usability tests because the first thing you learn in any Human-Computer Interaction course is that developers know squat about how regular people use computers. Gnome, through Red Hat, Sun, Ximian and others, are targetting regular people with their software, so it is natural that they perform usability tests. If Linux is going to remain relevant in the long term, we must gain users, and guess what, those users will be mostly regular people, not developers. Both Apple and MS make extensive use of such tests, I'm glad to see that we (the Linux community) are too.

      The Internet really doesn't tell you much, as only geeks like us ;-) comment on computer interfaces online, and we aren't necessarily the people they are targetting. That's not to say Gnome doesn't care about retaining existing users, as most Gnome users I know, except for a couple of die-hard "I must customize everything" uber-geeks, love 2.0. It just means that they want feedback from a new source, regular people, and the only way to get that is to conduct tests.

      The results are about to pay off. Gnome made massive usability steps forward with 2.0. 2.2 didn't really improve the interface as noticably, but 2.4 will include such things as improved file dialogs, and many other fixes to a lot of the currently outstanding interface complaints.

      As to your complaint about removal of features. Enlightenment was "removed" because Enlightenment's maintainers were moving it in a direction opposite of where Gnome's maintainers wanted to go. Sawfish was removed b/c its code was extremely complex (messy) and I believe I heard that its maintainer was quitting, hence Gnome wanted a lightweight WM that they could *properly* integrate into the desktop. As Metacity matures, expect to see it gain some more functionality, although it will never be as customizable (bloated) as Sawfish. Finally, I do not know what you mean by Balsa being removed. Sure, Evolution is now the default email client, because it offers an easier and more feature-rich interface than Balsa, but Balsa is still in active development and is only one install away from being on your system!

      As far as your last comment on using politics as an excuse for the things they are doing, what they are doing is making the interface easier to use and attracting new users, all while making sure that the code is more easily maintainable for the future. Does that sound like the result of politics or pragmatism?

      --
      The preceding comments reflect the author's personal opinion and are public domain, unless explicitly stated otherwise.
    6. Re:The problems of GNOME by nbvb · · Score: 4, Interesting
      ealise that most people don't want to hand-hack some poorly documented config file, they want to play games, browse the web, do their taxes and all the other things that Windows allows them to do (albeit sometimes in shades of blue). Don't diss people like my dad just because he's got better things to do.


      You know, it's not even all about people like your Dad -- people like me want stuff to Just Work too.

      I'm a Unix sysadmin by trade. (Mostly Solaris, but now some HP-UX as well) At work, I do nothing _but_ futz with configuration files and tweak things and make it go --- not so much because things are busted, but because I'm trying to make them run _better_. Things like setting the sd_max_throttle setting in Solaris, or various ndd commands to disable source-routed frames and so on ...

      Anyway, when I get home at the end of the day, the LAST DAMNED THING ON EARTH I want to be doing is tweaking config files, downloading Widgetx 0.234567 and finding out it's incompatible with the libc libraries in my OS, so I have to upgrade to glibc and now Widgetx still doesn't work because glibc broke my window manager.

      I remember those days --- the libc-to-glibc migration ... I still have nightmares about that.

      March 24, 2001 I bought my first Mac. And I haven't looked back since ...

      Now stuff Just Works. I come home and I can read my email, play games, connect to work, and even watch DVD's and edit home movies and play with my digital camera ....

      Some folks can't see the forest from the trees --- The end-goal here should be for the system to just GET OUT OF MY WAY and let me work ... and Linux unfortunately hasn't done that in many years.
    7. Re:The problems of GNOME by 7-Vodka · · Score: 2, Interesting
      "No, they didn't listen to bashers. They listened to the usability tests that Sun and Ximian have done, with user skills from beginners to those very experienced with UNIX."

      Yeah, and therein lies their problem. For all the money that goes into usability testing, they are BULL-FUCKING-SHIT.

      No offense, but they sit these people who've never used gnome before in front of a computer for 15 minutes. Watch them go: duh.. I don't get it.
      and then try to draw conclusions based on this as to what would make gnome better for everyone.

      What utter fuckin bullshit. Do you buy a computer, use the desktop environment for 15 minutes, and then throw it away because you're done? NO! You use your computer for at least 3-4 YEARS. You learn. You're not a computer-illiterate-monkey for the rest of your life with a goldfish memory. In other words, of ALL the people using gnome *right now* only about 2 of em are within the first 15 minutes of using it. All the rest are at different stages of being used to it. Therefore the whole basis of these usability studies is that they're great for making gnome usable the first 15 minutes you sit down with it.. but that's it. Then you're out of the target market that benefits from them.

      You want to do R-E-A-L usability studies? get 100+ people who use gnome NOW. Of all different levels of skills, just like distributed in the user community. Study them for at least 3 months. Thouroughly. Then make your decisions.

      --

      Liberty.

  16. Did something really go "wrong"? by dcuny · · Score: 4, Interesting
    This is one of those "what went wrong with Gnome" articles. Obviously, if you love where Gnome 2.2, the isn't anything gone wrong.

    I belong to the "something has gone wrong with Gnome" school of thought. I dearly want Gnome to succeed. It's got a different sort of style and sensibility than KDE and Windows, and there's a lot of great stuff there.

    Love it or hate it, KDE feels like a unified desktop, while Gnome feels like a cobbled together set of unrelated tools.

    The "Open File" dialog is a thing of shame, and I can't believe that it won't be until October until a replacement comes along. The fact that something so basic has been allowed to stay unchanged so long, in my mind, reflects the difference between KDE and Gnome.

    I don't think that it's an organization issue, or even that one group is more clever than the other. My guess is that, at some level, Qt really is better than GTK. I don't know if it's C vs. C++, or KParts vs. Corba, Glade vs. KDevelop... Perhaps Nick's got it right, that it's the underlying objects. KDE doesn't seem to have suffered from having a C++-centric toolkit, and Gnome doesn't seem to have benefitted from having a C-centric toolkit.

    The last release of KDE had some pretty cool stuff in it - I was eager to get my hands on it and play with it. In contrast, most of what I've heard about Gnome 2.2 has been about what it doesn't have in it anymore. It apparently won't even be featured in the next Knoppix release, since it's broken so badly.

    But I wouldn't discount the future of Gnome. Maybe .NET/Mono will solve the problems (I wouldn't bet the farm on it). Maybe there are no problems at all - just a different desktop, with a different way of doing things.

    But, gah... Please, fix that "Open File" dialog!

    1. Re:Did something really go "wrong"? by nonmaskable · · Score: 2, Insightful

      >My guess is that, at some level, Qt really is better than GTK. I don't know if it's C vs. C++, or KParts vs. Corba, Glade vs. KDevelop

      Bingo. I've worked with both on different projects over the last five years and there's no comparison - a (non-trivial) KDE app is much easier. Also, the way the framework and dev tools are designed, you have to work at it to write an app that isn't consistent with KDE environment standards. Not the case with GNOME.

      Also, C++ is a much more natural fit for gui app development than C. Yeah, you can make a C library look somewhat OO, but if you've got C++ coding skills, why try to make a pig fly?

      The language and framework baggage that the GNOME developers are saddled with make them work twice as hard to achieve the same thing. Thus, less time available to make things polished, bug-free, etc. Maybe this is why the GNOME leadership is pushing the super-stripped newbie desktop direction.

      Yes, these are all my subjective opinions, but I've seen them played out over and over throughout the last several years of KDE and GNOME releases. Better performance (and art pre KDE 3.1) for GNOME, better consistency and integration on KDE. And every release of GNOME, more promises that the latest set of brainfarts will be fixed in the next release.

    2. Re:Did something really go "wrong"? by GauteL · · Score: 3, Informative

      "The last release of KDE had some pretty cool stuff in it - I was eager to get my hands on it and play with it. In contrast, most of what I've heard about Gnome 2.2 has been about what it doesn't have in it anymore. It apparently won't even be featured in the next Knoppix release, since it's broken so badly."

      While I'm not that opposed to the rest of your post, this one is assuming way too much. GNOME 2.x has been about cleansing and purifying. You assume that removing things makes it broken. I on the other hand applaud what have been done, since it makes GNOME easier, simpler and more elegant. The people complaining are very loud. The people that like this do not bother screaming about it. In addition the project is trying to attract newbies, which would not care about the ability to switch window manager in the GUI (which KDE thankfully does not do either).

      Knoppix has always been about KDE (the whole name implies it). That they did not like GNOME 2.x does not surprise me the least.

      I also disagree that KDE feels more unified, I personally think it is the opposite, but every one has their own taste.

      The file dialog is not good, and is being fixed, but there is a lot of applications out there that just use GTK+ and not the rest of GNOME. Two totally different file dialogs for The GIMP and Gedit would not be very good, so it has been decided that the file-dialog will need to be fixed at the GTK+-level.

      The rest of the GNOME-project is not going to stand still and wait for it to be included in GTK+, so it is highly possible that the next GNOME-version (2.4) will still be based on GTK+ 2.2 (with the old file dialog).

    3. Re:Did something really go "wrong"? by mickwd · · Score: 4, Informative

      "Knoppix has always been about KDE (the whole name implies it)."

      Actually, the name comes from the guy who produces it, Klaus Knopper.

      But then again, maybe he changed his name by deed poll ;)

    4. Re:Did something really go "wrong"? by macshit · · Score: 2, Insightful

      The file dialog is not good, and is being fixed, but there is a lot of applications out there that just use GTK+ and not the rest of GNOME.

      BTW, what is it about Gnome's file dialog that everybody hates so? It seems OK to me (it's certainly as good as the one in windows). Also, the fact that the TAB key works properly is a big point in Gnome's favor...

      --
      We live, as we dream -- alone....
    5. Re:Did something really go "wrong"? by mjh · · Score: 2, Interesting
      what is it about Gnome's file dialog that everybody hates so?

      What I hate about it is that if I have to navigate around to different directories (i.e. directories other than the default) it is extremely inefficient.

      The windows dialog is better in that it gives you a bunch of defaults that can rapidly take you to common places (e.g. Desktop, My Documents, My Computer).

      KDE takes this one step further and allows you to define your own common places. So that if you configure "~/ftpin/" as a common location for you in one application, every other application inherets that common location.

      I personally find it incredibly frustrating to navigate around in the gnome file dialog. I typically switch between two directories: ~/ftpin/ and ~/win/windows/Desktop. In GNOME apps, switching between these two locations takes 5 double clicks and lots of drag navigation. In windows this takes 1-2 double clicks and a little navigation (depending on where I'm trying to get to). In KDE it takes 1 double click no matter where I am.

      --
      Key to financial independence: Spend less than you earn. Save and invest the difference. Do it for a long time.
    6. Re:Did something really go "wrong"? by Knuckles · · Score: 3, Insightful

      what is it about Gnome's file dialog that everybody hates so? [...] the fact that the TAB key works properly is a big point

      The reason everybody complains is that nobody knows that normal shell tab completion is possible in the dialog. I don't know if that works in KDE at all. People clickety-click their ways through it. Of course the gtk dialog sucks then. I once filed a bug that the selector should have a text saying "Use tab completion here" over the text enter area, but was turned down (rightly so :)

      --
      "When I first heard Daydream Nation it quite frankly scared the living shit out of me." -- Matthew Stearns
  17. Re:It's nice to see by bonch · · Score: 4, Informative

    Bad analogy. Wheels are essential. That's like a mouse cursor or a basic window in GUI terms.

    But KDE and Gnome also copy dialogs, start menus, taskbars, basic design conventions, and much more.

    You can either copy forever in a futile attempt at winning the Windows crowd (yeah, let's give them half-assed clones of what they already have), or innovate and create something people will actually want to use.

    You say Microsoft has good ideas that are poorly implemented. KDE and GNOME are just copying what's been done in that department, under the guise of making it more "customizable" (wow, I can move the taskbar and start menu around now).

    Please, won't somebody create something new? The "killer app" I think Linux needs is a new GUI system designed from the ground up for desktop use. Don't give me "well, write it yourself," because I don't have the skill level, but more importantly, it's a ridiculous attitude to have to start with. Besides, if you want a graphic designer, I'm your man. Linux apps are always sorely lacking in the aesthetics department.

  18. Excellent topic for discussion... by gnovos · · Score: 2, Funny

    As a followup, I wonder if we can finally settle which religion is the one true faith and whether or not abortion should be legal.

    --
    "Your superior intellect is no match for our puny weapons!"
  19. Question on licensing by Tyreth · · Score: 5, Insightful
    I used to be a GNOME man myself, but have recently become sold on KDE, because it really does shine. Not that long ago, both projects were at a similar level. Now kde has shot ahead, and gnome is left unconfigurable, empty. But that's not why I'm writing...

    Something concerns me with the Qt licensing. I'm asking people who likewise share a love for the freedom that free software gives us, not to those who don't really care.

    Imagine 3 years from now KDE has overtaken the Linux desktop, and GNOME/GTK+ has faded to obscurity. The Linux desktop is beginning to look bright and we start to have many commercial applications made for us (free is always better, but commercial is necessary).
    With GNOME or KDE it is possible to make commercial applications. With GNOME the developer merely takes advantage of the LGPL license. In KDE however, the developer would need to purchase a license from Trolltech for Qt.

    Now I have no problem with making companies pay - it's an incentive to make free software. But what I don't like, is if Qt becomes the necessary standard, that we have a commercial company that is the controller of the fate of commercial applications. I don't like the thought of commercial apps for Linux being in the hands of another company - I'd much rather if the community controlled such a mechanism.

    So I want to know if others think my concerns are legitimate or misinformed?

    1. Re:Question on licensing by twener · · Score: 4, Insightful

      Let the companies decide: Obviously Adobe, Borland, Hancom, Opera and others have no problem with Qt being available either under GPL or QPL license. In my opinion the price for Qt under QPL and for support are peanuts for these (and smaller) companies. They are glad to have someone who can give them support for the tool kit. Who offers commercial support for Gtk?

    2. Re:Question on licensing by darnok · · Score: 2

      > So I want to know if others think my concerns are
      > legitimate or misinformed?

      If you're misinformed, then so am I ;->

      I share your concern with Qt's licencing. I'd hoped Trolltech might have recouped whatever costs they have and then released Qt under something like the GPL - who knows, they still might? - but it hasn't happened yet.

      What bugs me with licences such as those that apply to Qt is that it's not "scalable". If Adobe or Oracle want to buy a Qt licence for their commercial apps, well it's not really going to be a significant expense for them. However, if I want to release my "commercial" app, with no marketing budget, then a Qt licence represents a much more significant investment.

      Suppose I only sell a single copy of my app (extreme example). Depending on the price I charge, I may find myself out of pocket when I factor in the Qt licence cost.

      I'd be much happier if I could pick one of the following payment schemes for Qt licencing:
      - pay Trolltech x% of the gross income I derive from all software that uses Qt
      - pay Trolltech a flat $$$ amount which will allow me to sell any software I like that uses Qt
      - pay Trolltech a (smaller) $$$ amount per application that uses Qt
      - (maybe a few others as well)
      and have the freedom to switch between payment schemes at my own discretion.

      My tiny startup company would start out with the first option, as it would presumably cost me hardly anything for the first few copies of my product that were sold. Then I might switch to the 3rd option, once I'd sold a few more copies. Finally, I might switch to the 2nd option once my software company was in full swing and I was pulling in the big bucks.

      The Adobes of the world would probably use option 2 from day one, simply because the expense would be a relatively tiny one for a company of that size.

      The current licencing scheme seems biased in favor of large commercial software houses over the startups.

    3. Re:Question on licensing by Roberto · · Score: 2, Interesting

      And what's in it for TT?

      YOu start with an option where they may make no money at all, yet they have to give you support. Then, once you start to see that you will get money from your app (some of which would go to pay TT)... you switch to the other scheme, and they only get the flat fee!

      What you want is TT to take the risk involved in the first scheme, while topping your expense at the fixed cost of the flat fee. No company is going to increase their risk FOR YOU!

      Really, what you want is charity. Like the part about "I'd hoped Trolltech might have recouped whatever costs they have and then released Qt under something like the GPL"

      Even ignoring for a moment that Qt *is* released under the GPL, why on hell would someone who makes a living selling a product stop selling it just because he has recovered the initial investment???? That makes zero business sense!

      It's like saying "hey, I bet Disney has recouped costs from The Lion King, why don't they make it FDL?"

  20. Re:It's nice to see by kigrwik · · Score: 2, Interesting

    I often swap things from one server through ssh (fish://) to another one with samba (smb://) by drag-dropping from a vertically-splitted konqueror window from my desktop that sits on a third computer.

    Do that with builtin Explorer functions.
    For that matter, do that with Nautilus, too !

    --
    -- don't discount flying pigs until you have good air defense
  21. Re:It's nice to see by Trurl's+Machine · · Score: 2, Informative

    Gnome and KDE are incorporating wonderful and exciting features... that are copies of stuff Microsoft was doing 4 years ago.

    ...that are copies of Stuff Apple and NeXT were doing 8 years ago :-)

  22. Re:It's nice to see by kubla2000 · · Score: 2, Informative

    Bungi, you're such a troll.

    Explain to me how the DOS cli wasn't a "copy" of the Unix cli? The trail for "originality" stretches back a long way.

    And what's with the martyr like "-1 Pro Microsoft"? Stop trolling, start posting something insightful and you might get some respect.

    I can't believe I've taken the troll bait... enough.

  23. Gnome VS Kde and Linux by westyvw · · Score: 2, Insightful

    Right now, and I am telling you this becasue you are geeks. No MATTER what I do, KDE, GNOME, Redhat, Mandrake, Evil, and all the others..........THEY BREAK! I have broken every installation possible, except maybe Knoppix, but thats in a class by itself. When I setup a SERVER I dont give a damn about the GUI interface. I want stability. And thats what I get. Redhat 7.3 on my servers. Redhat 8 with no gui on my firewall seems to work OK but is a pain in the ass. The point is that NO xwindows system has got it down cold. I want a review of the Xwindows server that knows my vid card, knows my sound card, knows that I have hardware graphics etc. My redhat 8 using KDE has become broke at my work. Sound card is busy. Always busy. Windows doesnt complain only Linux. Configure till my ass is blue and its still refusing to play XMMS. WTF. More important then KDE or GNOME is that linux gets its act together. Yes I know a new X is out. Sorry to say this but windows slogan was "where do you want to go today" and Linux under a graphical interface is "What do you want to break toaday?"

  24. Re:It's nice to see by BlackHawk-666 · · Score: 2, Informative
    Microsoft are not well known for innovation. They are well known for buying companies that are innovative or for fairly good implementations of someone elses innovation. Some examples might help here:

    DoubleSpace/Stacker

    DOS/CPM

    Windows/X11/MacOs/Next

    Excel/Visicalc/Lotus

    Word/Word Perfect

    IIS/Apache

    IE/Netscape/Mosaic

    There's tons more examples available for the interested. Also, Microsoft are well known for bad early releases (1.0-2.0) but getting it right the third time - hey, let's have some more examples:

    Dos 3.0

    IE 3.0

    Word 6.0

    Windows 3.0

    See the pattern - all pretty suckful on first release (also all copies of someone elses IP) and yet all matured by version 3.0.

    --
    All those moments will be lost in time, like tears in rain.
  25. Need a new GUI paradigm by Kirby-meister · · Score: 2, Interesting
    OS X goes for the simple desktop, Windows is becoming more menu-based but still keeps that hint of desktop, and the major GUI's for linux are cloning those desktops.

    While it's nice Linux emulates these other OSes for "consistency" or such, why not develop a new "type" of GUI? Remove the desktop metaphor, the icons, the needless menues. Why not a simple GUI with no mouse where you cycle between things you want your computer to do? A circular node-based selection scheme, like the GameCube's OS except instead of moving around a cube you move around a sphere or circle, where the options are chosen by moving left or right in the circle and choosing things like "E-mail," "Write a paper," "Browse the Internet," "Write a spreadsheet," "Install something," or even "Have computer tune itself up" (so that it sounds easy to understand to a normal user, but it does all the stuff they don't care about like defragging the ol HD or updating virus protection - a technical support employee's dream - just name it something that makes it appealing for them to run it).

    A friend of mine once said "If you could make something easier to use [than Windows], I'd buy it." Granted, he's not into computers, but the majority of people aren't "computer people" at all - they just want their computer to do what they paid $1000-2000 for it to do. And, being technical support for the freshmen in my hall, I can tell you that NOBODY who isn't into computers ever updates security packages, virus protection, or even software they're using, nor does anybody ever run defrag...

    1. Re:Need a new GUI paradigm by FooBarWidget · · Score: 2, Insightful

      Because that won't work. You can "innovate" as much as you want to, people simply won't switch.

      Yeah, you can give people a whole different desktop methaphor, but average users don't WANT to learn! They demand things to Just Work(tm) and to work like they used too. Too many people are used to Windows; they will not use something that's even slightly different.
      People are resistant to change, especially regarding to computers. If I put my mother behind a different desktop, she will NOT like it, no matter how "innovative" it is.

      "Innovation" is only an argument for geeks. And since Slashdot is a geek community, of course posts about "innovation" gets modded up. But the average user don't care.

  26. The Direction of GNOME by psr · · Score: 5, Insightful

    There has been a lot said about the usability of GNOME, and a lot of work done to make the user interface more consistant. However I think that it has mostly been a waste of time. The people who are writing the GNOME Human interface guidelines are forgetting that the majority of GNOME users are going to be UNIX/Linux users, and that to these people it is not necessarily atractive to use a desktop environment which tries simply to be a better Windowss than windows. Take for example key bindings. In the Unix world there have always been two different sets of keybindings that people use, emacs keys and vi keys. I think that it is fair to say that the majority of unix users spend a lot of thier time in either emacs or vi. Gnome used to try to emulate some of the emacs default keybindings, but now they all seem to have been replaced with windows keybindings.

    Another good example is the "too many clocks" problem. A Sun sponsored ethnographic study into GNOME usability said that users were confused when trying to add a clock to a panel, because there was a multiplicity of clock applets. The people who write these things make a basic mistake of thinking that a windows user should be able to walk up to a UNIX machine, grab the mouse and go, and that makes for good user interface. Well its not true. The old MacOS is often cited as a good UI. The first time I tried to use it, I didn't have a clue what was going on. The menu bar at the top confused the hell out of me. That doesn't mean that it wasn't a good UI, it just means that it wasn't TWM or windows 3.11, which is what I was used to at the time. So I was pissed off when I upgraded my version of gnome and half the applets I used had gone!

    Don't even get me started on window managers with maximise buttons!

    Developers should remember who they are developing for, and give more precedence to unix traditions than to windows traditions. It is nice to be able to attract new users from other platforms, but it shouldn't be at the price of losing users on the current one. Users from MacOS or windows should have to learn how to use a new user interface. If theres nothing different then theres no point in changing.

    --
    psr --History is ending.
  27. Re:It's nice to see by Anonymous Coward · · Score: 5, Insightful

    No, the ridiculous attitude to have is to presume that you can sit, having made absolutely no contributions aside from a retarded comment about a "killer app ... new GUI system," and tell coders what they should be doing with their time.

    What exactly do you expect? Some sort of magical new alternative to dialogs, start menus, and taskbars? Those have been the staple of GUI design, not only for Windows, but for MacOS, BeOS, OS/2, and basically all other GUI systems.

    Have people tried to create radically new desktops before? Yes, and those have always been spectacular failures. The second someone finds something better, EVERYONE will switch. For now, this is the paradigm we have, and every group tries to creates its own vision of that paradigm. These are not "half-assed clones".

    Believe it or not, but some people actually prefer using Linux desktop environments over Windows. I'm one of those people. I can't stand Windows at all, so I use Gnome. It's not perfect, but neither is Windows. I use what gets the job done quickly and get the bonus of not having to be constantly irritated by the Windows feel.

    Whenever a program is cloned, it is usually for good cause -- sometimes Microsoft or some other company creates a good program or adds something interesting to the UI that others overlooked before. To not take advantage of a proven design for the sake of being different is sheer arrogance. I've noticed that Gnome and several GTK apps draw their influence from various sources to create programs that have their own personality. (I've never really used KDE, but I'm sure the same can be said about it.)

    Which leads me to this: Your comment is total nonsense. Every one of your five paragraphs have at least one major flaw. Some have more. I don't think I'll be able to influence your opinion on the matter at all, so I won't even try. But since you've given your opinion, I thought I'd give mine.

  28. Input methods by MarkoNo5 · · Score: 2, Interesting

    They leave out a lot of imho useful options, while there is an "input methods" menu item for every input box, which you can accidently set to "cyrillic" or "amharic" or ... and fsck up your input box. Yes, I can correct it, but a newbie can't. And yes, these things _do_ happen. A few weeks ago, my mom saw a secretary in a hospital who accidently lost a toolbar. She had to wait until the next day, when the tech guy was around. These things shouldn't be removable by default. Experienced users, the ones who use it, can turn the option on in a matter of seconds, but a lot of people who don't use it can't turn it off.

  29. Re:Gnome's very problem by vandel405 · · Score: 2, Insightful

    Obviously we have some mods who are impressed by big words and are in awe of mensa. This comment is BS the guys is pulling your leg.

  30. Because it's backed by RedHat and Sun. by budgenator · · Score: 2, Interesting

    I switched from slackware to SuSE a long time ago. around SuSE 6.1, so I guess you could say I "grew up" on SuSE and of course because its a Germant Distro KDE was the window manager of choise. This was because the non North American's weren't as caught up in the debate over wether it was politicaly correct to use the non-open Qt libary and therefore spent more time polishing.

    On my new SuSE 8.1 tho I notice that the KDE is slow, sometime drifting off into LALA land, and sometimes not coming back I've had actual screen freezes that required pulling the plug and rebooting. Now that I've got a cable broadband connect it's time to do some serious updateing.

    Gnome on the other hand seems to work a lot better for me does slowdown occasionaly but hasn't actualy frozen yet,(a lot of the slow downs seem to come from Mozilla and not realy Gnome) I miss the more familar KDE interface Gnome is very spartan in comparison.

    One advantage I've really noticed is that Gnome bassed app run a lot better in KDE than KDE app run in Gnome. A good running KDE is a pretty good desktop I've notice that the look and feel of Windows XP seems to be the same as KDE 3, and of course everything in the KDE. I've noticed that when I'm on the wife Windows XP I start to do someting, and have to stop myself because the software isn't in there.

    --
    Apocalypse Cancelled, Sorry, No Ticket Refunds
    1. Re:Because it's backed by RedHat and Sun. by Daengbo · · Score: 2, Funny

      I've noticed that when I'm on the wife Windows XP I start to do someting, and have to stop myself because the software isn't in there.
      Just a tip... When you're on your wife, it should be the hardware that's in there. Maybe you should try more foreplay, but don't worry, it happens to us all!

  31. Re:It's nice to see by Gordonjcp · · Score: 3, Insightful

    ... which is in turn a copy of stuff that Mac System 4 did four years before that, which in turn was a copy of Xerox's GUI work in the mid-to-late 70s, which in turn based itself around the work done at SAIL in the late 60s, which itself ripped off the Lascaux cave paintings. Yes, we know.

  32. Does it really matter? by pongo000 · · Score: 2, Interesting

    A happy GNOME user myself, please someone...tell me it isn't so.

    If you're happy with GNOME, why should it matter what anybody has to say about it? I've never understood the mentality that things in life are deemed "worthy" only if they're popular (pop songs, software, beer, etc.).

  33. Innovation? by FooBarWidget · · Score: 3, Insightful

    "or innovate and create something people will actually want to use."

    But that is the problem. People don't WANT to learn something new!
    "Average users" want things to just work. They want zero learning curve. They DEMAND things to work the like the way they used to.

    "Innovation" will NOT make people switch.

  34. Provocative Article by Yokaze · · Score: 5, Insightful

    Ignore the comparison with KDE for a moment. And the fact that he is pro-KDE. The article is written in such a way, that it provokes. This is the purpose of it. So that people discuss it.

    He raises some valid "problems" of GNOME. Those problems are more metaphyiscal, so they might don't actually have to concern you.

    He raises the valid question: "What does GNOME stand for?"

    The whole project seem to lack consistency in its development process. The whole core parts have been totally replaced. (WM 3 times, Configuration once, FM once). The laudible idea of an "GNU Network Object Model Environment" has been dropped in favour of being a language agnostic desktop enviroment.

    Those aren't real problems, but they are probably the reason for the deficiencies of the Gnome desktop in respect to UI consistency, which is the part KDE concentrated on. And meanwhile, KDE gained some language independency of its own.

    Please note, that I didn't say that the GNOME Desktop is better or worse than the KDE. It primarily means, GNOME could be better than it currently is, when it had concentrated on their primary goal (Being GNOME).

    In the authors admittently slightly provoking words:
    "GNOME's higher purpose was forgotten somewhere along the line, after which it degenerated into a LAME Franken-GUI."

    --
    "Between strong and weak, between rich and poor [...], it is freedom which oppresses and the law which sets free"
    1. Re:Provocative Article by 0x0d0a · · Score: 2, Insightful

      The whole project seem to lack consistency in its development process. The whole core parts have been totally replaced. (WM 3 times, Configuration once, FM once). The laudible idea of an "GNU Network Object Model Environment" has been dropped in favour of being a language agnostic desktop enviroment.

      Yeah, but the problem is that he ignores that KDE's done the same thing (KDE 1, 2, 3...) What happened to the old mail program, the old WM?

  35. Re:It's nice to see by khuber · · Score: 2, Insightful
    You're better off doing GUIs in a way people are familiar with. The familiar has become intuitive. When you change it, you are just making the computer get in the way. Those are common human factors / usability ideas.

    Why do you think you can do a better GUI and make better widgets? You probably can't. Why do I have all these Linux apps with their own widgets and UI paradigm that work poorly? There is no good reason.

    People don't want your avant garde hyperdimensional pie menu and mp3 visualizer scrollbar thingy, they just want to be able to use an app instead of fighting it.

    -Kevin

  36. But it makes up in one huge way.... by SerpentMage · · Score: 2, Insightful

    While GNOME has its issues there are a couple of things. (ironic because last night at the LUGS Linux User Group Switzerland, we talked about this)

    1) KDE looks nice, but it has X different messy icons, GNOME or in my case BlueCurve tries to keep things simple and consistent
    2) Can I write a closed source program in KDE without having to pay QT 1500 USD? NOT LIKELY....

    I like KDE, but because of the fact you have to pay big money to write closed source is a reason I always avoid KDE. It is not that I am going to write closed source myself, but when I consult client I have to lay down the options. These days that kind of cash is hard to get, for what is essentially only a set of API's!!! Which comes for free on most platforms....

    --

    "You can't make a race horse of a pig"
    "No," said Samuel, "but you can make very fast pig"
    1. Re:But it makes up in one huge way.... by infiniti99 · · Score: 2, Insightful

      "OpenQT" ? I guess you're thinking of the Harmony project, in which the goal was to write a Free implementation of Qt back when Qt was not considered Free. This is no longer needed, as Qt is available as GPL now, and has been for many years.

      No one is going to reimplement Qt just to have an LGPL/BSD license. The only people that need such a thing are commercial developers, who are the least likely to ever create such a free project in the first place.

      Sorry commercial developer, pay your dues to Trolltech, so that in turn my KDE is made better. Thank you :)

    2. Re:But it makes up in one huge way.... by 10Ghz · · Score: 4, Insightful
      2) Can I write a closed source program in KDE without having to pay QT 1500 USD? NOT LIKELY....


      So you insist that Trolltech must offer their product to you for free so you could write closed & proprietary software with it?

      Before, GPL-fanatics whined because Qt was under QPL and not GPL. Now that is't GPL'ed, those same people whine because they cant use Qt for free to write closed-source software. They want to deny Trolltech the right to profit from their software, and in the same time, they insist on using the product for free to profit themselves. Hypocrisy. Plain and simple.

      "Do as I say, not as I do!". That seems to be the core of their argument.
      --
      Lesbian Nazi Hookers Abducted by UFOs and Forced Into Weight Loss Programs - -all next week on Town Talk.
    3. Re:But it makes up in one huge way.... by BlackHawk-666 · · Score: 3, Informative

      $1500 buys you 1 day of programming time at my company. I don't think I could write the entire QT toolkit in 1 day, so it's probably worth paying the licence fee.If your clients are having problems raising this sort of cash then they are going to have worse problems paying you a decent wage. I'd suggest getting better clients ;-)

      --
      All those moments will be lost in time, like tears in rain.
    4. Re:But it makes up in one huge way.... by sydb · · Score: 3, Informative

      I read the post more like this: "I needed the ability to write closed source apps, I reviewed the options, KDE didn't allow this, so I picked Gnome."

      He's not asking Trolltech to do anything, he doesn't need them to; Gnome gives him what he needs.

      --
      Yours Sincerely, Michael.
    5. Re:But it makes up in one huge way.... by Espectr0 · · Score: 4, Insightful
      2) Can I write a closed source program in KDE without having to pay QT 1500 USD? NOT LIKELY....

      Can you write a closed source program with GPL software? NOT LIKELY...
  37. Re:A Computer Science Student's Take by Anonymous Coward · · Score: 2, Interesting

    At my university, the TAs would spend time with the students teaching them how to run simple commands from a terminal window. We were taught how to decompress our lab archives, create make files, use emacs, run CVS, and some other stuff.

    If your school doesn't take similar initiative, then I feel sorry for you, but it's stupid to blame a "developed GUI" for a lack of knowledge. Perhaps you were under the belief that becoming a CS major would open you to the Unix School of Witchcraft where bearded coders spend all day feeding arcane commands to the CLI until the reach Computer Nirvana.

    That's not how real life works. I just thought I should let you know now before you spend three years working towards a CS degree and then decide what you really wanted to do was business or biology. I've seen a lot of people do that at my school already.

    My school uses Mandrake. My first experiences with Mandrake on my home computer were fairly poor and I didn't like that my school was using it. Now, I really don't much care. So long as Gnome works and I can compile what I need to, I'm happy.

    I used Redhat 8.0 for 3 months my desktop, and at no point did I ever think "this is like Windows." I did, several times think "this is much better than Windows" and "why doesn't it support XXXXX, even Windows supports that."

    For those wondering how a second year CS undergrad learned to work with Linux, I think I mostly learned how to deal with it by running Slackware as a dual-boot for about 9 months, then running RedHat by itself for 3 months (I didn't know how irritated I would get with RPMs until it was too late. I didn't remove it until the end of the quarter because I didn't dual-boot anymore and I didn't want to be without a computer for an extended period of time), and then Gentoo for the past 3 months. I'm hooked on Gentoo, for now.

  38. They both have problems by DeadSea · · Score: 4, Interesting
    I used Gnome for two years and then recently switched to KDE. Gnome had several bugs that I was tired of. The sidebars that I had would sometimes reinit themselves wrong when I restarted. This caused two or even three copies of each sidebar to come up sometimes. I upgraded to 2.0 and the number of desktops was stuck at 4 (I want 6) and many of the applets I really loved didn't work anymore (game, xmms, screenshooter).

    So I'm giving KDE a try. It has problems too. The most annoying one to me is the way that it switches focus when I use my scrollwheel. It has options for what to do when clicking any of the mouse button (focus, raise, etc) but not the scrollwheel. When you scroll a window that is not focused and not on top, it gives focus to that window but does not raise it. This maybe wouldn't be bad, but then clicking on the window also does not raise it. You have to focus some other window then come back.

    Another thing I don't like about KDE is that it is hard to add buttons to launch X (not KDE) applications to the sidebars. In gnome I could add a launcher easily. In KDE I have to add a non KDE app, it gives me a browse dialog. I don't know where my apps are, probably usr/bin/ or usr/local/bin, I don't want to hunt around, so I try to click on my terminal button so I can do a `which app`. The dialog has the sidebar. Doh.

    The choices for applets in KDE is very underwhelming. In gnome 1 I was able to put applets for gaim and xmms in my sidebar. They are unobtrusive there and available on all my desktops. It was wonderful. KDE doesn't have these.

    Sure the KDE apps all look the same and act the same, but they are not powerful compared to other stuff. I always use Mozilla as my web browser, open office as my word processor, etc. The KDE stuff are nice, but not as full of features. As soon as you add in non-KDE apps, you lose much of this consistency.

    1. Re:They both have problems by Redline · · Score: 2, Informative

      In gnome 1 I was able to put applets for gaim and xmms in my sidebar. They are unobtrusive there and available on all my desktops. It was wonderful. KDE doesn't have these.

      Both GAIM (in nightly snapshots) and XMMS now have "dock plugins" that place themselves in the dock area. (KDE calls it "system tray", and GNOME calls it "notification area") The dock applet API is a freedesktop.org standard that both desktops are using. So KDE docklets work in GNOME 2.2 and GNOME docklets work in KDE 3.1.

  39. Hey! by tortap-0 · · Score: 3, Funny

    That's GLAME to you mister.

  40. Slicker by jabster · · Score: 2, Interesting

    Have you guys seen Slicker?

    http://slicker.sourceforge.net/

    -john

    --
    Slashdot: you'll not find a more wretched collection of villainy and disreputable types...
  41. GNOME and Sawfish by merriam · · Score: 3, Interesting

    I think GNOME needs something like Sawfish -- something with useful features rather than just a Microsoft clone. If the GNOME people have gone off Sawfish, that's a shame, because there's nothing else like it.

    In my experience Sawfish versions 1.2 and 2.0 are not even ready for beta testing. They crash readily and badly. Don't try them unless you're interested in development.

    Sawfish 1.0.1 is fairly solid, and no other free window manager I have heard of comes close in features. It makes it easy to work efficiently. For example, if you maximize, restore and close windows a lot, you can put "Maximize window toggle" and "Delete window safely" on keys easily. You can do the same with about 251 other functions including XMMS controls.

    John Harper commits some user interface howlers like the fixed-size "Edit binding" window, but you'll find that sort of thing in all software. Refreshingly, he doesn't readily make assumptions about what features users don't need. Don't want 251 other functions? Don't use them. If you want a particular window manager feature, try Sawfish 1.0.1 first. It's more likely to be there than in any other window manager, and it will probably be easy to use.

    The original developer of Sawfish has moved on to other things, and he isn't working on it at all.

    The Sawfish list is busy, John Harper is there, and development seems to be going on.

    large parts of Sawfish are written in LISP

    Most of it is written in the author's own personal lisp dialect. One language per developer is a bad principle, but in this case it helped Sawfish become very useful quickly. You seem to suggest that Lisp is the problem. Does it make software hard to maintain?

    Metacity is good for Windows users. It's a better default than Sawfish was with that ugly Crux theme and the settings it came with in the old gnome defaults. But it's a shame that there's no longer a modern, sophisticated and efficient window manager in the project.

    1. Re:GNOME and Sawfish by TheRaven64 · · Score: 2, Insightful
      I think GNOME needs something like Sawfish -- something with useful features rather than just a Microsoft clone.

      Finally, someone has said something sensible. A large number of people I've spoken to (geeks and non-geeks) have said that their next computer is going to be a Mac. Most of them have not actually bought Macs, because they are so expensive. Why do they like OS X?

      It has the power of of a real OS. So does *BSD, and even Linux.

      It has a powerful, yet easy to use UI. Ooops. Sorry but KDE/Gome on X doesn't come close to Aqua on Quartz Extreme. There are two main problems.

      1. Open source developers, in general, do not like following UI guidelines (neither do commercial developers, but they have less choice).
      2. X is aging. As a network-abstract way of putting pixels on the screen, it's great, but beyond that it just doesn't cut it anymore. Compare remote X with a Citrix or Apple remote desktop. It's painful. A remote windows display is usable over a modem, a remote X is just about usable over a 10Mbit LAN (as long as it's switched).

      If the OSS community could throw away X (or at least relegate it to running legacy Apps) and agree on some kind of certification program (possibly on a peer review model) for apps that actually did conform to UI guidelines, then *NIX might be ready for the desktop. Apple have shown it can be done, OS X is ready for the desktop, and a far better thing for the OSS community to be copying from than Windows. A machine at x86 prices with Apple usability levels would popular. Even more so if it ran a version of wine that atually worked (the current versions are almost there), and was seemlessly integrated into the OS.

      --
      I am TheRaven on Soylent News
  42. Everyone is ignoring so much stuff!! by Phantasmagoria · · Score: 4, Interesting

    The article in question is obviously nothing anyone should take seriously. It does not even pretend to be an honest comparison between two windowing environments; it's basically one person's rant about why he prefers one over the other. Good for him, but mentioning only KDE's good points and only Gnome's bad points isn't a useful comparison to anyone else.

    I'm surpised at how poorly informed the people who discuss Gnome vs KDE are. No one has mentioned any of the new accomplishments both environments has achieved. It's still all "file selector" this and "configuration options" that. Dudes, I stopped fretting over thing like that years ago. There's plenty of other things that need focus for a good desktop environment, and are being worked on as we speak, but no one has mentioned them in any of the comments I've read.

    Anyone here even know about the massive time spent on building a rich and powerful "accessibility toolkit" ATK? Or the very well thought out multimedia framework GStreamer that's currently in development. I've only seen a few mentions of the establishment and accomplishments of freedesktop.org - whose goal is to set standards (such as the HIG) which both Gnome and KDE can follow to achieve consistency and inoperatability. How about the universal adoption of Unicode (using UTF8) throughout so that proper internationalization is finally possible?

    These are important things, and much more forward looking than all the nitpicking that's so prevalent in these discussions. These articles and the bickering that ensues are no better than "celebrity tells all" and "other celebrity makes rebuttal" shows on TV. Totally pointless - fun to watch sometimes - but pointless.

    One thing I need to add: Most complaints about GConf that I've read are miss-informed. Yes, the closest approximation is the Windows registry. But it was created with the strengths of that registry in mind, and steps taken to get rid of the problems that the registry had. For example, ALL keys are documented. Which is easier? Hand editing a text file, or going down a list of fully documented options in a gui editor - toggling boolean keys, editing strings, etc.

    I'm obviously a Gnome user. I know KDE has it's own list of accomplishments, but I don't know them well enough to list. My point is, why the hell are you choosing a desktop environment based on which has a better file selector? There is plenty more to look at.

    --
    Loban Amaan Rahman ==> Anagram of ==> Aha! An Abnormal Man!
  43. I have to agree by Khan · · Score: 2, Interesting

    As a long time GNOME supporter and user, the latest incarnation has completely turned me away from it. I was a very happy Gnome v1.4 user and still run it at work. The problem now is that my favortite apps are starting to convert to v2.2 and soon I'll either have to run v2.2 or stay with obscurity in v1.4 My biggest gripe with v2 is Metacity. And yes, while you CAN switch WM's, Sawfish just doen't work the same as it did in v1.4 After not running KDE since the original v2, I have now returned to it with v3.1 I was truly impressed at how much has changed in it and the improvements are unreal. Sorry boys, but your choice of taking MY choices away in Gnome have caused you to lose yet another supporter.

    --

    "Klaatu, verada, necktie!" -Ash

  44. Re:VS. by @madeus · · Score: 4, Insightful

    Redhat choses to use Gnome while most of the "Pure" distros like KDE as do I

    Painting a picture that it's only Red Hat who like GNOME and that everybody else uses KDE is entirely false.

    According to http://counter.li.org/reports/machines.htm, which is just about the most reliable source of information on the subject (due the lack of actual retail figures it's very difficult to count accurately), the most popular core distributions are*:

    - Red Hat (~ 29%)
    - Debian (~ 14.5%)
    - SuSE (~ 11.5%)
    - Slackware (~ 11%)

    It should be noted that Mandrake is the second most popular distribution of all with over 17.5% market share, though it is not a 'core' or 'pure' distribution as it is based on Red Hat.

    * = These figures are taken for a random sampling of 110,000 GNU/Linux users.

    Out of these distributions:

    - Red Hat - primarily supports GNOME
    - Debian - primarily supports GNOME
    - SuSE - primarily supports KDE
    - Slackware - no notable preference exhibited

    Anaecdotally - even when you include Mandrake's slight predisposition towards KDE - this puts GNOME's market share at ~ 43.5% and KDE's at ~ 29%.

    With all of these distributions you can obtain GNOME packages or opt to use the GNOME desktop. There is clearly no case to be made that 'core' distributions choose to use KDE to GNOME or even prefer KDE to GNOME, if anything, GNOME seems to have greater market share, not less.

    In my opinion, Gnome is turning into the Frankenstein of the open sourced world.

    It should be noted that GNOME and KDE are NOT trying to meet entirely the same goals!

    KDE works very well 'out of the box' - all the applications are tightly integrated and it works with little fuss as most of the core components are built and written by a core set of KDE developers.

    GNOME however, has become a vastly more ambitious project, it is about building a scaleable, flexible, and to some degree language agnostic graphical environment. It is perhaps not surprising that someone might think it has become a Frankensein product - but that is to misunderstand the point of GNOME.

    GNOME is a platform for developing and rolling out great best-of-breed applications from disparate developers - software such a GIMP, Gnumeric, Abiword and Nautilus - having them interoperate with each other - and, most importantly - having them interoperate with the user and the desktop environment in a consistent and user focused way. The fruits of this are visible clearly in most current release of GNOME.

    GNOME is being developed with long term goals of usability and expandability in mind. It's not just about creating a desktop for the here and now - to borrow a phrase being used recently by Sun - it's about building a product that can "stand the test of time", an expandable product the developers can be proud of and an environment that others will want to build their applications around.

    The current incompleteness of GNOME means that many users will prefer the convenience and tight integration of KDE at present - KDE certainly better meets many of the shared GNOME/KDE goals, like the provision of a useful default set of software tools and a coherent control panel. In such an imperfect world it's certainly important for users to have choice - but with regard to the future and long term desktop dominance I belive GNOME is a much more likely canidate than KDE.

  45. n00b Linux user comments... by AtomicX · · Score: 2, Insightful
    I have to say that while the GNOME environment is fairly attractive and initially less daunting than KDE's GUI, there are many faults which once you scratch beneath the surface, put KDE in a far superior position:

    • GNOME's utilities are generally VERY inflexible, the PPP Dialer is a good example, KDE's one is quick, easy to use and gets good results. GNOME's dialer is prettier but is missing many important options and simply doesn't work as well for any non-straightforward tasks
    • GNOME's file explorer is a lot less useful than Konqueror. It looks pretty but once again, KDE's one is functionally superior.
    • In many areas the GNOME GUI falls foul of one of Linux' biggest problems - It wasn't designed with end-users in mind. Sometimes you have to do things in illogical ways which can make the interface tiresome to use.
    • KDE has a far larger userbase and as a result, it recieves far more extensions and updates from the community - we have a Catch 22 situation here from which GNOME cannot easily escape
  46. Re:It's nice to see by squiggleslash · · Score: 2, Interesting
    You might want to remove DOS 3 from that ;-)

    The differences between DOS 2.11 and DOS 3.2 were so slight very few manufacturers at the time made much effort to promote what they had. I think on a technical level, the differences really were limited to internals like hard disk support (sizes of filesystems, etc) and support for 3.5" disks which meant that, at the time DOS 3.2 was around, most people didn't care. DOS 3.3 added the "CALL" command to DOS Batch scripts, which was the first major bit of new functionality.

    It wasn't until DOS 4/5/6 that major new functionality was added from a user's perspective, enough to actually mean people wanted to upgrade. The spur for this was competition. Digital Research, Gary Kildall's old stamping ground (not to be confused with Digital/DEC, an entirely unrelated company), created DOS Plus (based on CP/M86 but with the MSDOS APIs added), and then DR DOS, with various new features (the former had preemptive multitasking, though in a somewhat crippled form, the latter a usable file editor and other nifty add-ons)

    The "Everything works for the third version" thing doesn't really apply to Windows either. Ignoring point releases, Microsoft released at least four versions of Windows before 3.0 (Windows 1, Windows 2, Windows 286, and Windows 386, the latter of which was supposedly better than Windows 3.0 when it finally came out, according to people who used it.) 3.0 still languished, it was the first version after Microsoft started a campaign to have it actively bundled with DOS (earlier versions were occasionally, but manufacturers rarely did because it cost more. Microsoft changed the DOS pricing and put pressure on manufacturers to ship 3.0), but few machines ran it well, and most people who used it at all used it for Solitaire... 3.0 had major problems with speed, with screen refreshes, and with the DOS compatability box, which were all fixed in 3.1.

    3.1 was the first version of Windows that took off. By that, I mean people started actively using it at that point. This happened because all the pieces came together with it - PCs just about hit the point where they were fast enough to run it, and 3.1 was the first usable version of the 3.0 series.

    BTW, I rather liked Word 2. I thought Word 6 was a bloated pile of junk... Oh well ;-) Too many people disagree with me for me to be able to disagree with you on that one, but I think it's much underrated.

    --
    You are not alone. This is not normal. None of this is normal.
  47. Booooooriiiiiiiing by X-Nc · · Score: 3, Interesting

    Both GNOME and KDE suck wind. Arguing one over the other is like arguing wich is better, a broken leg or a broken arm.

    CDE is even better than either of them. If you want something that really works look at Xfce. The current "production" version is xfce3 and it can do everything KDE & GNOME can do, and much more. It also is very nice on system resources. It runs as light as BlackBox or IceWM and is just as fast. And the development version of xfce4 will blow your mind. It'll make you cry it's so good.

    The fact is that GNOME and KDE are, functionaly and from a usability standpoint, damn near identical. Under the hood they are vastly different but for a regular user they are interchangable. Bluecurve proved that.

    --
    --
    If I actually could spell I'd have spelled it right in the first place.
  48. Open Software Closing Door to Wider Use by reallocate · · Score: 3, Insightful

    >> XML is human-readable

    And so are C++, x86 assembly, and calculus. But why should someone need to learn them, or XML, to configure a desktop?

    Software can be as open and free as you can make it, but it will remain closed to the real world so long as it comes with a "For Geeks Only" label.

    --
    -- Slashdot: When Public Access TV Says "No"
  49. You know why he doesn't like Gnome? by Quelain · · Score: 3, Funny

    Nicholas Petreley is a raving loony creationist.

    Of course he's not going to like anything involving Evolution. Or bonobos, or any other s^hXimian.

    --
    Cthulhu loves you.
  50. Re:VS. by Xpilot · · Score: 2, Insightful

    Well put :)

    I'm a Slackware and GNOME user, and I'm sometimes amused by remarks such as "all the popular distros except Redhat use KDE as their default desktop". In Slackware, there is no "default desktop". You get to choose between KDE, GNOME or the lighterweights at install time, and switching between all of them is as easy as xwmconfig.

    At Distrowatch, Slackware's default desktop is given as "KDE", and I wonder why. Maybe it's becaused KDE is listed on top of GNOME in the selection menu? ;)

    As for other popular distros, it's also quite easy to choose your desktop, so I don't really get why the notion of a "default" desktop is even an issue.

    --
    "Backups are for wimps. Real men upload their data to an FTP site and have everyone else mirror it." -- Linus Torvalds
  51. control-A by squarooticus · · Score: 2, Interesting

    I want to know why the Gnome developers decided that control-A should "select all" instead of "move to beginning of line" like it does in almost every other (read: emacs editing command-compliant) X application. I can't seem to change it anywhere, even in gconf-editor.

    These are the sorts of changes that make me, as an experienced Unix user, want to look elsewhere. I personally grow tired of the drive to "simplify, man!" and yearn for the days of configurable sawfish and a galeon with 1,000,000 options in the preferences dialog.

    Anyone have any suggestions as to where I should look? I'm completely open.

    --
    [ home ]
  52. Since... by triptolemeus · · Score: 3, Insightful

    Linux is taking over the world anyway, I personally wouldn't mind if we were left with at least choice, when it comes to desktops.

    The world is big enough for the two to hang around.

    --
    The site where: "I'm right, as long as you ignore the things that prove me wrong", became a valid method of debate.
  53. Copy-and-paste job by arturogatti · · Score: 5, Informative

    This was copied-and-pasted from here. It was originally a reply to an article posted on ZDNet in October of 2000.

    1. Re:Copy-and-paste job by hysterion · · Score: 2, Informative
      This was copied-and-pasted from here. It was originally a reply to an article posted on ZDNet in October of 2000.
      Man! Astroturfer caught in full swing. Superb catch :-)
  54. There's only room for one LAME ... by JMZorko · · Score: 2, Funny
    ... and this is it. How dare they proclaim GNOME as LAME, when GNOME clearly isn't *smile*.

    This reminds me of something that happened at my last job. We were using LAME to encode MP3 frame headers so we could then stream them along to our super-funky P2P-erm, "bandwidth harvesting" system. When one of the marketing people asked us for some details about the tools we used, we said "Well, the MP3 encoder we use is LAME." "What?" he inquired. "Yes, we use the LAME MP3 encoder," we repeated. He said, "Well, couldn't you find a better one?" We explained it to him. He became flustered, saying "no customer is going to want to purchase our product if we use that! You guys need to find some Really Cool MP3 Encoder (RCME) or something, and quick!" We laughed. And laughed. And laughed :-)

    Regards,

    John

    --
    Falling You - beautiful
  55. GFlame you! by daemonc · · Score: 3, Funny

    No, KFlame you!!!

    GFlame!!!

    KFlame!!!

    GFlame!!!

    KFlame!!!

    GFlame!!!

    KFlame!!!

    GFlame!!!

    KFlame!!!

    I quit reading Slashdot...

    --
    All that we see or seem is but a dream within a dream.
  56. Re:stupid stupid stupid stupid stupid!!! by kingkade · · Score: 3, Funny

    This stupid squabbling is pointless. Articles like this shouldn't even be published by a supposedly newsworthy organisation.

    That's why it's here on Slashdot.

  57. Re: Your very bad example by ttfkam · · Score: 2, Interesting
    Old, obsolete, non-standard format:
    FullScreen=true
    Exciting, new, XML format:
    <FullScreen>true</FullScreen>

    That's a bit of a straw man argument don't you think? You're putting up a fragile target and then tearing it down. If I had a bunch of key/value pairs like that, why wouldn't I instead use:

    <Config FullScreen="true"
    ValidExample="true"
    TerriblyBloated="false"
    HumanReadable="true"/>

    ...and so on for hundreds of entries. AND(!) I can add hierarchy at any point if necessary whereas the key/value pair file must be completely reworked.

    As for coding difficulty, using the DOM in C++, the code looks something like this:

    DomParser doc("myconfig.xml");
    Element* config = doc.get_root_node();
    if (config->getAttribute("fullscreen")->get_value( ) == "true") {
    // do something useful
    }

    Assuming you are using libxml++ of course. Personally I prefer using other programming languages, but the code is very similar no matter the language. Let me say that again because it's important: "The code is very similar no matter the language."

    And with XML, you get i18n for free. Can your program read Cyrillic characters? What about Chinese characters? Does it handle accent marks correctly? Or are you using ASCII with no contingency for i18n? With XML, it's a no-brainer. If you don't need it, don't use it. If you do need it, it makes recoding much much faster. UTF-8 you say? That works in most cases, it's true, but it doesn't address the other issues of a config file.

    With your own config file format, you must handle comments, multi-line values, conversions from this format to the next, incompatible version. All of these are easier when using an XML parser. But you're a 1337 coder. Don't let me stop you. If you like spending time on config files, go right ahead. I prefer to spend time on the rest of the application.

    --

    - I don't need to go outside, my CRT tan'll do me just fine.
  58. Good Article by swestbrook · · Score: 2, Insightful

    Much like the infamous Halloween documents of past years, it shows the Gnome developers where to really concentrate their efforts. The Halloween documents and other FUD from Microsoft has shown Linus where he needs to work on the Linux kernel -- this is much of the same thing. It is a cry to fix certain parts of Gnome that definitely needs to be improved and at the same time, might bring Gnome back to its original calling, to be a damn good interface for *nix users.

  59. Trendy XMl is bad by tigersha · · Score: 2, Interesting

    I am quite a heave XML user. I think XMl is good for two reasons:

    a) I will NEVER write a parser again. That is already enough reason to use XML. Just eliminating all the string digging makes it worthwhile.

    b) I think a move to tree structures as opposed to everything-is-a-table is a good idea in general.

    That said, one thing about XML that is irritating is when it gets used for things where it not good.

    XSLT is a good example of this. A programming language in XML sytax? Why for chrissakes??!!

    The problem with XML in a PL context is that it is not possible to build trees with multiple branches without complicated syntax. For instance, the following sort of thing is not possible:

    if x ...
    elseif y ...
    elseif z ...
    else ...
    endif

    Simply because a tag in XML can only have a start and en end and NOTHING in between, which leads to things such as XSLT's stupid CHOOSE tag.

    Also, an example such as

    5">

    is dumb when if (x >5) then is su much easier.

    Using XML syntax for a language just because is just plain dumb. Syntax matters. This (sadly) is one of the prime reasons LISP is dead. All the LISPers chout that "Yeah, but its easy to learn once you get used to it". Bullsh*t.

    (if not (> x 2) (+ 4 y))

    is NOT easier to read than

    if x > 2 then return 4 + y

    And for the same reason XSLT is a pain in the butt. But I digress....

    --
    The dangers of excessive individualism are nothing compared to the oppressiveness of excessive collectivism
    1. Re:Trendy XMl is bad by maw · · Score: 2, Informative
      (if not (> x 2) (+ 4 y))

      Well, it's obvious you never got used to it, for a few reasons.

      One is that this is bogus syntax to begin with. Another is that, even if it were legit syntax, no lisp programmer would (fail to) indent like that.

      You're not a troll, but you are an idiot.

      --
      You're a suburbanite.
  60. Re:stupid stupid stupid stupid stupid!!! by Istealmymusic · · Score: 2, Insightful

    On the contrary; this article is constructive criticism. The author doesn't make vague generalizations on why KDE > GNOME, he actually points out specific weeknesses. Which can be fixed. So take any comments on KDE's superiority which a grain of salt; it may do some things better, but it also does some things worse. Without articles like this, how can anything improve?

    --
    "The lesson to be learned is not to take the comments on slashdot too literally." --Vinnie Falco, BearShare
  61. Yes you can by elliotj · · Score: 3, Insightful

    Yes, you certainly can write closed source software with GPL software. The tools you use to create your software do not necessarily impose license restrictions.

    Unless I'm mistaken, I can write a GTK+ application closed source so long as I'm not using any GPL'd code in my app. All I do is tell people who buy my product that they need to get the free GTK+ libraries in order to run it.

    Your argument would be the equivalent of saying you can't write closed source software to run on Linux because Linux is GPL'd. That is simply not the case.

  62. My experience by dotgain · · Score: 3, Insightful
    Gnome (1.?) (redhat 6.0) -> Gnome 1.4 (liked it a little) -> Gnome 2.0 -> /usr/X11R6/bin/twm

    Now [in Gnome2] even the (dismal) file requester takes about five seconds to draw up. I think Gnome is going the wrong way. It's only a good desktop for those that like to fire up a number of apps / windows, and then sit there looking at it / fire screenshots around the globe.

    Apart from adding a bit of spiff, all I can find are features removed. I heard someone type 'gnome 2.2...now you can have transparency in the panel'. Well, 1.4 had that, 2.0 didn't.

    I started using Gnome about three months after I started using Linux, about five years ago. I've been hoping it hasn't, but all I've seen (apart from a glimmer of hope in 1.4) is Gnome go to shit. I think I'm going to get the 1.4 source, maintain it myself and keep using that.

    Not trolling, I'm genuinely disappointed that Gnome has given Linux a bad name, not because Gnome is Linux, but Joe Public who's used to a Windows system thinks that, he can't draw an abstraction between a desktop environment and an OS, and I think that's why a lot of people think Linux sucks. I also think adoption of Gnome by Sun is a bad move. Sure CDE sucks, but it runs.

  63. Re:lets compare apps... by Kourino · · Score: 2, Insightful

    In my experience, Konqueror's rendering times are faster than Galeon's. Other things aren't as fast. (And yes, somebody needs to fix Konqueror's tabs. Fast. :3 ) Galeon crashes a fair amount on my Debian system. GTK programs have a tendency to do that. Haven't run KDE stuff on that system much, so I can't compare.

    I've only ever had one problem with advanced CSS or some such in Konqueror. (The shopping cart at HMV which is some drop-down thing.)

    Konqueror looks like IE? What version of IE are you talking about? The Longhorn version that doesn't exist?

    MAME? You mean that arcade emulator thing? That's not exactly a major, universal application ~_^

    No offense, but I wouldn't make any judgements based on the preferences of the Mplayer maintainers, either.

    XMMS will be disappearing for me as soon as I can replace it. Why? mp3 support at the moment is ... weird. The mpg123 plugin opens *almost* all my files, and gives horrible artifacts when it encounters stream errors. The libmad plugin handles stream errors very well, but some files crash it and it won't recognize all of them. (No matter how much I patch it, this hasn't gone away.) Since I haven't been able to get source material for all the stuff I have mp3s for yet, I can't just make Vorbis files out of these ... even if I did, there would be some artifacts (though MUCH less noticeable with libmad).

    Also, I don't like XMMS' refusal to pick up on toolkit appearance. That's probably also a reason why "KDE try (sic) to make a KDE tool for everything" ... so that a user's apps all look alike, which historically has been one of the biggest complaints about Unix GUIs.

  64. My personal gripe with the Gnome file selector by Glyndwr · · Score: 2, Interesting

    Now, don't get me wrong. I love Gnome, have used it for years (although I am typing this on OSX), and never got on with KDE. I think the article is a big bunch of trolling hooey. But... Many moons ago, I ran the Ximian Gnome packages, probably Gnome 1.0 or possibly 1.2. The File Selector back then had a fourth button at the top of it, next to new folder / delete file / rename file buttons. This button took you to ~ when you clicked it. Where has this bloody button gone? I remember reading that it was a Ximian patch to the file selector, and presumably it never made it into the upstream sources. When I left Ximian (the day I switched to Debian testing), I lost that button forever and I still miss it. It seems like such an obvious thing to me. Bah! Humbug!

    --
    You win again, gravity!
  65. Mandrake is *not* "based on" Redhat! by aquarian · · Score: 2, Interesting

    Mandrake may have gotten its start by bringing KDE to Redhat, but it has had little to do with Redhat since about version 5 (and now Mandrake's at version 9). Just because a distribution uses rpm packages doesn't mean it's Redhat based. Mandrake has all its own administration tools, and even its own package manager that's sort of an apt-rpm hybrid (urpmi). It has left Redhat far behind with respect to this, as well as in installation and configuration, where Redhat is still playing catch-up in many ways. So don't equate Mandrake with Redhat. It's certainly no more Redhat than Caldera or Suse are, both of which started as modified Redhat too, but neither of which have much in common with it anymore.

  66. Posting from Miguel de Icaza by twener · · Score: 2, Informative

    See this posting from Miguel de Icaza which Havoc Pennington hopes will not appear on Slashdot:

    Miguel de Icaza: Reading today's Slashdot comments, you can see that our desktop is falling behind stability-wise and feature wise to KDE. [..] I probably mentioned this before, but when I went to Mexico in December to the facility where we launched gnome, they had all switched to KDE3.