Skip to content

Instantly share code, notes, and snippets.

View willswire's full-sized avatar
♾️
CLOSE THE LOOP

Will willswire

♾️
CLOSE THE LOOP
View GitHub Profile
@willswire
willswire / jazz.swift
Created June 29, 2025 00:34
jazz.swift
import ArgumentParser
import Foundation
import FoundationModels
@main
struct JazzCommand: AsyncParsableCommand {
static var configuration = CommandConfiguration(
commandName: "jazz",
abstract: "A CLI tool to interpret shell tasks as natural language instructions."
)
@willswire
willswire / main.tf
Created March 15, 2025 23:17
R2 Bucket Token
# Account ID
variable "cloudflare_account_id" {
type = string
default = ""
}
# An R2 bucket
resource "cloudflare_r2_bucket" "this" {
account_id = var.cloudflare_account_id
name = "bucket"