This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| location: { | |
| city: "Austin", | |
| state: "TX" | |
| }, | |
| category: { | |
| name: "Professional Services", | |
| id: 42, | |
| "description": "Welcome to Austin, Texas's best directory brought to you by the OwnLocal. Check out businesses like Dime Box Cattle Co...", | |
| "images": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "log" | |
| _ "github.com/go-sql-driver/mysql" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "query": { | |
| "bool": { | |
| "should": [ | |
| { | |
| "simple_query_string": { | |
| "fields": [ | |
| "name^3", | |
| "description", | |
| "service_location", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Ring terminal bell when Claude needs user input. | |
| # Registered on: Notification (permission_prompt), Stop | |
| # | |
| # - Notification:permission_prompt fires for tool permissions AND AskUserQuestion | |
| # dialogs, after a ~6s typing-idle delay. Bell rings unconditionally. | |
| # - Stop fires when Claude's turn ends. Bell rings only if the final message | |
| # ends with "?" (trailing whitespace stripped). | |
| # | |
| # Always exits 0 — never break Claude's workflow over a cosmetic bell. |
OlderNewer