WYSIWYG editor REPO (WIPING)
I will coming back to this repo soon.
light mode | dark mode |
---|---|
![]() |
![]() |
AI Code Reviewer REPO
used cloudflare workder AI/KV and Github WebHooks (commit events). Deploy doc and dev doc are completed.
Get into REPO to see details.
unauthorized | authorized | update prompts | Api DOC | example |
---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
Basketball game REPO
A game demo help with Trae & AI.
Complete dev logs with AI in FeiShu
main page | game page (with debug helper) |
---|---|
![]() |
![]() |
My personal ESLint Config package REPO
// eslint.config.mjs for react project
import globals from "globals"
import { combine, combineGlobals, ignores } from "@aolyang/eslint-config"
import react from "@aolyang/eslint-config/react"
import stylistic from "@aolyang/eslint-config/stylistic"
export default combine(
combineGlobals(
globals.browser,
globals.node
),
react(),
stylistic(),
{ ignores }
)