From: Przemek K. <prz...@ni...> - 2023-08-24 15:35:01
|
On 8/23/23 22:08, Eduardo Ochs wrote: > Hi list, > > the second "external link" here: > > https://en.wikipedia.org/wiki/Antiderivative#External_links > <https://en.wikipedia.org/wiki/Antiderivative#External_links> > > has this text, > > "Mathematical Assistant on Web Archived 2020-05-01 at the Wayback > Machine — symbolic computations online. Allows users to integrate in > small steps (with hints for next step (integration by parts, > substitution, partial fractions, application of formulas and > others), powered by Maxima" > > and points to this, > > https://web.archive.org/web/20200501225647/http://um.mendelu.cz/maw-html/index.php?lang=en&form=integral > <https://web.archive.org/web/20200501225647/http://um.mendelu.cz/maw-html/index.php?lang=en&form=integral> > > but the "Submit" button in that archive'd page doesn't work... anyone > knows how to find the Maxima code behind that, and how to run it locally? I'm afraid that archive.org just archives the resulting page and in general won't have the backend code (unless the site (um.mendelu.cz) somehow exposed the backend via something like http://...../*.php The only other way would be to contact the people at mendelu.cz, or reverse-engineer it. A simple, "just for yourself" version would just do a pipe to a local maxima process, but of course an Internet-accessible version has to block commands that would damage your system (writefile("/home/eduardo/importantdata") or infinite-loop commands that would exhaust CPU/disk/memory). |