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
| [ | |
| { | |
| "title":"AI - HN", | |
| "url":"https://hnrss.org/newest?q=ai+OR+llm+OR+OpenAI" | |
| } | |
| ] |
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 | |
| # Edge Functions Setup Script | |
| # Run this in any project directory to add edge function deployment | |
| # add this to your .bashrc or .zshrc: | |
| # alias setup-edge-functions='bash <(curl -fsSL https://gist.githubusercontent.com/BlackMac/3e0f889b1578a81f62bd08cbf0ba3c43/raw/setup-edge-functions.sh)' | |
| set -e | |
| PROJECT_NAME=${1:-$(basename "$(pwd)")} |
OlderNewer