From 89b71c42c38714e9851729fddf977d992a6f8ebf Mon Sep 17 00:00:00 2001 From: AJaccP Date: Tue, 6 Aug 2024 16:07:10 +0530 Subject: [PATCH 1/5] Update about page title --- src/pages/about.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/about.astro b/src/pages/about.astro index bc90109f..7be560d2 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -3,7 +3,7 @@ import Back from "@components/Back/Back.astro"; import { default as Layout } from "src/layouts/Content/Content.astro"; --- - +
From c95409703f2e27789418b98d443850a25f06c66e Mon Sep 17 00:00:00 2001 From: AJaccP Date: Tue, 6 Aug 2024 16:12:06 +0530 Subject: [PATCH 2/5] Fix about page typos --- src/pages/about.astro | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/about.astro b/src/pages/about.astro index 7be560d2..ae856949 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -9,7 +9,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro";

About

- The Carleton Computer Science Question Repository is collection of practice + The Carleton Computer Science Question Repository is a collection of practice questions for Carleton University's Computer Science courses. The questions are sourced from previous evaluations and are intended to help students prepare for exams. @@ -19,7 +19,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro"; staff members of Carleton University's School of Computer Science.

- For those familliar with DiscreteMath.ca, this website is a modernized version built to support multiple courses and provide an easier experience for maintainers and volunteers. @@ -57,7 +57,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro";

In March 2020, the three would begin work on a project called the "Carleton - Computer Science Study Center", named to parralel the Discrete Math Study Center created by Prosenjit Bose and John Howat for COMP 1805 course. Using previous midterms and finals written by Michiel Smid and Pat Morin, Alexa manually formatted @@ -65,7 +65,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro"; the website.

- In Summer 2021, Forest hosted another event focussed on developing + In Summer 2021, Forest hosted another event focused on developing interactive resources at Carleton: "Hacking COMP 1XXX" and Matthew led an effort to rebuild the site with a group of volunteers including Damilola Adesola, Elias Hawa, Erica Li, Jonathon Steeves, and Robert Babaev. This @@ -90,7 +90,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro"; maintainers and volunteers to contribute to the project. All content was moved to a new repository and the project was renamed to "Carleton Computer Science Question Repository". John Lu and Nguyen-Hanh Nong also collaborated - on writting out solutions for almost all of the past COMP 2804 questions. + on writing out solutions for almost all of the past COMP 2804 questions. John Lu also tagged all questions with tags related to their associated course chapter, enabling students to be able to practice questions based on the chapter they are currently studying. From 28fb3bd99a78670c382a3917bcf305acb5d6ca7a Mon Sep 17 00:00:00 2001 From: AJaccP Date: Tue, 6 Aug 2024 16:20:03 +0530 Subject: [PATCH 3/5] linting --- src/pages/about.astro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/about.astro b/src/pages/about.astro index ae856949..85538418 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -9,10 +9,10 @@ import { default as Layout } from "src/layouts/Content/Content.astro";

About

- The Carleton Computer Science Question Repository is a collection of practice - questions for Carleton University's Computer Science courses. The questions - are sourced from previous evaluations and are intended to help students - prepare for exams. + The Carleton Computer Science Question Repository is a collection of + practice questions for Carleton University's Computer Science courses. The + questions are sourced from previous evaluations and are intended to help + students prepare for exams.

The project was developed by students with resources and content provided by From 14c5d073247b54a631cde818e573bdf78ccde138 Mon Sep 17 00:00:00 2001 From: AJaccP Date: Wed, 7 Aug 2024 11:25:37 +0530 Subject: [PATCH 4/5] fix generator tests typos --- .../comp2804/2013-fall-midterm/1/generator.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts b/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts index 0bc66f65..83263692 100644 --- a/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts +++ b/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts @@ -43,7 +43,7 @@ describe("comp2804/2019-winter-final/1", () => { }); describe("createIncorrectOption1", () => { - it("will return an option where the numerator and delimeter are flipped", () => { + it("will return an option where the numerator and denominator are flipped", () => { const generator = new Generator(); const option = generator.createIncorrectOption1(7, 13); @@ -54,7 +54,7 @@ describe("comp2804/2019-winter-final/1", () => { }); describe("createIncorrectOption2", () => { - it("will return an option where the delimeter is one less than the correct option", () => { + it("will return an option where the denominator is one less than the correct option", () => { const generator = new Generator(); const option = generator.createIncorrectOption2(7, 13); @@ -65,7 +65,7 @@ describe("comp2804/2019-winter-final/1", () => { }); describe("createIncorrectOption3", () => { - it("will return an option where the numerator is one less than the correct option and the delimeter is one more than the correct option", () => { + it("will return an option where the numerator is one less than the correct option and the denominator is one more than the correct option", () => { const generator = new Generator(); const option = generator.createIncorrectOption3(7, 13); From 6412bbba9e15828fe87a8d057f49fcc03afb6525 Mon Sep 17 00:00:00 2001 From: AJaccP Date: Wed, 7 Aug 2024 14:02:24 +0530 Subject: [PATCH 5/5] update evaluation in generator test file --- .../questions/comp2804/2013-fall-midterm/1/generator.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts b/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts index 83263692..79b560d6 100644 --- a/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts +++ b/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts @@ -1,7 +1,7 @@ import { describe, expect } from "@jest/globals"; import Generator from "./generator"; -describe("comp2804/2019-winter-final/1", () => { +describe("comp2804/2013-fall-midterm/1", () => { describe("createSetSizes", () => { it("will make sizeA smaller than sizeB", () => { const generator = new Generator();