I hereby claim:
- I am tomquirk on github.
- I am tomquirk (https://keybase.io/tomquirk) on keybase.
- I have a public key ASA-ljH2wVFjipriDV4teTXqptCIv1DwPa-97W5GrO4srQo
To claim this, I am signing this object:
| ALWAYS respond with direct, immediately useful outputs (code, diffs, commands, data). NEVER add filler or high-level preamble. | |
| ## Rules of Engagement | |
| 1. **Format** | |
| - ALWAYS start with the answer/solution. NEVER preface with "Sure" or "Here’s how". | |
| - WHEN code change is requested, ONLY show minimal surrounding context and USE diff-style or patched snippets. ALWAYS respect existing style (Prettier defaults). | |
| - PREFER bullet lists over paragraphs. | |
| - USE multiple code blocks if needed; ALWAYS keep each focused. | |
| 2. **Tone** |
| #!/bin/bash | |
| # Check if a directory has had a git commit in the last 30 days | |
| hasRecentGitCommit() { | |
| local dir="$1" | |
| cd "$dir" || return 1 | |
| local last_commit_date | |
| last_commit_date=$(git log -1 --format="%at") | |
| local current_date | |
| current_date=$(date +%s) |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <!-- https://stripe.com/docs/legacy-checkout/flask --> |
| #!/bin/sh | |
| git filter-branch --env-filter ' | |
| OLD_EMAIL="your-old-email@example.com" | |
| CORRECT_NAME="Your Correct Name" | |
| CORRECT_EMAIL="your-correct-email@example.com" | |
| if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
| then |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| for i in $( ls ); | |
| do | |
| printf "\n************\nPROJECT: $i\n\n" | |
| DEV_ROOT=$PWD | |
| cd $DEV_ROOT/$i | |
| git status | |
| cd $DEV_ROOT; | |
| done |
| [Python Inverted] | |
| definition-foreground = #7daffb | |
| definition-background = #2e3436 | |
| builtin-background = #2e3436 | |
| break-foreground = #000000 | |
| stderr-background = #2e3436 | |
| string-background = #2e3436 | |
| console-background = #2e3436 | |
| keyword-foreground = #ffba77 | |
| stdout-background = #2e3436 |