Submitted by megan on July 30, 2014 - 4:22pm
Freecode (formerly Freshmeat), the directory of Free and Open Source Software Projects, is no longer accepting new submissions. As of June 18, their site has this message on top:
The last full scrape of the Freecode RDF files took place in March. The data for the March 2014 Freecode collection is available for download from the FLOSSmole FC data site (or in the MySQL database).
RIP Freecode, nee Freshmeat.
Submitted by Anonymous on June 2, 2014 - 5:33pm
Description:
This chart shows the number of NEW projects added to each repository by month/year.
Visualization:
Notes: RF had ~750 projects without a project start date.
SQL Script:
SELECT MONTH( date_added ) , YEAR( date_added ) , COUNT( DISTINCT project_id )
FROM fm_projects
WHERE datasource_id = [current]
GROUP BY YEAR( date_added ) , MONTH( date_added )
ORDER BY YEAR( date_added ) , MONTH( date_added );
Submitted by Anonymous on June 2, 2014 - 5:05pm
Description:
This chart shows the number of new projects in each repository that use the words "Free" and "Open" in project names through 2014.
Visualization:
SQL Script:
Freshmeat:
SELECT YEAR( date_added ) , COUNT( DISTINCT project_id ) AS Count
FROM fm_projects
WHERE projectname_full LIKE "%free%"
AND datasource_id = [current]
GROUP BY YEAR( date_added )
ORDER BY YEAR( date_added );
Submitted by Anonymous on June 2, 2014 - 2:07pm
Freecode (formerly known as Freshmeat) is a directory of free and open source software. FLOSSmole has been collecting Freecode/Freshmeat data since 2004. Periodically we provide snapshots as to the growth of the various forges and directories we collect data from. Here is a chart showing the rate of new project additions to Freecode/Freshmeat from January 1998 - March 2014. This data is based on the registration date recorded for each project and collected by FLOSSmole in June 2014(datasource_id 8079).
Submitted by Anonymous on June 2, 2014 - 1:13pm
This chart shows the new project registrations for each year 1998-2014, and what programming language those projects were tagged with.
For example, 2003 was the highest year for new "C" projects to be registered with Freecode (then called Freshmeat).
Submitted by Anonymous on June 2, 2014 - 11:44am
We have collected Freecode (formerly Freshmeat) data since 2005. This chart shows the number of projects listed in the Freecode directory between 2005 and 2014. Each line represents one collection. (Collections are referred to in our database by the term "datasource_id".)
Here is the code used in the FLOSSmole database to generate the data list to create this graph:
This chart shows the new project registrations for each year 1998-2011, and what programming language those projects were tagged with.
For example, 2003 was the highest year for new "C" projects to be registered with Freecode (then called Freshmeat).
We have collected Freecode (formerly Freshmeat) data since 2005. This chart shows the number of projects listed in the Freecode directory between 2005 and 2012. Each line represents one collection. (Collections are referred to in our database by the term "datasource_id".)
Freecode (formerly known as Freshmeat) is a directory of free and open source software. FLOSSmole has been collecting Freecode/Freshmeat data since 2004. Periodically we provide snapshots as to the growth of the various forges and directories we collect data from. Here is a chart showing the rate of new project additions to Freecode/Freshmeat from January 1998 - June 2012. This data is based on the registration date recorded for each project and collected by FLOSSmole in mid-July 2012 (datasource_id 316).
Submitted by megan on November 17, 2011 - 11:51am
Three things happened recently to affect our Freshmeat collection
1. Freshmeat announced a name change to Freecode.
2. We have an issue (issue #43) that talks about how the trove definitions for Freshmeat are out of date.
3. Freshmeat replaced trove with tagging and we missed the memo
What I've done is as follows:
For issue #1 - decided not to rename our abbreviation for Freshmeat. It will remain "FM".
Pages