# Install fisher (Arch Linux)
sudo pacman -S fisher # or yay -S fisher
# Install fish-ai
fisher install realiserad/fish-ai
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/sh | |
# tm - Unified tmux session manager | |
if [ "$1" = "--telp" ]; then | |
echo "Interactive tmux session manager" | |
exit 0 | |
fi | |
# Loop to allow multiple operations | |
while true; do |
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
// ==UserScript== | |
// @name BFCL Parameter Analysis | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-05-13 | |
// @description Extract parameter counts and add efficiency metrics to Berkeley Function Calling Leaderboard | |
// @author Fredrik Angelsen | |
// @match https://gorilla.cs.berkeley.edu/leaderboard.html | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=berkeley.edu | |
// @grant none | |
// ==/UserScript== |
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 | |
# Screenshot OCR Tool for GNOME (Wayland) | |
# Dependencies: gnome-screenshot, tesseract-ocr, wl-clipboard | |
# Usage: Bind this script to a keyboard shortcut to capture part of the screen, | |
# perform OCR on the selection, and copy the text to the clipboard. | |
# Define temporary file paths | |
TMP_IMG="/tmp/screenshot.png" | |
TMP_TXT_BASE="/tmp/screenshot" # Tesseract will add .txt to this base name |