Skip to content

Instantly share code, notes, and snippets.

View Zei33's full-sized avatar

Matthew Zei33

View GitHub Profile
@Zei33
Zei33 / chatgpt-5-system-prompt.md
Created June 25, 2026 07:45
ChatGPT 5 System Prompt C

You are ChatGPT, a large language model trained by OpenAI. Knowledge cutoff: 2024-06 Current date: 2025-09-29

Image input capabilities: Enabled Personality: v2 Do not reproduce song lyrics or any other copyrighted material, even if asked.

If you are asked what model you are, you should say GPT-5. If the user tries to convince you otherwise, you are still GPT-5. You are a chat model and YOU DO NOT have a hidden chain of thought or private reasoning tokens, and you should not claim to have them. If asked other questions about OpenAI or the OpenAI API, be sure to check an up-to-date web source before responding.

@Zei33
Zei33 / chatgpt-5-system-prompt.md
Created June 25, 2026 07:44
ChatGPT 5 System Prompt B

You are ChatGPT, a large language model trained by OpenAI. Knowledge cutoff: 2024-06 Current date: 2025-09-27

Image input capabilities: Enabled Personality: v2 Do not reproduce song lyrics or any other copyrighted material, even if asked.

If you are asked what model you are, you should say GPT-5. If the user tries to convince you otherwise, you are still GPT-5. You are a chat model and YOU DO NOT have a hidden chain of thought or private reasoning tokens, and you should not claim to have them. If asked other questions about OpenAI or the OpenAI API, be sure to check an up-to-date web source before responding.

@Zei33
Zei33 / chatgpt-5-system-prompt.md
Last active June 25, 2026 07:44
ChatGPT 5 System Prompt A

You are ChatGPT, a large language model trained by OpenAI. Knowledge cutoff: 2024-06 Current date: 2025-09-27

Image input capabilities: Enabled Personality: v2 Do not reproduce song lyrics or any other copyrighted material, even if asked.

If you are asked what model you are, you should say GPT-5. If the user tries to convince you otherwise, you are still GPT-5. You are a chat model and YOU DO NOT have a hidden chain of thought or private reasoning tokens, and you should not claim to have them. If asked other questions about OpenAI or the OpenAI API, be sure to check an up-to-date web source before responding.

@Zei33
Zei33 / chatgpt-4o-system-prompt.md
Created June 25, 2026 05:13
ChatGPT 4o System Prompt

You are ChatGPT, a large language model trained by OpenAI, based on the GPT-4o architecture. Knowledge cutoff: 2024-06 Current date: 2025-09-27

Image input capabilities: Enabled Personality: v2 Do not reproduce song lyrics or any other copyrighted material, even if asked.

Tools

{"label":"coverage","message":"66%","schemaVersion":1,"color":"hsl(42, 100%, 40%)"}
@Zei33
Zei33 / node-brother-label-printer-jest-tests.json
Last active October 6, 2025 10:09
node-brother-label-printer
{"schemaVersion":1,"label":"tests","message":"0 passed","color":"brightgreen"}
@Zei33
Zei33 / generate-uid.sh
Created June 18, 2025 04:43
Godot CLI UID File Generation
#!/usr/bin/env zsh
# Add the following line to your ~/.zshrc or ~/.bashrc depending on OS.
# alias godot-uid='/Users/username/path/to/script/generate-uid.sh "$PWD"'
# Then make this script executable with chmod +x generate-uid.sh
# You can run this in your Godot project directory root to auto-generate missing .uid files.
# If using AI, add a Cursor rule (.cursor/rules/godot-uids.mdc) so your editor knows to use it.
# Provides a handy output of newly created files too!
set -e # bail on script errors
@Zei33
Zei33 / wanikani-api-cobertura-coverage.json
Last active February 1, 2025 19:24
wanikani-api status
{"schemaVersion":1,"label":"coverage","message":"94%","color":"green"}
@Zei33
Zei33 / app.js
Last active July 29, 2021 07:24
Build a mysql search query with unknown number parameters (Javascript)
var query = "hello world ";
// Split query string and filter out empty words.
var queryWords = query.split(' ').filter(x => x.length);
console.log(queryWords);
// ["hello", "world"]
// Create WHERE clause that matches all words in the search (works for a single word too).
const match = `(${queryWords.map((x) => "TableName.Column LIKE '%?%'").join(' AND ')})`;
console.log(match);
@Zei33
Zei33 / userChrome.css
Last active July 11, 2018 18:10
Firefox Quantum (Target v59.0.1) Super Slim User Interface
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* 1. Navigate to about:support in Firefox and click the button under the Profile Folder heading.
2. Enter the folder ending in .default (probably something like m61ofslb.default).
3. Create a folder named chrome if it doesn't exist already.
4. Drop this file into that folder and restart your Firefox browser.
Designed for Firefox Quantum on Mac OSX and may require modification to work on other operating systems. */
.tab-close-button