Slashdot Mirror


The Last GUADEC?

An anonymous reader writes "How can we ensure, together, that this will not be the last GUADEC? Last year, during GUADEC, there was that running joke amongst some participants that this was the last GUADEC. It was, of course, a joke. Everybody was expecting to see each other in Brno, in 2013. One year later, most of those who were joking are not coming to GUADEC. For them, the joke became a reality. People are increasingly leaving the desktop computer to use phones, tablets and services in the cloud. The switch is deeper and quicker than anything we imagined. Projects are also leaving GTK+ for QT. Unity abandoned GTK+, Linus Torvald's Subsurface is switching from GTK+ to Qt. If you spot a GNOME desktop in a conference, chances are that you are dealing with a Red Hat employee. That's it. According to Google Trends, interest in GNOME and GTK+ is soon to be extinct."

40 of 376 comments (clear)

  1. Its NOT smartphones. by Anonymous Coward · · Score: 5, Insightful

    Gnome sucks. Its a UI made not for normal users but for the designers imaginary friends.

    1. Re:Its NOT smartphones. by Anonymous Coward · · Score: 3, Insightful

      Not necessarily. I know a lot of "normal users" who are just fine with Gnome 3. What I've found is that the problem is not Gnome 3, the problem is that Gnome 2 went away. I think there would have been a much better situation if Gnome 2 had been maintained in parallel with Gnome 3, so that users had been able to have both installed and move freely between them until Gnome 3 was able to fully replace Gnome 2. It was just so unnecessary that we had to rename everything to Mate.

    2. Re: Its NOT smartphones. by Anonymous Coward · · Score: 5, Funny

      What? Let Gnome 2 and 3 coexist in the same world? That's just crazy talk. What would people say if they tried to do that with something like Python? Or even the Linux kernel itself?

    3. Re:Its NOT smartphones. by serviscope_minor · · Score: 5, Interesting

      Not sure why this was modded funny. There is more than an element of truth in it. I can't speak from the perspective of a "normal user" since I'm not one. But I can speak from my own.

      Firstly there's GTK. For those not aware, GTK is based on GObject. I've tried using GObject. It may be a very fine object system, and since it's based in C, I imagine that bringing over the runtime is relatively easy, but really it is no fun to use. And by no fun, I mean awful.

      The primary reason is that it's all in C. Actually doing heavyweight dynamic style OO in C (basically like Python or Ruby or Javascript) is possible, but it is very, very verbose. Essentially you have to do vast amounts of stuff by-hand and it means that the program logic ends up being very sparsely interleaved with the heaps of required boilerplate. Not only that but the learning curve is very steep. IIRC Rust is a bit like C with native GObject support, so perhaps that will help things. But at the moment programming in GObject is unpleasant.

      Secondly, frankly the UI is bad. They seem to be determined to abandon the long held principles of heirachal filesystems and the current working directory. Why oh why oh why when I start up a program in $HOME/projects/foo does the file dialog now default to "favourites" which is something not in the heirachy at all, or the last place I was working. This sort of change is completely unnecessary. If normal users don't start from anywhere else but $HOME then ignoring the current directory won't affect them at all. It only hurts power users.

      The thing is, that's just one example. For another example, how many steps does it take to print a document of any sort at 6-up in a GTK program versus the appauling old style dialog like "xpdf"? The answer: lots. Adobe (of all people) proved it was unnecessary by making a really nice system that was simple for all normal stuff, but in the "advanced" box, the GUI options simply added things to an LPR line.

      Examples abound of where GNOME is essentially "simplifying" to the point of making things less simple (how is ignoring $PWD unlike every other system simple?) especially for advanced users. The thing is advanecd users are the ones that hack on it and the ones that go to conferences.

      If they systematically put off all advanced users, then basically it will be nothing but a commercial project. That's fine if they want it but it will kill off any ecosystem.

      Oh and about GLib. A good fraction of the stuff is about providing things like linked lists, resizable arrays, hash tables, essentially all the sort of stuff that's in the STL, except much more verbose, vastly less efficient and not even remotely type safe. And two of those are unnecessary in C if you're prepared to (a) put up with complex macros and (b) have C++ like compile errors.

      And other stuff just seems to be there for the sake of it, like the lexical scanner compared to (e.g. FLEX). They could simply have integrated the FLEX runtime into glib and used that as a scanner. It would have been better documented and have much nicer syntax that way.

      I know people complain about C++ being complex, but once you add on a library the size of GLib, you've made almost a new language and the complexity arguments pretty much vanish at that point.

      Don't get me wrong. For a C library, GLib is very impressive. It allows you to do all sorts of things with C that would otherwise require vast amounts of work and huge amounts of pain. But the problem is it's built on a very low level language and that makes life difficult.

      Oh yeah, where was I. Gnome. One other example I remember from a while back.

      My mum had an old computer. After Windows 98 became untenable, I put ubuntu on it, since she was feircely opposed to spending money on a new computer if the old one worked. Being young and naive I still did family tech support.

      Anyway, it worked pretty well. I hd taught her what a heirachal filesystem was and she was happily able to arrange files in a nice organised manner. Actually

      --
      SJW n. One who posts facts.
    4. Re:Its NOT smartphones. by cheesybagel · · Score: 4, Interesting

      GObject is not the problem. If you are a C++ programmer which dislikes having to type macros all the time you can just use gtkmm.

      The problem is they broke compatibility with GTK+ 2.x with the release of GTK+ 3 and the platform portability remains low. I know several developers who are revolting and porting their code to Qt instead of making the changes to migrate to GTK+ 3.

      You can port Qt applications to mobile devices, Windows, and Mac OS X for example while GTK+ applications run well on Linux and poorly everywhere else. The Windows port has always been a bit of a mess even if it works. Slow and full of graphic glitches. The MacOS X port has been in limbo since like forever. The mobile port is non existent.

    5. Re:Its NOT smartphones. by Anonymous Coward · · Score: 3, Funny

      I know several developers who are revolting

      Me too.

    6. Re:Its NOT smartphones. by lytles · · Score: 4, Interesting

      i was an active user and *very* minor contributor in 1999-2005. gtk, glib and gobject are definitely awkward to use. some of that is due to being written in c, but much of the awkwardness is due to being written in a way that allows binding from other languages (bindings exist for javascript, python, java, c++, ...). eg, the callback "marshaling" made stepping thru code in gdb painful

      i always hoped that someone would strip out the language-agnostic support and make a pure c library. but nobody seemed excited about the prospect

      another problem was that gtk et al attempted to be incredibly generic. the language-agnostic support is one example. another is that i proposed a key binding that would break focus and guarantee that alt-f would activate the file menu and was told that there was "nothing special about the menubar" in the context of gtk. and then gnome was at the other extreme - attempting to be very minimal and rigid. in between was a vast no man's land

  2. They shot themselves in the foot by msobkow · · Score: 4, Insightful

    Most people assume GTK+ is a dead end seeing as it's tied so closely to that abortion of a desktop known as Gnome 3.

    --
    I do not fail; I succeed at finding out what does not work.
    1. Re:They shot themselves in the foot by Anonymous Coward · · Score: 5, Informative

      LGPL 2.1 vs LGPL 2.1?

    2. Re:They shot themselves in the foot by segedunum · · Score: 5, Insightful

      GTK was dead fifteen years ago, just no one realised it. When you have a toolkit that programmers are supposed to be using pulled out of another project (GIMP) as an emotional response to the license of another toolkit (Qt) you're already on to a loser. You have to win on the software, and producing a core development toolkit for GUI and desktop developers is spectacularly difficult. New features look cool and you have to keep moving things on but there are a spectacular amount of bugs to fix and that takes full-time manpower. Red Hat weren't going to plough lots of developer money into GTK because it made no money for them for the manpower they would have to put in to get it on a par with Qt and other GUI development software. It's not as if they were selling licenses or anything. You can't be emotional. Either free desktop software is good enough to compete or it isn't.

      Qt was miles better fifteen years ago, miles better ten years ago, miles better five years ago and the gap has only widened. You throw in the LGPL license now and you have a situation where there is no reason whatsoever you wouldn't use Qt in a Linux based environment.

      It's just a pity it has taken us so long and there has been so much blood letting for us to get to a situation where we probably have a de fact standard GUI development path decided upon by natural selection.

    3. Re:They shot themselves in the foot by JanneM · · Score: 4, Interesting

      I don't have any religious attachement to either toolkit, and I don't care one bit which one I use as a user. But there's GTK bindings to all kinds of languages out there since it's relatively easy to do, whereas there's far fewer for Qt. I can't seem to find any decent bindings for Scheme for instance. I can only assume it's because Qt is quite tightly tied to C++, and languages that don't mesh well with it will have trouble interfacing with it.

      --
      Trust the Computer. The Computer is your friend.
    4. Re:They shot themselves in the foot by serviscope_minor · · Score: 3, Insightful

      well qt has a commercial option?

      Well, at this point LGPL 2.1 is a perfectly fine commercial option. Honestly if your lawyers say it isn't then you should probably fire your lawyers and get some new ones. After all, the famously well lawyered Apple seem entirely happy to integrate the LGPL Webkit into their very proprietary operating systems.

      Commercial means commercial, not "palatable to ingnorant lawyers" :)

      --
      SJW n. One who posts facts.
    5. Re:They shot themselves in the foot by cheesybagel · · Score: 4, Interesting

      Great. Then tell me of all the wonderful Qt applications people commonly use. I use GIMP, Inkscape, Gnumeric GTK+ applications quite frequently and have used zero Qt applications so far.

    6. Re:They shot themselves in the foot by Anonymous Coward · · Score: 3, Insightful

      GTK wasn't an "emotional" response to QT, but a practical response. If a license is preventing you (by law) from doing what you need to do, or abiding by the terms of that license would be impractical, then the only remaining option is to do it yourself.

      With that understood, there is no reason to bring up "emotions" at all -- unless of course your own perspective is emotional.

    7. Re:They shot themselves in the foot by KugelKurt · · Score: 3, Informative

      Great. Then tell me of all the wonderful Qt applications people commonly use. I use GIMP, Inkscape, Gnumeric GTK+ applications quite frequently and have used zero Qt applications so far.

      Common people use Skype, VLC, etc. and not Gnumeric.

  3. KDE and Gnome are still comparable by darkHanzz · · Score: 4, Informative

    Although Qt is going strong, KDE and gnome seem both to be in a downwards trend..
    http://www.google.com/trends/explore?q=gtk%2Cqt%2Cgnome#q=gtk%2C%20qt%2C%20gnome%2C%20enlightenment%2C%20kde&cmpt=q
    Ah well, the higher abstraction level that C++ offers, does make sense for a UI framework.

    1. Re:KDE and Gnome are still comparable by segedunum · · Score: 4, Insightful

      Why should anyone be modded up who is basing the general usage of desktop environments on Google trends?

    2. Re:KDE and Gnome are still comparable by RabidReindeer · · Score: 3, Funny

      And of course Google Trends is a totally unbiased source.

      Do no evil and all that shit, right?

      I was hoping for confirmation from Netcraft, myself.

  4. I just started working on gnome by maweki · · Score: 4, Informative

    I just became the maintainer of a small games project in gnome and I have to say, the lack of (wo)manpower really shows. There are other projects that have many hundreds of untriaged bugs (most of them unconfirmed. We're not talking about unfixed here). There are only a handful of people doing really cool stuff and about nobody doing the menial labour of just making builds stable or working with one-off-contributors who sent in patches on their own.
    But all in all I don't believe gnome's development cycle is unsustainable in the foreseeable future, even with shrinking interest in the desktop as a whole.

  5. Sad, if true by jandersen · · Score: 3, Insightful

    It is sad, in a way, although not surprising to me.

    Sad, because it was once so promising; GNOME was once my absolute favourite desktop, but when they started becoming more and more a Windows clone, I lost my faith in them. And then they started removing useful features, upsetting their core community - those who were on Linux because it is OPEN, extremely configurable, very inclusive etc - and the GNOME developers became more and more unapproachable and sectarian. I suppose, in a way they chose to follow their own closed set of ideals and lost their way.

    Now I use KDE - it is not perfect, but I don't need perfect, I only need good enough, and KDE is good enough for my purposes.

    1. Re:Sad, if true by Tough+Love · · Score: 4, Interesting

      Doing that OOP stuff in plain old C is just a travesty. Should have ended many years ago, but for all the self-interested spin and PHBs involved. Anybody remember that company that lost $40 million writing a file browser for Gnome (Nautilus) that ultimately was completely discarded except for some of the expensive artwork?

      --
      When all you have is a hammer, every problem starts to look like a thumb.
    2. Re:Sad, if true by RabidReindeer · · Score: 4, Interesting

      It is sad, in a way, although not surprising to me.

      Sad, because it was once so promising; GNOME was once my absolute favourite desktop, but when they started becoming more and more a Windows clone, I lost my faith in them. And then they started removing useful features, upsetting their core community - those who were on Linux because it is OPEN, extremely configurable, very inclusive etc - and the GNOME developers became more and more unapproachable and sectarian. I suppose, in a way they chose to follow their own closed set of ideals and lost their way.

      Now I use KDE - it is not perfect, but I don't need perfect, I only need good enough, and KDE is good enough for my purposes.

      The problem is that Gnome's creator, Miquel de Icaza is a bitch for Windows. Among his sins you can include something like, but even more horrible than, the Windows Registry. Add to that the hubris of the Gnome 3 team and it's a recipe for something that looks good but doesn't do what you want it do do.

      KDE's bouncing icons were its biggest turn off for me. I want GUI that "just works" and doesn't attempt to be an art form or a distraction and doesn't require switching off "vanity features" before I can use it.

      As a developer, it's also rather important that the UI toolkit is easy to inject into projects, doesn't have bizarre interactions with other subsystems (or itself), supports multiple languages in a developer-friendly way, and last, but not least, has usable documentation. Including sample code and instruction manual. A set of "javadocs" isn't enough.

    3. Re:Sad, if true by Tom · · Score: 4, Insightful

      but when they started becoming more and more a Windows clone, I lost my faith in them.

      ditto.

      Gnome was very promising once, I even worked on it for a while. But this exactly, there was a point where it turned into a me-too project, where ideas for making things better were shunned in favour of making things familiar, which at that time meant copying windows.

      Gnome is a major example of Free Software fucking it up because of bikeshedding and copying instead of innovating.

      --
      Assorted stuff I do sometimes: Lemuria.org
    4. Re:Sad, if true by dbIII · · Score: 3, Interesting

      The problem is that Gnome's creator, Miquel de Icaza is a bitch for Windows. Among his sins you can include something like, but even more horrible than, the Windows Registry.

      That wasn't him. I also accused him of gconf, on this very website, and he replied that it wasn't him but another of the gnome group that came, set up that travesty, and left it half finished. The facts checked out. I suspect that gconf is completely dead now with gnome3 and good riddance to it, whether the idea was sound or not is immaterial since the execution was not sound.

  6. vala by samjam · · Score: 4, Insightful

    Shame - vala is a really cool c(+) style language that hides a lot of the glib rot that was too hard to use.

  7. The same trend for the whole PC infrastructure by maweki · · Score: 4, Insightful

    Looking at Gnome and GTK as an Example for them going extinct specifically is pretty stupid. You see declining trends for microsoft, dell and KDE as well while playing with Google Trends.

  8. Yup Gnome 3 sucks by DMJC · · Score: 3, Insightful

    It's sad but true, Gnome 3 with it's stupid tablet interface completely sucks. Gnome is trying to double down on fail and it'll lead to complete extinction within a few months. They need to massively reverse course but too much ego will probably prevent it from happening. The Linux desktop has basically shot itself in the foot right when it's finally achieving mainstream gaming success. Personally I'm banking on GNUstep actually getting finished and offering an osx-alike experience on Linux. Gnome was a really nice desktop but by choosing to rush into tablets they've pulled a Microsoft and shot their desktop users in the face. The desktop isn't going anywhere, it's Gnome that's gone away.

    1. Re:Yup Gnome 3 sucks by dbIII · · Score: 4, Insightful

      It shouldn't take five minutes to find the things that should be on the screen and in your face.

  9. GUADEC? by bmomjian · · Score: 5, Informative

    I am sure I am not the only one who doesn't know what GUADEC is, and in fact even the event homepage (https://www.guadec.org/) doesn't spell out what it is. It is the GNOME Users And Developers European Conference.

  10. Re:Foreshadowing by king+neckbeard · · Score: 3, Interesting

    I'm not sure about that. GNU/Linux distros seem to be the ones still leaving open options for people who want to get shit done. Not that there aren't a lot of distros that are jumping on the toy bandwagon, but there are still options.

    --
    This is my signature. There are many like it, but this one is mine.
  11. I blame removing configurability by zakkie · · Score: 5, Interesting

    Gnome 3 was a fuckup, but it started way back, when Havoc Pennington declared that too many options confused users. That was the start of the slippery slope that led us to this scenario. Taking away options completely instead of just offering basic & advanced configuration options was a fucking stupid idea. A desktop or any interface needs to get out of the way and make your day-to-day experience as painless as possible, but Gnome was hijacked by look-at-me designer types with nothing better to do than find ways of breaking shit that worked pretty fucking well. End result? A clusterfuck that nobody wants to use.

  12. No by The+Cat · · Score: 5, Insightful

    People are not abandoning the PC to use phones tablets and "services in the cloud." That is propaganda designed to sell you phones, tablets and services in the cloud.

    Phones, tablets and services in the cloud will never replace the PC, because a desktop or laptop computer is the proper control form for the human body.

    People want a full keyboard, a full-size monitor and a mouse. They don't want to do real work on a 2" x 3" screen.

    This "exodus from the PC" is pure bullshit advanced by mobile device companies to get you back on the hardware upgrade treadmill so they can sell you a new device every two years.

    Let me say it again: it's BULL. SHIT.

  13. Gnome Classic works for me by dltaylor · · Score: 3, Interesting

    I tried XFCE, but it wasn't quite there. Can't really warm to KDE, either. I miss OpenLook and Saw{mill,fish}.

    Looks like I'll totally be out of luck when Gnome dies and X is replaced with Wayland. Might as well run Windows at that point.

  14. mate seems to be doing just fine by emilper · · Score: 4, Informative

    get your helpful gnome back ;)

      http://mate-desktop.org/

  15. There is no reason to use GTK anymore. by goruka · · Score: 4, Informative

    For almost a decade, Qt has been the superior choice for developers.

    I used GTK for several years (probably up to version 2.2). The mindset back then was that the minimum functionality should be provided and the developer should build what he or she needed around it. For even a simple item list you had to use the treeview, which in turn was really complex to use. I wonder how much of that remains today.
    When I discovered Qt, I ran constantly into the situation of thinking "This behavior I want to do sounds like a common case, i'm sure there is a helper/shortcut to implement it", and 99% of the time there was. Maybe it was more "bloated", but it definitely did reduce development time by a large factor.

    Also, if you are doing a desktop app, you are most likely wanting to go cross platform. GTK is terrible at that.
    The main disadvantage back then was the license, but that's ancient history. Qt has aged well and moved to mobile without much of an inconvenience. Besides Desktop, It runs on Android and Blackberry 10, and will soon be running on iOS too.

  16. The bindings are pure shit. by Anonymous Coward · · Score: 4, Interesting

    Have you ever tried to seriously use these Gtk+ bindings for non-C languages? Have you? I'm pretty sure that you haven't, because if you had then you'd know first-hand how they're utter shit, and you wouldn't have suggested that they're a benefit of Gtk+.

    Gtkmm is kaka, and that's putting it very nicely. It doesn't even compete with the monstrosity that is wxWidgets, never mind a professional C++ GUI toolkit like Qt.

    The C#, OCaml, PHP, Ruby, R, Guile, Ada and Fortran bindings are horribly outdated, and they were kaka to begin with, too.

    The Python, Java and Vala bindings are the least-kaka of them all, but they're still kaka compared to the other toolkits that are available. If I'm using Python, I'll use PyQt. If I'm using Java, I'll use AWT, Swing or SWT. Nobody actually uses Vala for anything, so it's out of the picture right away.

    The rest of the bindings are somewhere in the middle. They're still kaka, and I would not use them.

    Then there are the JavaScript bindings. Only somebody with kaka for brains would use JavaScript outside of the browser in the first place. There's no reason for these bindings to even exist.

    Yeah, the bindings exist to some degree for several different languages, but that doesn't mean they're any good, and it surely doesn't mean that they're actually usable or useful. Given this, it means that they aren't really a benefit of Gtk+.

  17. Misdirected problem by readingaccount · · Score: 4, Insightful

    People are increasingly leaving the desktop computer

    No, they aren't.

    They are just not buying new ones because they have reached a level where they are good enough for what they do and have no huge motivation for upgrading. That's why the PC market is crumbling, not because people aren't using PCs anymore, but because they are content with what they have on the desktop.

    Now I don't get why GNOME is jumping on the Tablet/Smartphone bandwagon when they don't even have to sell anything.

    All in all this has turned out to be a fucking disaster, and it's all the GNOME team's fault for being too arrogant to listen to the screams and cries and often well documented problems people had with this new direction. What a fucking mess.

  18. GUADEC?-GNOME Users & Developer's Euro. Confer by wonkey_monkey · · Score: 3, Informative

    Okay, shoot me down in flames - apparently if you don't understand everything in a Slashdot summary some people think you shouldn't be allowed on the internet - but what the hell is a GUADEC*? Wouldn't it be a good idea for a news site that presumably wants to attract and keep as many visitors as possible to at least give a brief definition of the terms used in a headline? You can easily do it subtly enough - you don't even have to spell it out, just give enough context - that those in the know won't notice, and those not in the know will come away better informed, instead of having to open up another tab just to find out whether or not they're interested in the content.

    Yes, haha, lgmtfy etc. But you know what, I actually do expect to be spoon-fed my news. That's precisely why I watch TV or read newspapers instead of wandering the streets hoping to catch drama unfolding first-hand.

    *of course I've already looked it up.

    Everybody was expecting to see each other in Brno

    Okay, now I know you're making shit up!

    (specifying the country of a not-very-famous city wouldn't hurt, either)

    --
    systemd is Roko's Basilisk.
  19. Google Trends vs Debian "popcon" by Mathieu+Lu · · Score: 4, Insightful

    More reliable than Google-Trends: Debian "popcon", a program that Debian users are offered to install and report their program usage.

    http://qa.debian.org/popcon.php?package=gnome-shell (40k installed / 20k votes)
    http://qa.debian.org/popcon.php?package=xfwm4 (16k installed, 8k votes)
    http://qa.debian.org/popcon-graph.php?packages=kde-window-manager (14k installed, 8k votes)
    http://qa.debian.org/popcon-graph.php?packages=xserver-xorg (80k installed, 25k votes)

    The stats being what they are, you can't really compare the 40k gnome-shell installs with the 16k xfwm4 (gnome-shell is installed by default, which makes the 16k xfwm more impressive, I guess), but you can make some conclusions.

    And yeah, I like gnome-shell / Gnome3. Sometimes after a crash (I run debian-experimental packages), I return to fvwm for a few hours, but I always end back onto gnome-shell. "it works", is pleasant to use, and if necessary, there are ways to customize it.

    A few months ago, I had forked and published an extension for hiding the top panel. I was surprised of all the feedback and number of users it got. Better yet, someone else stepped up to maintain it and does a great job.

    Seriously.. way too many trolls, and most of the rest don't bother to comment.

  20. I still use GNOME. by loufoque · · Score: 3, Interesting

    I personally still use GNOME. I've always preferred GTK+ over Qt, not only because I prefer its look, I also prefer the fact that it is focused on being a GUI toolkit, while Qt is a kitchen sink with a horrible C++ design and full of stuff better done elsewhere.
    GNOME 3 is shit, but you can still run gnome-panel just fine (and metacity if you want it), even with Ubuntu, and that's what I do.

    The more serious problem is that with the obsolescence of GTK+, we may end up not having a good standard GUI toolkit to write applications on Linux anymore.
    There is much focus on graphics lately with the alternatives to X.org being developed, but Linux still doesn't have a good solution to make graphical apps with resolution independence, proper text rendering, fluid layout and good accessibility. Not that other operating systems are being that much better at any of this.