Skip to content

Instantly share code, notes, and snippets.

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 21, 2025 07:57
Conventional Commits Cheatsheet
@burkeholland
burkeholland / ainstall.md
Last active July 21, 2025 07:57
Beast Mode v3

Beast Mode v3

Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.

Installation Instructions

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
  • Select "User Data Folder"
  • Give it a name (Beast Mode)
@dedlim
dedlim / claude_3.5_sonnet_artifacts.xml
Last active July 21, 2025 07:55
Claude 3.5 Sonnet, Full Artifacts System Prompt
<artifacts_info>
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity.
# Good artifacts are...
- Substantial content (>15 lines)
- Content that the user is likely to modify, iterate on, or take ownership of
- Self-contained, complex content that can be understood on its own, without context from the conversation
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations)
- Content likely to be referenced or reused multiple times
@burkeholland
burkeholland / 4.1.chatmode.md
Last active July 21, 2025 07:53
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.

@0xdevalias
0xdevalias / reverse-engineering-macos.md
Last active July 21, 2025 07:52
Some notes, tools, and techniques for reverse engineering macOS binaries
@vv20250721
vv20250721 / index.md
Created July 21, 2025 07:51
在线观看麻豆国产精品剧情-特级丰满少妇-日本资源在线高速播放-91热在精品国产qd-亚洲国产精品无码aaa片 - 2107 - yw
@atyachin
atyachin / aws_regions.json
Created September 29, 2020 19:08
AWS Regions / Datacenters Geo Locations
[
{
"code": "us-east-1",
"region": "US East",
"city": "Virginia",
"lat": 38.9940541,
"long": -77.4524237,
"country": "US"
},
{
@demosjarco
demosjarco / command.pwsh
Last active July 21, 2025 07:48 — forked from laurentpellegrino/microsoft-azure-datacenters.json
Microsoft Azure Datacenters (including coordinates)
Get-AzLocation -ExtendedLocation $true | ConvertTo-Json -Depth 100 > microsoft-azure-datacenters.json
@Pieeer1
Pieeer1 / ExpoVoipPushToken.types.ts
Created July 11, 2025 17:03
Expo Modules Voip Push Token
export interface VoipToken {
voipToken: string;
}
export type ExpoVoipPushTokenModuleEvents = {
onRegistration: (params: VoipToken) => void;
notification: (params: { payload: Record<string, any> }) => void;
};