This file contains 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
// Redirect to file download at Vector.co.jp | |
if (window.location.host === 'www.vector.co.jp' && window.location.pathname.startsWith('/soft/')) { | |
// Extract file ID by removing non-numeric characters | |
const fileId = window.location.href.replace(/\D/g, ''); | |
// Construct new URL with file ID | |
window.location.href = `https://www.vector.co.jp/download/file/mac/game/fh${fileId}.html`; | |
} | |
// Auto-click the first link in #summary section on Vector.co.jp download pages |
This file contains 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
#!/usr/bin/env zsh | |
echo "" > _compare.txt | |
THRESHOLD=0.05 | |
# Find similar images in a directory | |
for file1 in *.png; do | |
echo -n "." | |
for file2 in *.png; do | |
if [ "$file1" != "$file2" ]; then |
This file contains 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
#!/usr/bin/env zsh | |
# Function to tag files with specified dimensions and color | |
tag_dimension_files() { | |
local width="$1" | |
local height="$2" | |
local color="$3" | |
# Color label mapping | |
local label_index |
This file contains 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/zsh | |
# <bitbar.title>Volume Manager</bitbar.title> | |
# <bitbar.version>250225</bitbar.version> | |
# <bitbar.author>Matt Sephton</bitbar.author> | |
# <bitbar.author.github>gingerbeardman</bitbar.author.github> | |
# <bitbar.desc>Lists and manages mounted user volumes</bitbar.desc> | |
# <bitbar.dependencies>zsh</bitbar.dependencies> | |
# <bitbar.abouturl>https://gist.github.com/gingerbeardman/610f22180117ad20465d7c529cc5faa0</bitbar.abouturl> | |
setopt EXTENDED_GLOB |
This file contains 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
find . -name "*.jp2" | parallel -j 8 sips -s format pdf -s formatOptions 75 --resampleHeight 1536 {} --out ../pdf/{.}.pdf |
This file contains 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
// Animation settings | |
$vpr = [45,0,-90]; | |
$vpt = [0,0,05]; | |
$vpd = 250; | |
// Colors | |
shade = [0.5,0.5,0.45,1]; | |
orange = [1.0,0.5,0.0,1]; | |
black = [0.2,0.2,0.2,1]; | |
white = [0.9,0.9,0.9,1]; |
This file contains 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 | |
# Create the directory if it doesn't exist | |
sudo mkdir -p /var/log/caddy | |
# Set ownership to caddy user and group | |
sudo chown caddy:caddy /var/log/caddy | |
# Set appropriate permissions (755 for directory) | |
sudo chmod 755 /var/log/caddy |
This file contains 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
[Unit] | |
Description=Git Pull Watcher Service | |
After=caddy.service | |
StartLimitIntervalSec=0 | |
[Service] | |
Type=simple | |
ExecStart=/opt/webserver/git_pull_watcher.sh | |
Restart=always | |
RestartSec=1 |
This file contains 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 | |
TRIGGER_FILE="/var/www/example.com/triggers/git_pull_trigger" | |
LOG_FILE="/var/log/git_pull_watcher.log" | |
REPO_PATH="/var/www/example.com" | |
log() { | |
echo "$(date): $1" >> "$LOG_FILE" | |
} |
This file contains 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
<?php | |
// GitHub webhook secret (set this in your GitHub webhook settings) | |
$secret = "Y0UR-secret-text-here!"; | |
// Get the payload | |
$payload = file_get_contents('php://input'); | |
// Verify the signature | |
$signature = $_SERVER['HTTP_X_HUB_SIGNATURE'] ?? null; |
NewerOlder