Skip to content

Instantly share code, notes, and snippets.

View cholf5's full-sized avatar

周尔复 cholf5

View GitHub Profile
@cholf5
cholf5 / Kanban Workflow
Last active October 24, 2025 02:25
KANBAN Workflow for LLM
# KANBAN Workflow
Unified Kanban Columns (Project Level):
* **Backlog** (Requirement Pool)
* **To Do** (Sprint/Current Week To-Do)
* **In Progress** (Development in Progress)
* **In Review** (Code Review)
* **Testing / QA** (QA Testing in Progress)
* **Blocked** (Blocked)
@cholf5
cholf5 / skip-luasteam.lua
Created January 1, 2025 16:47
Skip the steam-related functions in the love2d game by replacing the implementation of luasteam with an empty function.
-- steam = require 'luasteam'
steam = setmetatable({
init = function() end,
shutdown = function() end,
runCallbacks = function() end,
}, {
__index = function(t, k)
t[k] = setmetatable({}, {
__index = function(t1, k1)
t1[k1] = function() end