Skip to content

Instantly share code, notes, and snippets.

@vvalchev
vvalchev / ai-project-plan.md
Last active November 2, 2025 10:51
Create a new project using AI agent.
#!/bin/sh
# exit on: error, undefined variable, piped-together commands
set -eu -o pipefail
prompt() {
read -p "$*" RES
}
yesno() {
@vvalchev
vvalchev / filter-tags.jq
Created February 23, 2022 08:10
Use JQ to filter out the OpenAPI operations with specific tag.
del(.paths[][] | select(.tags|contains(["broker"])|not))