Skip to content

Instantly share code, notes, and snippets.

View stormychel's full-sized avatar
🍏

Michel Storms stormychel

🍏
View GitHub Profile
@stormychel
stormychel / macOS_SytemPrefs.md
Created January 8, 2026 09:59 — forked from rmcdongit/macOS_SytemPrefs.md
Apple System Preferences URL Schemes

macOS 10.15 System Preference Panes

Below are a list of System Preference pane URLs and paths that can be accessed with scripting to assist users with enabling macOS security settings without having to walk them through launching System Preferences, finding panes, and scrolling to settings. Not all panes have an accessible anchor and some are OS specific.

To find the Pane ID of a specific pane, open the System Preferences app and select the desired Preference Pane. With the pane selected, open the ScriptEditor.app and run the following script to copy the current Pane ID to your clipboard and display any available anchors:

tell application "System Preferences"
	set CurrentPane to the id of the current pane
	set the clipboard to CurrentPane
@stormychel
stormychel / gist:dc1bdfc68bf69a423a61f96740f76159
Created January 26, 2026 13:51
Claude Code with Local Backends (Ollama & LM Studio)
Run **Claude Code** (Anthropic's agentic coding tool) with local / open-source models instead of paying for Claude Pro / API credits.
Claude Code officially supports the **Anthropic API** format → tools that emulate it (like Ollama ≥ 0.14 and some LM Studio setups via proxies) allow you to use powerful local models while keeping almost all features: file read/write, command execution, multi-agent workflows, MCP, plugins, etc.
## 1. Ollama (Recommended – Native Support)
Since **Ollama v0.14.0+** (late 2025), there is **official support** for the Anthropic-compatible endpoint.
### Requirements
- Ollama ≥ 0.14.0
@stormychel
stormychel / claude_auto_setup.md
Created March 7, 2026 02:01
claude_auto — Run Claude Code without permission prompts (macOS & Windows)

claude_auto — Run Claude Code Without Permission Prompts

What It Does

claude_auto is a shell alias/function that launches Claude Code with the --dangerously-skip-permissions flag. Claude Code runs without prompting for approval on tool calls (file edits, bash commands, etc.) — everything is auto-approved.

Useful for hands-off workflows where you trust Claude to execute freely. Use at your own risk — Claude can run any command, edit any file, and make destructive changes without asking.