Skip to content

Instantly share code, notes, and snippets.

View marksnoopy's full-sized avatar

Mark Snoopy marksnoopy

View GitHub Profile
@robertpainsi
robertpainsi / commit-message-guidelines.md
Last active May 7, 2025 20:05
Commit message guidelines

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@TakWolf
TakWolf / ini.lua
Last active June 19, 2022 00:02
Lua读取ini文件
--===================--
-- INI格式读取工具类
--===================--
ini = {}
--[[
载入一个INI文件
--]]
function ini.load(filename)
local data = {}