From bbb491236ec53d8b7fa77884642541b0754f9db1 Mon Sep 17 00:00:00 2001 From: John M Date: Mon, 27 Apr 2026 19:18:54 -0700 Subject: [PATCH 1/5] Revise README for clarity and consistency Updated project description for clarity and removed redundant text. --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5aa0d2bbab..c26006017d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Founded and maintained by John Mortensen. -Open Coding Society `Pages` is a project designed to support students in their Computer Science and Software Engineering education. It offers a wide range of resources including tech talks, code examples, and educational blogs. +Open Coding Society `Pages` is a project designed to support students in their Computer Science education. It offers a wide range of resources including tech talks, code examples, and educational blogs. This GitHub Pages repository can be customized by the blogger to support computer science learning as the student works through the pathways of using Javascript, Python/Flask, Java/Spring. It is intended to support course work for Computer Science and Software Engineering (CSSE), AP Computer Science Principles (APCSP or CSP), and AP Computer Science 'A' (APCSA, or CSA). @@ -15,9 +15,8 @@ In general, students and instructors are expected to use GitHub Pages to build l Exchange of information from this repository to you personal GitHub Pages can be done in many ways... 1. sharing a file, ie: `wget "raw-link.ipynb"` -2. creating a template from this repository -3. creating a fork to be shared by you and team members -4. etc. +2. creating a template from this repository to break off into custom projects +3. creating a fork to be shared by you and team members to contribute back to OCS `pages` --- @@ -25,7 +24,7 @@ Exchange of information from this repository to you personal GitHub Pages can be This project is in its 4th revision (aka 4.0). -The project was initially based on a project called Fastpages. But this project has diverged from those roots into an independent entity, in fact most things (like the build system), are completely different. The decision to separate from Fastpages was influenced by it's deprecation by the authors. It is believed by our community that the authors of Fastpages turned toward the support of Quatro. After that change of direction Fastpages did not align with the Instructors's goals. Thus, Open Coding Society 'Pages' has more of a raw development and classroom blogging purpose. But, we are grateful to Fastpages for their inspiration. But, we are grateful to Fastpages for their inspiration. +The project was initially based on a project called Fastpages. But this project has diverged from those roots into an independent entity, in fact most things (like the build system), are completely different. The decision to separate from Fastpages was influenced by it's deprecation by the original authors. It is believed by our community that the authors of Fastpages turned toward the support of Quatro. After that change of direction Fastpages did not align with the OCS `pages` goals. Thus, `pages` has more of a raw development and classroom blogging purpose. But, as we parted we were grateful to Fastpages for their inspiration. Also, this project originations were focused around the GitHub Pages Minima theme and still uses it as a remote. ### License From 8f8c0a4aaeffe28429803a80d6c62b27e5a9f004 Mon Sep 17 00:00:00 2001 From: jm1021 Date: Thu, 14 May 2026 08:27:42 -0700 Subject: [PATCH 2/5] codemirror selection highlighting enabled --- _includes/head-custom.html | 3 +++ _includes/runners/code.html | 3 ++- _includes/runners/game.html | 3 ++- _includes/runners/ui.html | 3 ++- _sass/open-coding/forms/_runner-base.scss | 7 +++++++ 5 files changed, 16 insertions(+), 3 deletions(-) diff --git a/_includes/head-custom.html b/_includes/head-custom.html index 3a9cfb825e..55a66eeda3 100644 --- a/_includes/head-custom.html +++ b/_includes/head-custom.html @@ -22,6 +22,9 @@ + + + {%- endif -%} {%- if page.tailwind -%} diff --git a/_includes/runners/code.html b/_includes/runners/code.html index 2ac312b2a4..ea26deda63 100644 --- a/_includes/runners/code.html +++ b/_includes/runners/code.html @@ -78,7 +78,8 @@ mode: initialLang === "java" ? "text/x-java" : (initialLang || "python"), theme: "darcula", indentUnit: 4, - tabSize: 4 + tabSize: 4, + styleSelectedText: true } }); diff --git a/_includes/runners/game.html b/_includes/runners/game.html index 1a9bf654a2..0e13a4e4ea 100644 --- a/_includes/runners/game.html +++ b/_includes/runners/game.html @@ -107,7 +107,8 @@ codeMirrorOptions: { mode: 'javascript', theme: 'darcula', - lineNumbers: true + lineNumbers: true, + styleSelectedText: true } }); diff --git a/_includes/runners/ui.html b/_includes/runners/ui.html index bbcb3878eb..936ad03b1f 100644 --- a/_includes/runners/ui.html +++ b/_includes/runners/ui.html @@ -48,7 +48,8 @@ mode: "javascript", theme: "darcula", indentUnit: 2, - tabSize: 2 + tabSize: 4, + styleSelectedText: true } }); diff --git a/_sass/open-coding/forms/_runner-base.scss b/_sass/open-coding/forms/_runner-base.scss index 8413284abf..ef169fa9c8 100644 --- a/_sass/open-coding/forms/_runner-base.scss +++ b/_sass/open-coding/forms/_runner-base.scss @@ -30,6 +30,13 @@ border: 1px solid var(--ui-border); } + // CodeMirror selection highlighting - use CodeMirror's proper API + // When styleSelectedText: true is enabled, CodeMirror adds .CodeMirror-selectedtext + .CodeMirror-selectedtext { + background: var(--pref-accent-color, #3b82f6) !important; + color: #ffffff !important; + } + // Output section .output-container { @include sub-container; From 5e81d996c80d3804d269f3f81cb9494f95a50911 Mon Sep 17 00:00:00 2001 From: jm1021 Date: Sat, 19 Sep 2026 10:17:02 -0700 Subject: [PATCH 3/5] Update communication systems --- _posts/capstone/2026-08-27-communication-system-capstone.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/capstone/2026-08-27-communication-system-capstone.md b/_posts/capstone/2026-08-27-communication-system-capstone.md index 112d7bd687..320b77ccde 100644 --- a/_posts/capstone/2026-08-27-communication-system-capstone.md +++ b/_posts/capstone/2026-08-27-communication-system-capstone.md @@ -2,8 +2,8 @@ microblog: true toc: false layout: post -title: Communication System Capstone -description: A capstone moving class discussion out of Slack and onto the course site — class-wide announcements, per-week chat, and a rich-text composer with emoji already shipped, with per-assignment threads, 1:1 direct messages, GIFs, Slack-style emoji reactions, and teacher moderation still to build. +title: OCS Communication Systems +description: Students are extending the OCS communication system with chat, announcements, assignment discussions, direct messaging, calendar integration, and reusable presentation components. The work includes maintaining the real-time WebSocket service and connecting these features to the existing course site, backend APIs, security, and data model. Students will also develop the OCS SASS grammar—a small, purpose-built styling system for consistent, responsive, reusable components across the OCS GitHub Pages ecosystem. permalink: /capstone/communication-system/ sticky_rank: 1 --- From 81ce6f7ca310eb26e6295717d37ddb0d373963ad Mon Sep 17 00:00:00 2001 From: jm1021 Date: Sat, 19 Sep 2026 10:36:02 -0700 Subject: [PATCH 4/5] Update title and description --- _data/toolchain-trail-capstone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/toolchain-trail-capstone.yml b/_data/toolchain-trail-capstone.yml index 4a740500b2..b260f3e110 100644 --- a/_data/toolchain-trail-capstone.yml +++ b/_data/toolchain-trail-capstone.yml @@ -1,8 +1,8 @@ -Title: "Toolchain Trail Capstone" +Title: "OCS Gamified Toolchain Trail" TeamName: "The7Blueprints" Logo: "capstone/toolchain_trail_logo.jpg" Badge: "'Level two' game to set up tools." -Overview: "Toolchain Trail is the second level of the OCS Onboarding Gamification project and builds upon the foundation established in Level 1, Identity Forge. Its purpose is to guide students through setting up and verifying a complete development environment for students using macOS, Windows/WSL, or Linux." +Overview: "Students are extending the OCS onboarding system to guide students through development-environment setup and verify that their machines are ready for classroom development. The project includes a cross-platform Python verification agent, tool and project checks, GitHub identity, remediation feedback, and integration with the OCS Analytics System. Verification and gameplay results will flow into the existing Java/Spring/SQL backend, where student activity can contribute to status, grading, progress, and regression tracking. The goal is to provide students and teachers with a working-status view of development environments while connecting machine-level activity to the broader OCS learning system." Team: ["Hope Fune", "Anishka Sangvi", "Kailyn Sanford", "Meryl Chen", "Anika Maranthe", "Avantika Chittari", "Laya Balaji"] Stages: [{title: "Stage 1: Development Environment Verification", description: "Improve the existing verifyTools.sh Bash script so it can determine whether a student's development environment is properly configured.", points: ["Find the repository automatically and verify required tools, files, and project configuration.", "Give clear remediation steps and a passed, warning, or failed summary with the correct exit code.", "Keep checks secure, platform-aware, and documented in the README."]}, {title: "Stage 2: Python Onboarding Agent", description: "Replace the Bash verification script with a cross-platform Python onboarding agent that produces structured JSON for every verification.", points: ["Verify development tools, GitHub access, repository setup, and project runtime across supported platforms.", "Record structured results and connect them to each student's GitHub identity.", "Track progress, retries, and regressions to gate levels and surface students who need help."]}] Stations: [{name: "Terminal Town Gate", purpose: "Shell fundamentals and package management"}, {name: "Compiler Canyon Forge", purpose: "Java or Python runtime"}, {name: "Editor Isle Tower", purpose: "VS Code/Cursor and WSL configuration"}, {name: "Git Village Hall", purpose: "Git installation and configuration"}, {name: "GitHub Gateway Arch", purpose: "GitHub authentication and repository connectivity"}, {name: "Build Bridge", purpose: "Project build and runtime verification"}, {name: "Integration Summit", purpose: "Final end-to-end verification", gated: true}] From 094aad46a8a6a5f3b4834dfc1ff8e0900477a9f6 Mon Sep 17 00:00:00 2001 From: jm1021 Date: Sat, 19 Sep 2026 10:42:25 -0700 Subject: [PATCH 5/5] more description updates --- _data/communication_system_infograph.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/communication_system_infograph.yml b/_data/communication_system_infograph.yml index ff51a21c6f..cddca02f3a 100644 --- a/_data/communication_system_infograph.yml +++ b/_data/communication_system_infograph.yml @@ -1,6 +1,6 @@ # Communication System Capstone Infographic -Title: "Communication System" -Description: "Class discussion is moving out of Slack and into the course site, next to the work it is about. Class-wide announcements, per-week chat, and a rich-text composer with emoji already ship; still to build are a thread on every assignment, 1:1 direct messages, GIFs in the composer, and Slack-style emoji reactions." +Title: "OCSCommunication Systems" +Description: "Students are extending the OCS communication system with chat, announcements, assignment discussions, direct messaging, calendar integration, and reusable presentation components. The work includes maintaining the real-time WebSocket service and connecting these features to the existing course site, backend APIs, security, and data model. Students will also develop the OCS SASS grammar—a small, purpose-built styling system for consistent, responsive, reusable components across the OCS GitHub Pages ecosystem." Topics: - title: "Class Announcements"