https://github.com/sagemathinc/cocalc
Raw File
Tip revision: dc39aec0a130dc41cec094c7af69288681d10aa9 authored by Harald Schilly on 01 November 2019, 17:21:01 UTC
webapp/latex/pythontex: tell matplotlib what to use -- #4203
Tip revision: dc39aec
AUTHORS.md
# Authors

William Stein ([wstein@sagemath.com](mailto:wstein@sagemath.com)) wrote most of CoCalc (formally called "SageMathCloud").  See the git history, which as of Oct 30, 2015, has 96% commits by him.

For a recent breakdown, run `git shortlog -sn --no-merges`.

Everytime the GPL licensing note refers to the _"Authors of SageMathCloud"_, the following  (maybe incomplete) list is meant.

* Keith Clawson
* Tim Clemans
* Russ Hensel
* Jonathan Lee
* Andrew Ohana
* Bill Page
* Issa Rice
* Nicholas Ruhland
* Harald Schilly
* Hal Snyder
* William Stein
* Christopher Swenson
* Vivek Venkatachalam
* Travis Scholl


## Git Authors

To extract the names of all Git contributors,
run this piece of Python code inside the codebase:

    from subprocess import check_output
    authors = check_output(['git', 'log', '--pretty=format:"%aN <%aE>"', 'HEAD'])
    sortkey = lambda n : n.split("<",1)[0].split()[-1].lower() if "<" in n else n
    for name in sorted(set(authors.splitlines()), key = sortkey):
        print(name)
back to top