kody / My Zed config
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 week ago
2026-04-25, secrets REDACTED
| 1 | // Zed settings |
| 2 | // |
| 3 | // For information on how to configure Zed, see the Zed |
| 4 | // documentation: https://zed.dev/docs/configuring-zed |
| 5 | // |
| 6 | // To see all of Zed's default settings without changing your |
| 7 | // custom settings, run `zed: open default settings` from the |
| 8 | // command palette (cmd-shift-p / ctrl-shift-p) |
| 9 | { |
| 10 | "agent": { |
kody / Sonarr Schedule
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 week ago
See what's coming and if the episode was grabbed
| 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | <meta name="robots" content="noindex"> |
| 7 | <title>Schedule</title> |
| 8 | |
| 9 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.min.css"> |
| 10 | <style> |
kody / 4chan-page-notifier.user.js
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 week ago
| 1 | // ==UserScript== |
| 2 | // @name 4chan Page 10 Notifier |
| 3 | // @namespace moe.rita.4chanPage10Notifier |
| 4 | // @match https://boards.4chan.org/*/thread/* |
| 5 | // @run-at document-end |
| 6 | // @grant none |
| 7 | // @version 1.2.2 |
| 8 | // @author Kody |
| 9 | // @description Notify when the thread gets to page 10. |
| 10 | // @icon https://www.google.com/s2/favicons?domain=4chan.org |
kody / 8chan board search
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 week ago
Search a string in all threads, in the current board
- Step 1: Install the userscript with a violentmonkey, tampermonkey, or any other favorite userscripts manager.
- Step 2: Refresh the 8chan page if you're already on it. Open the javascript console.
- Step 3:
searchInThreads('<WHAT I WANT TO SEARCH HERE>')
Wait until you get the green "Search completed." message.
kody / Pull/Start all Docker Compose in subfolders
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 week ago
| 1 | #!/bin/bash |
| 2 | for f in ./*/docker-compose.yml; do |
| 3 | [ -e "$f" ] || continue |
| 4 | cd "$(dirname "$f")" |
| 5 | docker compose pull |
| 6 | docker compose down |
| 7 | docker compose up -d |
| 8 | cd .. |
| 9 | done |
Новее
Позже