programming language

What programming languages are paired together in Lanchpad projects (Network Diagram)?

Description

This graph shows a network diagram of the programming languages paired together by projects in Launchpad. The top 100 combinations are represented in the visual.

Visualization

LP Network Diagram


For an interactive visual, click the image below and then click the "Recompute layout" button (connected dots).


What programming languages are paired together in Launchpad projects?

Description

This chart shows the top programming languages pairs used by projects in Launchpad.

Visualization

LP Lang Pairs


What are the most common programming languages used by projects listed in Alioth?

Description

This chart shows the top programming languages used by projects in Alioth.

Visualization:



SQL Script

SELECT language AS Lang, COUNT( unixname ) AS Count
FROM al_projects_language
WHERE datasource_id = <current>
GROUP BY Lang
ORDER BY Count DESC;

What are the most common programming languages used by projects listed in Launchpad?

Description

This chart shows the top programming languages used by projects in Launchpad.

Visualization



SQL Script

SELECT lp.programming_language AS Lang, COUNT(name) AS Count
FROM lpd_programming_languages lp
WHERE lp.datasource_id = <current>
GROUP BY Lang
ORDER BY Count DESC;

What are the most common programming languages used by projects listed in Rubyforge?

Description

This chart shows the top programming languages used by projects in Rubyforge.

Visualization

SQL Script

SELECT rfpl.description AS Lang, COUNT( DISTINCT rfpl.proj_unixname ) AS Count
FROM rf_project_programming_language rfpl
WHERE rfpl.datasource_id = <current>
GROUP BY Lang
ORDER BY Count DESC;

What are the most common programming languages used by projects listed in Objectweb?

Description

This chart shows the top programming languages used by projects in Objectweb.

Visualization:

SQL Script

SELECT owpl.description AS Lang, COUNT( DISTINCT owpl.proj_unixname ) AS Count
FROM ow_project_programming_language owpl
WHERE owpl.datasource_id = <current>
GROUP BY Lang
ORDER BY Count DESC;

As of June 2009, what are the top programming languages used by projects listed in Rubyforge?

Description

This chart shows the top programming languages used by projects in Rubyforge.

Visualization

Rubyforge Programming Language Chart

SQL Script

SELECT rfpl.description, count(DISTINCT rfpl.proj_unixname) AS lang
FROM rf_project_programming_language rfpl
WHERE rfpl.datasource_id = <current>
GROUP BY rfpl.description
ORDER BY lang DESC;

As of June 2009, what are the top programming languages used by projects listed in Sourceforge?

Description

This chart shows the top programming languages used by projects in Sourceforge.

Visualization

Sourceforge Programming Language Chart

SQL Script

SELECT ppl.description, count(DISTINCT ppl.proj_unixname) AS lang
FROM project_programming_language ppl
WHERE ppl.datasource_id = <current>
GROUP BY ppl.description
ORDER BY lang DESC;

As of June 2009, what are the top programming languages used by projects listed in Objectweb?

Description

This chart shows the top programming languages used by projects in Objectweb.

Visualization:

Objectweb Programming Language Chart

SQL Script

SELECT owpl.description, count(DISTINCT owpl.proj_unixname) AS lang
FROM ow_project_programming_language owpl
WHERE owpl.datasource_id = <current>
GROUP BY owpl.description
ORDER BY lang DESC;

Syndicate content