kody / Sonarr Schedule
0 curtidas
0 bifurcações
2 arquivos
Última atividade 2 weeks 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 curtidas
0 bifurcações
1 arquivos
Última atividade 2 months 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 curtidas
0 bifurcações
2 arquivos
Última atividade 5 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 curtidas
0 bifurcações
1 arquivos
Última atividade 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 |
Próximo
Anterior