kody / Sonarr Schedule
0 Kedvelések
0 forkok
2 fájlok
Utoljára aktív 1 month 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 / 8chan board search
0 Kedvelések
0 forkok
2 fájlok
Utoljára aktív 6 months ago
Search a string in all threads, in the current board
| 1 | // ==UserScript== |
| 2 | // @name 8chan board search |
| 3 | // @namespace moe.rita.8chanSearchInThreads |
| 4 | // @match https://8chan.moe/*/res/* |
| 5 | // @match https://8chan.se/*/res/* |
| 6 | // @match https://8chan.moe/*/catalog* |
| 7 | // @match https://8chan.se/*/catalog* |
| 8 | // @run-at document-end |
| 9 | // @grant none |
| 10 | // @version 1.1.1 |
kody / Pull/Start all Docker Compose in subfolders
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív 6 months 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 |
Újabb
Régebbi