Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 4183461function randchar(str) {2var i = Math.floor(Math.random() * str.length);3while (i == str.length)4i = Math.floor(Math.random() * str.length);5return str[i];6}78hexdigits = "0123456789abcdef";910function randlight() {11return randchar("cdef")+randchar(hexdigits)+12randchar("cdef")+randchar(hexdigits)+13randchar("cdef")+randchar(hexdigits)14}15function randdark() {16return randchar("012345789")+randchar(hexdigits)+17randchar("012345789")+randchar(hexdigits)+18randchar("102345789")+randchar(hexdigits)19}2021document.write('<style type="text/css">\n<!--\n');22document.write('body {\n color: #'+randdark()+';\n background: #'+23randlight()+';\n}\n');24document.write('a:link {\n color: #'+randdark()+';\n}\n');25document.write('a:visited {\n color: #'+randdark()+';\n}\n');26document.write('a:active {\n color: #'+randdark()+';\n}\n');27document.write('a:hover {\n background-color: #'+randlight()+';\n}\n');28document.write('pre {\n color: #'+randdark()+';\n}\n');29document.write('tt {\n color: #'+randdark()+';\n}\n');30document.write('code {\n color: #'+randdark()+';\n}\n');31document.write('var {\n color: #'+randdark()+';\n}\n');32document.write('div.func {\n background-color: #'+randlight()+';\n}\n');33document.write('div.example {\n background-color: #'+randlight()+';\n}\n');34document.write('div.chlinktop {\n background-color: #'+randlight()+';\n}\n');35document.write('div.chlinkbot {\n background-color: #'+randlight()+';\n}\n');36document.write('pre.normal {\n color: #'+randdark()+';\n}\n');37document.write('code.func {\n color: #'+randdark()+';\n}\n');38document.write('code.keyw {\n color: #'+randdark()+';\n}\n');39document.write('code.file {\n color: #'+randdark()+';\n}\n');40document.write('code.code {\n color: #'+randdark()+';\n}\n');41document.write('code.i {\n color: #'+randdark()+';\n}\n');42document.write('strong.button {\n color: #'+randdark()+';\n}\n');43document.write('span.Heading {\n color: #'+randdark()+';\n}\n');44document.write('var.Arg {\n color: #'+randdark()+';\n}\n');45document.write('strong.pkg {\n color: #'+randdark()+';\n}\n');46document.write('strong.Mark {\n color: #'+randdark()+';\n}\n');47document.write('b.Ref {\n color: #'+randdark()+';\n}\n');48document.write('span.Ref {\n color: #'+randdark()+';\n}\n');49document.write('span.GAPprompt {\n color: #'+randdark()+';\n}\n');50document.write('span.GAPbrkprompt {\n color: #'+randdark()+';\n}\n');51document.write('span.GAPinput {\n color: #'+randdark()+';\n}\n');52document.write('b.Bib_author {\n color: #'+randdark()+';\n}\n');53document.write('span.Bib_key {\n color: #'+randdark()+';\n}\n');54document.write('i.Bib_title {\n color: #'+randdark()+';\n}\n');5556document.write('-->\n</style>\n');575859606162