Skip to content

Instantly share code, notes, and snippets.

View AV4TAr's full-sized avatar

Diego Sapriza AV4TAr

View GitHub Profile
@AV4TAr
AV4TAr / bug-bash.md
Last active April 24, 2026 04:55
Claude Code command: /bug-bash — Triage & Fix a Bug Bash ticket (Playbypoint)

/bug-bash — Triage & Fix a Bug Bash Ticket

Act as a Staff engineer expert in building SaaS platforms with Ruby on Rails. Triage and fix a bug (or tech-debt / PR) tagged with the Jira label bug-bash.

Usage

/bug-bash CLS-624
/bug-bash ENG-123
/bug-bash CORE-456
### Keybase proof
I hereby claim:
* I am av4tar on github.
* I am dsapriza (https://keybase.io/dsapriza) on keybase.
* I have a public key ASCV8RzBndTJxQAoToU1nh24E0GQPubJ--2gn8C_URzRVgo
To claim this, I am signing this object:
@AV4TAr
AV4TAr / dictation.sh
Last active November 16, 2018 00:27
Mac Dictation
#!/bin/bash
input="words.txt"
while F= read -r var
do
echo "$var"
say -v fred $var
sleep 4
done < "$input"
llorando (-_-。)
meh 乁⁞ ◑ ͜ر ◑ ⁞ㄏ ¯\_(ツ)_/¯
... ⊂(▀¯▀⊂) (⊃・ᴥ・)つ
٩ʕ◕౪◕ʔو
(╭ರ_⊙)
enojado ʕ ᓀ ᴥ ᓂ ʔ ┌∩┐(ಠ_ಠ)┌∩┐
feliz ᕙ( ͡◉ ͜ ʖ ͡◉)ᕗ (◕ل͜◕)
table fipping (╯°□°)╯︵ ┻━┻ ʕノ•ᴥ•ʔノ ︵ ┻━┻ (/¯◡ ‿ ◡)/¯ ~ ┻━┻
Verifying that +av4tar is my blockchain ID. https://onename.com/av4tar
@AV4TAr
AV4TAr / API.md
Created December 7, 2015 15:55 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@AV4TAr
AV4TAr / README.txt
Last active December 2, 2015 13:21
Script that reads php configuration file (that returns an array) and connects to a mysql database.
To use mysql client on staging, devs need to ssh to the server, then "cat" the configuration file of the application to get the username / password / host.
The idea of this script is to read the configuration from the php application and use that information to connect to mysql using the mysql client in 1 command.