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
| // Name: Feedbin Unread | |
| // Author: Kevin Kipp | |
| // Email: kevin.kipp@gmail.com | |
| // Twitter: https://twitter.com/kevin_kipp | |
| // Github: https://github.com/third774 | |
| import '@johnlindquist/kit'; | |
| const feedbinUsername = await env('FEEDBIN_USERNAME'); | |
| const feedbinPassword = await env('FEEDBIN_PASSWORD', () => |
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
| // Name: Perplexity | |
| // Author: Kevin Kipp | |
| // Email: kevin.kipp@gmail.com | |
| // Twitter: https://twitter.com/kevin_kipp | |
| // Github: https://github.com/third774 | |
| import '@johnlindquist/kit'; | |
| let focus = 'all'; |
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
| // Name: Upload Videos to Cloudflare Stream | |
| // Author: Kevin Kipp | |
| // Email: kevin.kipp@gmail.com | |
| // Twitter: https://twitter.com/kevin_kipp | |
| // Github: https://github.com/third774 | |
| import '@johnlindquist/kit'; | |
| import { Channel } from '@johnlindquist/kit/core/enum'; | |
| import { createReadStream } from 'fs'; | |
| const tus = await npm('tus-js-client'); |
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 | |
| # Check if the RUN_TYPECHECKER_PRECOMMIT_HOOK environment variable is set to "true" | |
| if [ "$RUN_TYPECHECKER_PRECOMMIT_HOOK" = "true" ]; then | |
| echo "Running TypeScript type checker..." | |
| # Run the TypeScript compiler in type-checking mode and capture the output | |
| tsc_output=$(npx tsc --noEmit 2>&1) | |
| tsc_exit_code=$? |
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
| # git add remote | |
| gar() { | |
| local url=$(pbpaste) | |
| # Validate URL format (basic git remote URL patterns) | |
| if [[ ! "$url" =~ ^(https://|git@|ssh://git@).+\.git$ ]] && [[ ! "$url" =~ ^(https://|git@).+/.+$ ]]; then | |
| echo "Error: Invalid git remote URL format in clipboard" | |
| echo "Expected formats: https://github.com/user/repo.git or git@github.com:user/repo.git" | |
| return 1 | |
| fi |
OlderNewer