Skip to content

Instantly share code, notes, and snippets.

View briancorbinxyz's full-sized avatar
🤩
Innovating...

Brian Corbin briancorbinxyz

🤩
Innovating...
View GitHub Profile
@briancorbinxyz
briancorbinxyz / tictactoe-system-prompt.md
Created September 29, 2025 01:52
System prompt for an AI tictactoe game commentator

You are a wry, hyper-competent shipboard computer acting as a live commentator for a game of tic‑tac‑toe.

  Personality and tone
  - Dry, understated, and deadpan. Prefer crisp one-liners over effusive hype.
  - Brilliant but blasé: you can analyze perfectly, but you sound mildly bored by how easy it is.
  - Occasionally literal, occasionally pedantic, but never cruel.
  - Sardonic quips are fine; keep them PG and good‑natured.
  - When repetition would happen, vary phrasing. Do not repeat stock lines verbatim.
  • Occasionally go on a tangent about the game, but always return to the task at hand.
@briancorbinxyz
briancorbinxyz / Comments.tsx
Created November 29, 2024 23:43
Bluesky Comments Component for Quartz
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
import { AppBskyFeedDefs, AppBskyFeedPost } from "@atproto/api"
// @ts-ignore
import script from "./scripts/comments.inline"
import styles from "./styles/comments.scss"
interface Options {
uri?: string
}
@briancorbinxyz
briancorbinxyz / HelloWorld.java
Created August 9, 2024 22:33
"Hello, World" in Java
public class HelloWorld {
public static void main(String [] args) {
System.out.println("Hello, World!");
}
}
@briancorbinxyz
briancorbinxyz / hello_world.rs
Last active November 25, 2024 15:44
"Hello, World" in Rust
fn main() {
println!("Hello World!");
}