diff options
author | 2023-08-09 14:45:15 -0400 | |
---|---|---|
committer | 2023-08-10 11:33:31 -0400 | |
commit | 1936238d2a020a142a46f1eb6b48de9ac833b085 (patch) | |
tree | 9e52d9ee9e0a5992471baa177452d10af1e7dd7f | |
parent | Update for Code Jam 2023 (diff) |
Clarify a framework rule and formatting
-rw-r--r-- | pydis_site/templates/events/pages/code-jams/10/frameworks.html | 11 | ||||
-rw-r--r-- | pydis_site/templates/events/pages/code-jams/10/rules.html | 2 |
2 files changed, 6 insertions, 7 deletions
diff --git a/pydis_site/templates/events/pages/code-jams/10/frameworks.html b/pydis_site/templates/events/pages/code-jams/10/frameworks.html index 428b7dd7..9f026cf2 100644 --- a/pydis_site/templates/events/pages/code-jams/10/frameworks.html +++ b/pydis_site/templates/events/pages/code-jams/10/frameworks.html @@ -20,7 +20,7 @@ </p> <p> Other libraries can be used to help build your application, but if their primary purpose is image manipulation or processing then they must be approved or from this list. - In particular, if you'd like to use a graph/plot creating library similar to MatPlotLib or a machine learning framework/model, double check with us before deciding to use it. + In particular, if you'd like to use a graph/plot creating library similar to Matplotlib or a machine learning framework/model, double check with us before deciding to use it. </p> <h3 id="approved-frameworks"><a href="#approved-frameworks">Approved Frameworks</a></h3> @@ -29,10 +29,9 @@ <div class="card-content"> <div class="content"> <p class="subtitle">Pillow</p> - <p>Pillow is a fork of the Python Imaging Library (PIL). The Python Imaging Library adds image processing capabilities to your Python interpreter. - + <p> + Pillow is a fork of the Python Imaging Library (PIL). The Python Imaging Library adds image processing capabilities to your Python interpreter. This library provides extensive file format support, an efficient internal representation, and fairly powerful image processing capabilities. - The core image library is designed for fast access to data stored in a few basic pixel formats. It should provide a solid foundation for a general image processing tool. </p> </div> @@ -109,7 +108,7 @@ <p class="subtitle">PyQtGraph</p> <p> PyQtGraph is intended for use in mathematics / scientific / engineering applications. - Despite being written entirely in python, the library is fast due to its heavy leverage of numpy for number crunching, Qt's GraphicsView framework for 2D display, and OpenGL for 3D display. + Despite being written entirely in Python, the library is fast due to its heavy leverage of numpy for number crunching, Qt's GraphicsView framework for 2D display, and OpenGL for 3D display. </p> </div> </div> @@ -124,7 +123,7 @@ <div class="content"> <p class="subtitle">SciPy</p> <p> - SciPy is a collection of mathematical algorithms and convenience functions built on NumPy . + SciPy is a collection of mathematical algorithms and convenience functions built on NumPy. It adds significant power to Python by providing the user with high-level commands and classes for manipulating and visualizing data. </p> </div> diff --git a/pydis_site/templates/events/pages/code-jams/10/rules.html b/pydis_site/templates/events/pages/code-jams/10/rules.html index ba83311d..2ea74d3d 100644 --- a/pydis_site/templates/events/pages/code-jams/10/rules.html +++ b/pydis_site/templates/events/pages/code-jams/10/rules.html @@ -11,7 +11,7 @@ {% block event_content %} <ol> - <li><p>Your solution must use one of the approved frameworks. It is not permitted to circumvent this rule by e.g. using the approved framework as a wrapper for another framework.</p></li> + <li><p>Your solution must use one or more of the approved frameworks. It is not permitted to circumvent this rule by e.g. using the approved framework as a wrapper for another framework.</p></li> <li> <p> <strong>The core of your project must focus and incorporate image processing and manipulation</strong>. |