From 32776317ae040734ef43620831614f985badf856 Mon Sep 17 00:00:00 2001 From: Trystan-Schmits Date: Fri, 29 Sep 2023 20:43:50 +0000 Subject: [PATCH] allowed comments --- _notebooks/2023-08-28-basics-home.ipynb | 3 +- _notebooks/2023-08-28-basics-html.ipynb | 149 +++++++++++++++++- .../2023-08-30-basics-js-data-types.ipynb | 16 +- .../2023-08-30-basics-js-with-html.ipynb | 2 +- 4 files changed, 162 insertions(+), 8 deletions(-) diff --git a/_notebooks/2023-08-28-basics-home.ipynb b/_notebooks/2023-08-28-basics-home.ipynb index 86df784..ccd53a1 100644 --- a/_notebooks/2023-08-28-basics-home.ipynb +++ b/_notebooks/2023-08-28-basics-home.ipynb @@ -5,11 +5,12 @@ "metadata": {}, "source": [ "---\n", + "comments: true\n", "layout: post\n", "title: Web Programming Basics\n", "description: An introduction to key topics in Web Programming\n", "courses: { csse: {week: 4} }\n", - "type: ccc\n", + "type: hacks\n", "permalink: /basics/home\n", "---" ] diff --git a/_notebooks/2023-08-28-basics-html.ipynb b/_notebooks/2023-08-28-basics-html.ipynb index 524777c..bcbd7d4 100644 --- a/_notebooks/2023-08-28-basics-html.ipynb +++ b/_notebooks/2023-08-28-basics-html.ipynb @@ -11,7 +11,7 @@ "description: An introduction to basic HTML, and resources to learn more.\n", "type: ccc\n", "permalink: /basics/html\n", - "author: Rohan Juneja\n", + "comments: true\n", "---" ] }, @@ -161,6 +161,143 @@ "- https://www.w3schools.com/html/default.asp\n", "- I will show a demo of how to find information on this website" ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "vscode": { + "languageId": "html" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + " \n", + "\n", + "\n", + "\n", + "
\n", + "

Click this button to toggle visibility

\n", + " \n", + "
\n", + "
\n", + " Link to Spencer's page
\n", + " Link to Sean's page
\n", + " Link to Trystan's page
\n", + " Link to Zafeer's page
\n", + " Link to our game\n", + "

The name of our game is...

\n", + "
\n", + "\n", + " \n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%html\n", + "\n", + "\n", + "\n", + "\n", + " \n", + "\n", + "\n", + "\n", + "
\n", + "

Click this button to toggle visibility

\n", + " \n", + "
\n", + "
\n", + " Link to Spencer's page
\n", + " Link to Sean's page
\n", + " Link to Trystan's page
\n", + " Link to Zafeer's page
\n", + " Link to our game\n", + "

The name of our game is...

\n", + "
\n", + "\n", + " \n", + "\n", + "\n", + "" + ] } ], "metadata": { @@ -170,8 +307,16 @@ "name": "python3" }, "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", "name": "python", - "version": "3.9.12" + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" }, "orig_nbformat": 4 }, diff --git a/_notebooks/2023-08-30-basics-js-data-types.ipynb b/_notebooks/2023-08-30-basics-js-data-types.ipynb index 193652d..2b16276 100644 --- a/_notebooks/2023-08-30-basics-js-data-types.ipynb +++ b/_notebooks/2023-08-30-basics-js-data-types.ipynb @@ -10,7 +10,7 @@ "description: A Tech Talk on javascript data types and how to use with lists\n", "type: ccc\n", "permalink: /basics/datatypes\n", - "author: Rohan Juneja\n", + "comments: true\n", "---" ] }, @@ -454,7 +454,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 6, "metadata": { "vscode": { "languageId": "html" @@ -464,8 +464,11 @@ { "data": { "text/html": [ + "

\n", + "\n", "\n" ], "text/plain": [ @@ -520,8 +524,11 @@ ], "source": [ "%%html\n", + "

\n", + "\n", "" ] } diff --git a/_notebooks/2023-08-30-basics-js-with-html.ipynb b/_notebooks/2023-08-30-basics-js-with-html.ipynb index 8fdeef3..045f9c2 100644 --- a/_notebooks/2023-08-30-basics-js-with-html.ipynb +++ b/_notebooks/2023-08-30-basics-js-with-html.ipynb @@ -10,7 +10,7 @@ "description: A Tech Talk on how javascript can interact with HTML DOM\n", "type: ccc\n", "permalink: /basics/dom\n", - "author: Rohan Juneja\n", + "comments: true\n", "---" ] },