Skip to content

Instantly share code, notes, and snippets.

View epdjsmit's full-sized avatar

Evert Smit epdjsmit

  • Guardianforge Cyber Security
  • North West
View GitHub Profile
@epdjsmit
epdjsmit / setup-build-log.sh
Created February 23, 2026 09:38 — forked from chilledpear/setup-build-log.sh
Claude Code build logging setup - run once per machine
#!/bin/bash
# Claude Code build logging — one command setup.
# curl -sL https://gist.githubusercontent.com/chilledpear/0bbc9bdf02332a691c8726d55b54f375/raw/setup-build-log.sh | bash
set -e
# 1. Global: ~/.claude/CLAUDE.md (instructions every session reads)
mkdir -p ~/.claude
cat > ~/.claude/CLAUDE.md << 'GLOBALEOF'
# Global Instructions
@epdjsmit
epdjsmit / openclaw-searxng-setup.md
Created February 23, 2026 09:38 — forked from chilledpear/openclaw-searxng-setup.md
SearXNG web search setup for OpenClaw

SearXNG Web Search Setup for OpenClaw

Run these steps on the OpenClaw host to give the bot free, unlimited web search (no API key needed).

1. Create SearXNG config

mkdir -p /opt/searxng
SECRET=$(openssl rand -hex 32)
cat &gt; /opt/searxng/settings.yml &lt;&lt; EOF
patbenatar.advanced-new-file
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
fosshaas.fontsize-shortcuts
BriteSnow.vscode-toggle-quotes
Zignd.html-css-class-completion
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
octref.vetur
dbaeumer.vscode-eslint
@epdjsmit
epdjsmit / fb_categories.json
Created June 5, 2018 10:03 — forked from ikegami-yukino/fb_categories.json
Facebook page category list
{
"Airline": "Airline Industry Services",
"American Restaurant": "New American Restaurant",
"Amusement Park Ride": "Roller Coaster",
"Amusement": "Arcade",
"Amusement": "Bingo Hall",
"Amusement": "Go Karting",
"Amusement": "Laser Tag",
"Antiques & Vintage": "Antique Store",
"Antiques & Vintage": "Auction House",
@epdjsmit
epdjsmit / wp-mysql-test.php
Created February 26, 2018 11:31 — forked from sivel/wp-mysql-test.php
Database connection test script for WordPress
<?php
/**
* Database connection test script for WordPress
*
* Parses the wp-config.php file for DB connection information and tests
* a mysql connection to the DB server and selection of the database.
* Errors will be reported. Attempts will be made to repair table errors.
*
* Place this file in the same directory as wp-config.php
*