Kdenlive Developer Jean-Baptiste Mardelle Has Been Found 85
jones_supa writes "A month ago there was worry about Kdenlive main developer being missing. Good news guys, Jean-Baptiste Mardelle has been finally reached and is doing fine. In a new mailing list post by Vincent Pinon, he says he managed to find Mardelle's phone number and contacted the longtime KDE developer. It was found out that Mardelle took a break over the summer but then lost motivation in Kdenlive under the burden of the ongoing refactoring of the code. Pinon agreed that there are 'so many things to redo almost from scratch just to get the 'old' functionalities'. The full story can be read from the kdenlive-devel mailing list. After talking with Jean-Baptiste, Vincent has called upon individual developers interested in Kdenlive to come forward. Among the actions called for is putting the Git master code-base back in order, ensuring the code is in good quality, provide new communication about the project, integrate new features like GPU-powered effects and a Qt5 port, and progressively integrate the new Kdenlive design."
Classic... (Score:5, Interesting)
An open source project stuck in "refactoring hell". Seems to have happened to Inkscape too. Such a waste.
Heavily refactoring projects of this size rarely brings any benefit for the users, it's just technical masturbation. If you're lucky, you will after a few years end up with a project that does the same things as before, most likely it will have acquired some bugs as icing on the cake.
Taking a few years to refactor your project might sound like a good idea at first, but chances are, you won't even be relevant anymore by the time you're done.
Some open source projects would benefit from proper managers who can stop them from shooting themselves in the foot.
Re:Classic... (Score:5, Insightful)
Re: (Score:2)
Refactoring should be done on a "need to basis". Need to implement a specific feature, but it's not possible within the programs architecture? Make the required changes and get on with life.
But starting a "Let's refactor just because" is a folly.
Its hard to know what forced this refactoring. Was it forced upon him by the totally mishandled move from KDE3 to KDE4, or was it something internal that he did, without realizing the amount of work involved?
Is he better off sitting back for a while while KDE again refactors its framework for KDE 5? Is that going to be yet another huge debacle, setting KDE back 4 years like the last re-factor?
At this point in time, KDE 4.12.0 is probably the best KDE in a long time. But 4.12 is probably the last bug-fix
Re: (Score:2)
Is he better off sitting back for a while while KDE again refactors its framework for KDE 5?
According to what the KDE team has said, they're not refactoring anything for KDE5. It's only going to be a simple port from Qt4 to Qt5. Qt5 isn't much different from Qt4 anyway, so it's probably not going to amount to much change.
Re:Classic... (Score:5, Insightful)
Re:Classic... (Score:5, Interesting)
I just want to point out one counterexample: Blender. The work done in the 2.5 version was huge, but it allowed lots of improvements later. Totally worth it.
Major difference (Score:4, Informative)
Kdenlive is essentially one guy's hobby project. Blender has a number of professional developers working on it full time. Both are open source, but it's really an apples-to-oranges comparison.
Re: (Score:2)
I just want to point out one counterexample: Blender. The work done in the 2.5 version was huge, but it allowed lots of improvements later. Totally worth it.
Mozillas refactoring of Netscape enabled Phoenix/Firebird/Firefox 1.0. If you have dedicated developers, a refactoring will also make them understand the codebase fully, making it easier for them to change larger parts such as design aspects.
Xorg is trying to do the same thing with the X11 codebase. The first step was modularizing. That's a project you can get into if you are looking for something difficult but worthwhile.
Re: (Score:3)
Re: (Score:2)
...which could have been avoided in the first place, but if it had been Linux would have been an over engineered cluster fsck.
I'm a firm believer in correct first, clever later.
Re: (Score:2)
...Linux would have been an over engineered cluster fsck.
Then let's be grateful Linux is a full OS kernel and not just its storage subsystem.
Re: (Score:2)
I don't think it's so simple as "refactoring is bad". I think i'ts more that 'stopping the delivery of new value to users is bad". Cleaning up as you go along is not only a healthy practice, actually accomplishing something new is healthy for refactoring. It keeps you focused on achieving flexibility that is actually needed as opposed to that which might be useful.
Re: (Score:2)
An open source project stuck in "refactoring hell". Seems to have happened to Inkscape too. Such a waste.
Heavily refactoring projects of this size rarely brings any benefit for the users, it's just technical masturbation. If you're lucky, you will after a few years end up with a project that does the same things as before, most likely it will have acquired some bugs as icing on the cake.
That's why when we don't like code, we should start reimplementing it from scratch immediately.
Re: (Score:2)
Some open source projects would benefit from proper managers who can stop them from shooting themselves in the foot.
Or a bigger revenue stream that can help them stay motivated to burn hours on boring tasks. Of course it's going to take years if they average a tiny number of hours per month because the developer(s) are bored with it.
Re: (Score:2)
Heavily refactoring projects of this size rarely brings any benefit for the users, it's just technical masturbation. If you're lucky, you will after a few years end up with a project that does the same things as before, most likely it will have acquired some bugs as icing on the cake.
This was wrong when people said it about Netscape. It's still wrong now. It's just that the payoff is unfortunately in years and not months.
Re: (Score:1)
Refactoring is necessary when building up on top of the existing code stops being fun. Fun motivates programmers which in turn increase productivity and quality and specially in open source projects that are not backed by some company keeps the development going.
You might think this is all just mental masturbation but big-scale refactoring usually only starts when there is something really wrong. The main problem is that many devs when refactoring avoid the traps they triggered before but end up falling for
Re: (Score:2)
Heavily refactoring projects of this size rarely brings any benefit for the users, it's just technical masturbation. (...)
Some open source projects would benefit from proper managers who can stop them from shooting themselves in the foot.
You are missing an important point: many people that work on a software project in their spare time do it to have fun. I work as a programmer for a living, and at work I do what my employer wants me to do. I might not like the way I have to do things at work, but I do as my manager says.
If I work on a hobby project to have fun, I want to do things the way that make me happy. It might be the case that you are happy making a killer product that has tons of users, even if the internals are crap. Or it might be
Re: (Score:2)
Definitely. Just reading the mailing list entry makes this clear. It sounds like the developer was looking at doing virtually a complete rewrite in one shot, and found himself overwhelmed at that prospect. The mailing list entry just tries to break it down into some smaller projects and farm them out. Management is exactly what was needed.
Re: (Score:2)
The word "refactor" has been insanely successful in getting managers to approve rewrites. Before the Agile Manifesto, when programmers wanted to take a completed function and write it again, they would ask to "rewrite" it. The manager would ask what's wrong with it, the programmers would say, "nothing, really" and the manager would decline the request. Now, the programmers ask to "refactor" the function, the manager asks what that means, and the programmers give a confused answer whose only consistent messa
Kickstarter? (Score:3)
girlfriend stops speaking to you... (Score:1, Insightful)
...you assume something horrible has happened to girlfriend.
People like to be left alone a lot more than controlling types hope, and assume their silence must mean the worst.
I dunno... (Score:5, Funny)
Sometimes when a girlfriend or wife stops speaking to you, you count your blessings and leave well enough alone.
Re: (Score:2)
Let sleeping dogs lie...
Re:girlfriend stops speaking to you... (Score:5, Insightful)
When this was last a Slashdot "story" somebody said, "he's probably busy - here's his phone #, why doesn't somebody give him a call?" So, somebody did that and we get another "story".
The real "story" here is that a lead developer gave up on a project and left without communicating. Perhaps there's a good lesson here about Open Source project governance that.
Re: (Score:2)
Re: (Score:1)
Yes.. just like we should remember what happens to proprietary products that are abandoned, or worse, suppressed by their creators, because they conflict with new, less consumer friendly business models. SaaS is the end game for this. At least kdenlive's open source status enables the possibility of someone else picking up the project.
Re: (Score:2)
Well, it's a question of which is the bigger risk: a proprietary product is abandoned because the company doesn't have the revenue stream to support it, or an open source project dies because no one wants to pick it up. Yes, there's the "possibility" that someone else will pick up an open source project, but that's just a possibility. There's also the possibility that someone will like a proprietary product enough to pay to keep it going. It's not like Open Source is a guaranteed win.
Re: (Score:2)
It's still a bit worrying how things are arranged in open source if the lead developer of a major KDE video editing suite can just disappear on a whim and later just say "nah, I didn't feel it anymore". He didn't even write a "guys, I'm feeling a bit overwhelmed" message but made people worry if something bad had happened to him.
What would happen if the lead developer of Apple's iMovie just didn't appear at workplace after his summer break?
Re: (Score:1)
It's not dead as long as there are users using it who are satisfied with its current capabilities. If there's sufficient demand, it will at least be maintained at its current functionality by the linux distributions. The support libraries it depends on aren't going anywhere. If there's a lot of demand for new functionality, it will attract developers again.
It's proprietary solutions like your 'microsoft video' link that are purposely hobbled and/or disappear once a better (for the vendor) business model c
Re: (Score:1)
It will disappear? How so? Is Microsoft going to force people to uninstall it?
Re: (Score:1)
Using an older version of windows just as 'dead' as using an unmaintained open source application..
Re: (Score:1)
Nice try at goalpost shifting. So now do you care to show how it will "disappear"?
Re: (Score:2)
Exactly. Both are unmaintained. In other words, there's no advantage to the open source project over the proprietary one if neither is maintained.
Re: (Score:1)
He isn't obligated to tell anyone anything, nor is he responsible for other peoples' 'worry'.
Re: (Score:2)
Re: (Score:2, Informative)
I don't agree. Someone can up and leave a personal project any time they choose. They should not be obligated to prop up anyone's feelings.
Re: (Score:3)
Re: (Score:3)
It still makes no difference because he still do not owe anything to people who have decided they find his work important.
I certainly think he owes. Not juridically but as part of having good manners.
Re: (Score:2)
Ah yes, thus reinforcing the stereotype of programmers as have zero empathy for others.
Re: (Score:2)
Re: (Score:1)
7+ billion people found to not contributing as Kdenlive main developers have continued to not respond regarding their total absence from the project.
Why is everyone worried about the guy who gave the most already leaving? There are literally billions of people who gave nothing, and they haven't justified their continuing to do so. If you don't want to work on any particular project donating your time to the world, that is not a problem, its simply a lack of giving an undeserved gift to the rest of us.
I susp
I just wonder... (Score:2)
Software Developer Feared To Be Dead (Score:5, Funny)
Found alive having a life. More news at a 11.
OOP To The Rescue! (Score:1)
Code reuse? Readability? Maintainability? Wasn't OOP suppose to solve that? Isn't that why poor old Fortran (and others) are hated on? (eventhough it now too is tainted with objects)
i'm only half mocking here...but when one reads about these code debacles you have to wonder why people are so in love with OOP.
Re: (Score:2)
They were clearly doing it wrong or something.
Re: (Score:2)
Code reuse? Readability? Maintainability? Wasn't OOP suppose to solve that?
It was supposed to help. It turns out writing reusable software is very hard to do. Though OOP is only one technology that has promised more than it can deliver.
I remember when I first learned about COM in the mid 80's, and how revolutionary it would be. You just plug software components together like breadboarding a hardware circuit. I thought to myself "Great! I can just unplug the editor in my IDE, plug in a Emacs component and I'll be good to go."
Seems like we should be able to do that, doesn't it? Need
Way To Embarrass Him (Score:2)
Way to embarrass him...this whole adventure, from beginning to end, reeks of a serious lack of basic communication and social skills.
Motivation (Score:1)
If somebody pays me for three months to re-invent the wheel then I can cope with that. OTOH 'why' volunteer when so few join in and make it a party of like-minds in an orgy of better engineering?
For me a lot of programming is like playing with a model railway. It's an intellectual and artistic diversion where detail matters... ...Which is why I can't understand the 'open for gacking' methods of Git/Guthub. I want newbies to be mentored then directed then become part of a team that knows how to jointly ow
There's a word for that type of thing. (Score:2)
Re: (Score:3)
Actually, I think more OSS project developers should do something like this. This is what I do all the time on my projects. If the software is working but 1) you're getting burned out, 2) you want to re-write it from scratch, 3) you're wandering off on some tangent, 4) real life happens, well, STOP.
The code works. Leave it alone. Don't break it. Don't touch it. Take a breather. Meditate about something else. Read a good book. Don't start typing in more code until you're relaxed and refreshed and eager. If y