CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 02 Aug 2025 10:16:57 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091217182423
location: https://web.archive.org/web/20091217182423/https://github.com/cortesi/devsurvey
server-timing: captures_list;dur=1.172883, exclusion.robots;dur=0.066351, exclusion.robots.policy;dur=0.018528, esindex;dur=0.021979, cdx.remote;dur=11.583498, LoadShardBlock;dur=199.473571, PetaboxLoader3.resolve;dur=69.463760, PetaboxLoader3.datanode;dur=39.717967
x-app-server: wwwb-app219
x-ts: 302
x-tr: 319
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; path=/
x-location: All
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=()
HTTP/2 200
server: nginx
date: Sat, 02 Aug 2025 10:16:59 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 17 Dec 2009 18:24:23 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b8144d6aed50a9487f873b96d8f8e61d"
x-archive-orig-x-runtime: 69ms
x-archive-orig-content-length: 22954
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: Thu, 17 Dec 2009 18:24:23 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 17 Dec 2009 18:24:23 GMT", ; rel="memento"; datetime="Thu, 17 Dec 2009 18:24:23 GMT", ; rel="next memento"; datetime="Sun, 17 Jan 2010 17:53:04 GMT", ; rel="last memento"; datetime="Wed, 18 Nov 2020 19:01:20 GMT"
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_13_20091217144415_crawl102-c/51_13_20091217182340_crawl101.arc.gz
server-timing: captures_list;dur=0.518179, exclusion.robots;dur=0.019360, exclusion.robots.policy;dur=0.009930, esindex;dur=0.011953, cdx.remote;dur=34.445710, LoadShardBlock;dur=310.948966, PetaboxLoader3.resolve;dur=559.067188, PetaboxLoader3.datanode;dur=142.696245, load_resource;dur=605.057204
x-app-server: wwwb-app219
x-ts: 200
x-tr: 1011
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
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 repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | A database of github project information edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/cortesi/devsurvey.git
Give this clone URL to anyone.
git clone git://github.com/cortesi/devsurvey.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:cortesi/devsurvey.git
|
name | age | message | |
---|---|---|---|
![]() |
README | Mon Dec 14 01:27:21 -0800 2009 | Add information on "primary" field. [cortesi] |
![]() |
devsurvey.7z | Mon Dec 14 00:59:15 -0800 2009 | Initial checkin. [cortesi] |
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 );
This feature is coming soon. Sit tight!