All New

user:thomas gists created by user

title:mygist gists with given title

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

Register

Login


All New Register Login

All gists

Recently created
Least recently created
Recently updated
Least recently updated
kody's Avatar

kody / 8chan board search

0 likes
0 forks
2 files
Last active 1745256013
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's Avatar

kody / Pull/Start all Docker Compose in subfolders

0 likes
0 forks
1 files
Last active 1744274917
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
kody's Avatar

kody / freshrss2json

0 likes
0 forks
2 files
Last active 1744275162
1 <?php
2 require_once __DIR__ . '/config.php';
3
4 // First, login
5 $cLogin = curl_init($base . 'api/greader.php/accounts/ClientLogin?Email=' . $user . '&Passwd=' . $pass);
6 curl_setopt($cLogin, CURLOPT_SSL_VERIFYHOST, 0);
7 curl_setopt($cLogin, CURLOPT_SSL_VERIFYPEER, 0);
8 curl_setopt($cLogin, CURLOPT_RETURNTRANSFER, true);
9 $keys = curl_exec($cLogin);
10 curl_close($cLogin);
Newer Older

Powered by Opengist ⋅ Load: 76ms⋅

English
Čeština Deutsch English Español Français Magyar Italiano 日本語 Polski Português Русский Türkçe Українська 中文 繁體中文