| CARVIEW |
Select Language
HTTP/2 200
server: nginx
date: Mon, 22 Dec 2025 19:45:51 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 21 Feb 2010 08:36:36 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "8ef86b8473c016401f289e5cfda9c5fa"
x-archive-orig-x-runtime: 97ms
x-archive-orig-content-length: 21473
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 21 Feb 2010 08:36:36 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100221034838_crawl101-c/51_14_20100221083601_crawl101.arc.gz
server-timing: captures_list;dur=0.685760, exclusion.robots;dur=0.054036, exclusion.robots.policy;dur=0.042731, esindex;dur=0.008443, cdx.remote;dur=22.256152, LoadShardBlock;dur=309.112622, PetaboxLoader3.datanode;dur=106.215677, PetaboxLoader3.resolve;dur=378.226242, load_resource;dur=358.464465
x-app-server: wwwb-app244-dc8
x-ts: 200
x-tr: 778
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app244; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
cortesi's devsurvey at master - GitHub
This service is courtesy of Pledgie.
cortesi / devsurvey
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
A database of github project information — Read more
| name | age | message | |
|---|---|---|---|
| |
README | Loading commit data... |
|
| |
devsurvey.7z |
README
The dataset is a PostgreSQL dump file, compressed with 7zip.
Finding the primary language for each project was tricky, and the results are
inexact. Language detection was done purely on the basis of file extension. The
map between the strings in the "primary" field and languages is as follows:
ActionScript: "as"
C++: "cpp"
C: "c"
Clojure: "clj"
C#: "cs"
Erlang: "erl"
Go: "go"
Haskell: "hs"
Java: "java"
Javscript: "js"
Lisp: "lisp"
Lua: "lua"
Objective C: "m"
Objective J: "j"
PHP: "php"
Ruby: "rb"
Perl: "pl"
Python: "py"
Scala: "scala"
The schema is as follows:
CREATE TABLE author_repos (
id integer NOT NULL,
repo_id integer NOT NULL,
author_id integer NOT NULL,
count integer -- Total # commits
);
CREATE TABLE authors (
id integer NOT NULL,
name character varying(100) NOT NULL -- Author email
);
CREATE TABLE commits (
id integer NOT NULL,
repo_id integer NOT NULL,
author_id integer NOT NULL,
age integer NOT NULL, -- Commit age in seconds, with 0 being the time of the first
commit to the project
message text,
deletions integer, -- lines deleted
insertions integer, -- lines inserted
lines integer, -- deletions + insertions
files integer, -- Number of files touched
hash character varying(42) -- SHA hash
);
CREATE TABLE extensions (
id integer NOT NULL,
repo_id integer NOT NULL,
ext character varying(6) NOT NULL, -- file extension
count integer -- total number of lines
);
CREATE TABLE repos (
id integer NOT NULL,
"user" character varying(100) NOT NULL,
name character varying(100) NOT NULL,
watchers integer, -- github watchers
forks integer, -- github forks
"primary" character varying(6), -- primary language, calculated from extensions
start integer, -- first commit, seconds since epoch
"end" integer, -- last commit, seconds since epoch
commitcount integer, -- total commits
authorcount integer, -- total authors
insertions integer, -- total lines inserted
deletions integer, -- total lines deleted
lines integer -- insertions + deletions
);

