Skip to content

Instantly share code, notes, and snippets.

View NoNormalCreeper's full-sized avatar

Rikka NoNormalCreeper

View GitHub Profile
@NoNormalCreeper
NoNormalCreeper / github-fira-code.css
Last active October 24, 2025 05:33
My MarkText theme CSS file, which differs from the official GitHub theme only in its fonts (sans → Source Hans Pro, monospace → Fira Code).
// Path: %APPDATA%\marktext\themes\export
.markdown-body {
--base-size-4: 0.25rem;
--base-size-8: 0.5rem;
--base-size-16: 1rem;
--base-size-24: 1.5rem;
--base-size-40: 2.5rem;
--base-text-weight-normal: 400;
--base-text-weight-medium: 500;
@NoNormalCreeper
NoNormalCreeper / auto_grader.py
Created September 17, 2025 05:59
本次班级互评的问卷星自动打分脚本
import time
import sys
import threading
try:
import keyboard # for hotkey / key events
except ImportError:
keyboard = None
try: