https://github.com/sagemathinc/cocalc
Revision 12ff827d51c51e861be2c8ff9d32d3fcc7aad7ca authored by William Stein on 09 February 2023, 00:30:55 UTC, committed by William Stein on 09 February 2023, 00:31:49 UTC
1 parent a9695ac
Raw File
Tip revision: 12ff827d51c51e861be2c8ff9d32d3fcc7aad7ca authored by William Stein on 09 February 2023, 00:30:55 UTC
whiteboard/slides: refactor "new page" button; better scroll to elts
Tip revision: 12ff827
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