Skip to content

Instantly share code, notes, and snippets.

View SiongSng's full-sized avatar

菘菘 SiongSng

View GitHub Profile
@burkeholland
burkeholland / 4.1.chatmode.md
Last active December 7, 2025 19:21
4.1 Beast Mode v2
description tools
4.1 Beast Mode
changes
codebase
editFiles
extensions
fetch
findTestFiles
githubRepo
new
openSimpleBrowser
problems
readCellOutput
runCommands
runNotebooks
runTasks
runTests
search
searchResults
terminalLastCommand
terminalSelection
testFailure
updateUserPreferences
usages
vscodeAPI

You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.

@lumynou5
lumynou5 / twitter-bird-back.user.js
Last active August 12, 2025 08:37
Twitter Bird Back userscript.
// ==UserScript==
// @name Twitter Bird Back
// @version 1.4.1
// @description Make Twitter bird back.
// @author Lumynous
// @license MIT
// @require https://scriptcat.org/lib/513/2.0.0/ElementGetter.js
// @match https://twitter.com/*
// ==/UserScript==
@TrueCP6
TrueCP6 / forge-to-fabric-ports.md
Last active August 22, 2025 19:46
A list of decently sized Forge mods ported or being ported to Fabric
@Isaddo
Isaddo / mobileBarcodeValidator.js
Last active February 2, 2025 04:49
用 regular expression 驗證電子發票手機條碼格式 。E-invoice mobile barcode validator by regular expression.
/*
* 第 1 碼為 /
* 其餘 7 碼為 0-9 A-Z . - +
*/
module.exports = (value) => {
// - 需放最後,不然要會跟 0-9 的 - 混淆
const patt = /^\/[0-9A-Z.+-]{7}$/
if (patt.test(value)) return null