SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"realpath ../tests| { | |
| "$schema": "https://json.schemastore.org/claude-code-settings.json", | |
| "statusLine": { | |
| "type": "command", | |
| "command": "~/.claude/statusline.sh", | |
| "padding": 0 | |
| } | |
| } |
| // ==UserScript== | |
| // @name Show sale price | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Show sale price | |
| // @author Ivan | |
| // @match https://www.foxtrot.com.ua/* | |
| // @grant none | |
| // ==/UserScript== |
| #!/bin/zsh | |
| url="$1"; | |
| if [ -z "$url" ]; then | |
| echo "Please provide a url to download the mp3 files"; | |
| exit 1; | |
| fi | |
| mkdir -p models | |
| mkdir -p audio | |
| model_file=models/ggml-small.bin |
| #!/usr/bin/env bash | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" | |
| docker run --rm -v "$SCRIPT_DIR":/app \ | |
| -w "/app" \ | |
| -it "mileschou/xdebug:7.4" \ | |
| "./vendor/bin/phpunit" |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| if [ ! -f /tmp/brightness ]; then | |
| BRIGHTNESS=$(xrandr --verbose | grep -i brightness | cut -f2 -d ' ' | head -n1) | |
| else | |
| BRIGHTNESS=$(cat /tmp/brightness) | |
| fi | |
| # Increment (1) or decrement (0) | |
| if [[ "$1" == "--down" ]]; then |
| <?php | |
| /** | |
| * This class is ok. | |
| */ | |
| class User { | |
| /** | |
| * @var string | |
| */ |
| #!/bin/bash | |
| mktouch() { | |
| for f in "$@"; do | |
| sudo mkdir -p -- "$(dirname -- "$f")" | |
| sudo touch -- "$f" | |
| done | |
| } |
| class EqExtension extends AbstractExtension { | |
| /** | |
| * Returns extension name. | |
| * | |
| * @return string | |
| */ | |
| public function getName() { | |
| return 'function'; | |
| } |