Skip to content

Instantly share code, notes, and snippets.

View luancu's full-sized avatar
🎯
Focusing

Luan Cu luancu

🎯
Focusing
View GitHub Profile
@luancu
luancu / SidecarShortcut.md
Created September 29, 2025 13:43 — forked from sorrell/SidecarShortcut.md
Activate Sidecar Shortcut

Sidecar Shortcut

This is a list of steps for creating a keyboard shortcut to activate Sidecar on macOS Ventura.

Steps

  1. Open Automator and create a new Quick Action
  2. Select Run AppleScript as the first and only step
  3. Input the below but be sure to replace "iPad New" with your device name
on run {input, parameters}	
	tell application "System Settings"
@luancu
luancu / gist:35fca7ed1e914b4aed0214eca7199065
Created March 30, 2025 14:57
Config n8n with Docker and ngrok
Setup ngrok
Create a new sub-domain in ngrok
docker volume create n8n-volume
docker run -d --name n8n \
-e N8N_SECURE_COOKIE=false \
-e N8N_HOST=baby-shark-doodoodoodoo.ngrok-free.app \
-e N8N_EDITOR_BASE_URL=https://baby-shark-doodoodoodoo.ngrok-free.app \
-e WEBHOOK_URL=https://baby-shark-doodoodoodoo.ngrok-free.app \
-e N8N_EXECUTIONS_DATA_MAX_SIZE=1000000000 \