As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am looking for the current recommendations for all-inclusive open source ALM system, essentially an open source alternative to Microsoft's Team Foundation Server.
I have found two so far, Jabox and Endeavour.
Are there any others that you know of?
If you have experience with Jabox or Endeavour, can you comment on their relative merits?
I am looking specifically for all-in-one ALM solutions like Jabox and Endeavour, rather than individual applications like Jenkins, Bugzilla, TestLink, etc.
Two popular ones are OSEE from Eclipse.org and Tuleap.
Atlassian family of products can be considered as a single product. As far as I know they are open source and Atlassian gives them for free if you are developing an open source solution.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
in my spare time I create open source projects which I hosted at google code in the past but apparently google limits the maximum number of projects to 25 which is not what I want.
I have many small projects that I want to share and showcase.
What would be your choice? I know github and sourceforge but I couldn't find information about their limitations so I'm not sure.
Where would you host more than 25 projects?
My choice would be GitHub. I don't believe they impose restriction on the number of public repositories you may have, they only ask you to keep under 1Gb each.
You can use:
github
sourceforge
I'm using github a lot more than the second..
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I work in a team of 5. We track our low level plans in spreadsheets. This always results in some sort of miscommunication, delay as it is not updated or out of order. Are there any open source tool that can be used to manage low level plans/stories for a small team efficiently?
Well, I'd try using Planner. I use it to manage my little projects, as I forget what I was debugging and when I did it. It's clean and simple, and it's got Linux and Windows binaries (no idea about Mac).
Here's a screenshot:
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am looking for an interactive exploratory tool to embed in a commercial application.
I am looking for a commercial-friendly licensed open source alternative to the wonderful Tableau system
Take a look at Pentaho. It's built from open source parts so you should be able to reuse parts of that. There's also R, though that is really more of a statistical programming framework than an ready-to-use exploratory tool.
If you're looking for something that's as easy to use as Tableau though, I'm afraid you won't find any open source solutions.
You can build interactive exploratory visualizations in the browser with D3.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I was wondering if there is any project with high coverage requirement.
To be more precisely, I'm looking for:
Open Source Project, I need to access to the code
Any class of software, e.g., library, operating system, gui
Data on the coverage achieved. Here coverage can be meant as statement coverage, branch, MC/DC
Any language
I already have such an example. It is a free open source RTOS, RTEMS. Do you have any other examples?
Thank you in advance.
Sqlite is renown for having high test coverage: http://www.sqlite.org/testing.html sadly not all the test cases are freely available.
Another list of Java programs and their test coverage is on http://www.testabilityexplorer.org/report .
If you look at the sonar nemo instance you will find some libraries with high coverage:
http://nemo.sonarsource.org
e.g.:Commons Lang (apache commons lang): http://nemo.sonarsource.org/dashboard/index/269309?asc=false&sort=5
All projects there should be open source (look for the sources link).
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I was looking for a open source library for generating automated summaries out of few words. For ex: if two qualities are given of a person a) good thinking skills b) bad handwriting, i need to generate a sentence like "Bob has good thinking skills however needs to improve on his handwriting". I need to know if any open source library could help me achieve it even partially.
Thanks for help!
-- Mohit
You could start with MEAD. Not sure what sort of mileage you'll get with single-sentence summarization, but you may be able to do some post-processing on the output and manage it.
It would take a bit of work, but you could also construct something out of NLTK and one or more the associated databases (eg. WordNet). Python, open source.