vote up 26 vote down star
22

I am wondering if people have any ideas for open source projects that don't exist yet that they would like to share. Also, submit ideas that may be under open source development but need considerable work. I want to gauge the need for various projects.

Please submit one idea per answer for effective voting, thanks.

flag
show 4 more comments

38 Answers

prev 1 2
vote up 12 vote down

A SQL change management tool!

link|flag
show 1 more comment
vote up 2 vote down

A usable operating system.

Just kidding, Linux/BSD.

I'd like an open-source audio editing program, like FL Studio.

link|flag
show 3 more comments
vote up 2 vote down

a command-line Unix equivalent of Microsoft's Logparser. There are a few similar projects but all scripts.

link|flag
vote up 1 vote down

I would like to see more convenience libraries for the Rhino JavaScript interpreter. Currently in order to use most of the Java libraries in Rhino, you end up coding directly to the Java APIs, which defeats the point of a scripting language.

For example, I'd like to do this in Rhino to echo stdin to stdout (the resemblance to Python is not accidental):

for each (line in iterlines(java.System["in"]))
    print(line);

But you can't do that out of the box or with a well-known library -- you have to write your own iterlines:

function iterlines(inputStream) {
    var br = new java.io.BufferedReader(
        new java.io.InputStreamReader(inputStream));
    var line;
    while (line = br.readLine())
        yield(line);
}

JavaScript would be a great Java scripting language with those kinds of convenience functions built on top of it.

link|flag
vote up 0 vote down

The apd-pecl-plugin for PHP.

Yes, it does exist, it hasn't been updated since 2006 though, and it doesn't work on "newer" versions of PHP. Probably the best debugging / profiling plugin for PHP.

link|flag
vote up 8 vote down

open source web-dev IDE.

currently in the news again due to Mozillas recent anouncement

The only stuff in the field right now is the dead Nvu, eclipse web tools etc.

Nothing that can compete with e.g. dreamweaver, visual studio (unless i have missed it)

link|flag
show 5 more comments
vote up 10 vote down

A flash compiler that works.

link|flag
show 2 more comments
vote up 5 vote down

A fully featured IDE without a bunch of bugs. Something that could actually compete with, say, visual slickedit or visual studio when it comes to features and stability.

I am aware that there are free solutions out there that claim to do this, but I have found that they fall far short of the commercial solutions.

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.