Updated introductory description

This commit is contained in:
Carsten Grohmann 2019-12-05 06:44:20 +01:00
parent 606d0d6769
commit 99257ddd79
2 changed files with 9 additions and 6 deletions

View File

@ -149,12 +149,15 @@ function goBack() {
</nav> </nav>
<p> <p>
This web page analyses Linux Out Of Memory (OOM) messages and shows these OOMAnalyser is a small project to transform the OOM message of a Linux kernel into a more user-friendly format.
information in a human friendly presentation.
</p> </p>
<p> <p>
Your input will be analysed locally - in your browser - by an integrated OOMAnalyser consists of a web page into whose input field the OOM message is copied. JavaScript code extracts
JavaScript script without transferring your data to foreign servers. the data from it and displays the details. All processing takes place in the browser. No data is transferred
to external servers. This makes it possible to use a locally stored copy of the website for analysis.
This project is written in <a href="https://www.python.org">Python</a> and uses
<a href="https://www.transcrypt.org/">Transcrypt</a> to translate Python code into JavaScript.
</p> </p>
<p> <p>

View File

@ -8,8 +8,8 @@ OOMAnalyser consists of a web page into whose input field the OOM message is cop
from it and displays the details. All processing takes place in the browser. No data is transferred to external servers. from it and displays the details. All processing takes place in the browser. No data is transferred to external servers.
This makes it possible to use a locally stored copy of the website for analysis. This makes it possible to use a locally stored copy of the website for analysis.
This project is written in Python and uses [Transcrypt](https://www.transcrypt.org/) to translate the Python sources This project is written in [Python](https://www.python.org) and uses [Transcrypt](https://www.transcrypt.org/) to
into JavaScript. translate Python code into JavaScript.
The current online version is available at https://www.carstengrohmann.de/oom/ . The current online version is available at https://www.carstengrohmann.de/oom/ .