Skip to content

Instantly share code, notes, and snippets.

View NoNormalCreeper's full-sized avatar

Rikka NoNormalCreeper

View GitHub Profile
@NoNormalCreeper
NoNormalCreeper / google-ai-studio-enhance.js
Created November 26, 2025 11:22
A Userscript to enhance Google AI Studio by modifying the monospaced font and customizing the browser tab title.
// ==UserScript==
// @name Google AI Studio 增强脚本 (等宽字体 + 标题同步)
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 集合了两个功能:1. 将 code 元素改为 Fira Code;2. 将浏览器标签页标题自动修改为当前对话标题。
// @author Rikka
// @match https://aistudio.google.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
// @grant GM_addStyle
// ==/UserScript==
@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: