https://github.com/sagemathinc/cocalc
Raw File
Tip revision: 67a6efd7873e25ed633975a73f09cd92a9afe5d7 authored by William Stein on 05 April 2024, 22:44:18 UTC
update google pricing again (adding new n4 instance type)
Tip revision: 67a6efd
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