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
| // https://webcatalog-free.circle.ms/User/Favorites?page=1&orderBy=Space | |
| // 曜日 - 配置 - サークル名 | |
| const haichiLocations = Array.from(document.querySelectorAll(`span[data-bind="text: HaichiStr"]`)).map(e=>`${e.innerText}`) | |
| const circleNames = Array.from(document.querySelectorAll(`a[href^="/Circle/"]`)).flatMap(e=>`${e.innerText}` || []) | |
| console.assert(haichiLocations.length == circleNames.length) | |
| console.log(haichiLocations.map((s, index)=>`${s.replace(' ', '\t')}\t${circleNames[index]}`).join('\n')) |
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
| # 0. Server A and clients B/C are on the same Tailnet | |
| # 1. Start RustDesk Server on A in Docker | |
| # 2. Install RustDesk Client on B/C and set Magic DNS of A and Server Password Key | |
| # 3. B/C can be connected to each other | |
| services: | |
| hbbs: | |
| container_name: hbbs | |
| ports: | |
| - 21115:21115 | |
| - 21116:21116/tcp |
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
| You are Grok 2, a curious AI built by xAI. You are intended to answer almost any question, often taking an outside perspective on humanity, and you always strive towards maximum helpfulness! | |
| Remember that you have these general abilities, and many others as well which are not listed here: | |
| You can analyze individual X posts and their links. | |
| You can answer questions about user profiles on X. | |
| You can analyze content uploaded by user including images and pdfs. | |
| You have realtime access to the web and posts on X. | |
| Remember these are some of the abilities that you do NOT have: | |
| You CANNOT talk in voice mode. | |
| Follow these instructions: |
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
| import time | |
| for idx, _ in enumerate(iter(int, 1)): | |
| print(idx) | |
| sleep(1) |
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
| #!/usr/bin/env bash | |
| cb_prefix="[email protected]:" | |
| git config --global --remove-section "$gb_prefix" || : | |
| git config --global "$cb_prefix".pushInsteadOf "git://codeberg.org/" | |
| git config --global --add "$cb_prefix".pushInsteadOf "https://codeberg.org/" |
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
| #!/usr/bin/env zsh | |
| # https://github.com/zdharma-continuum/zinit/discussions/533#discussioncomment-7625534 | |
| rm -rf "${ZINIT[HOME_DIR]}" |
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
| {"openapi":"3.0.1","info":{"version":"2.10.0","title":"epgstation","license":{"name":"MIT","url":"https://github.com/l3tnun/EPGStation/blob/master/LICENSE"}},"servers":[{"url":"http://localhost:8888/api"}],"paths":{"/videos/upload":{"parameters":[],"post":{"summary":"アップロードしたビデオファイルを追加","tags":["videos"],"description":"アップロードしたビデオファイルを追加する","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/UploadVideoFileOption"}}}},"responses":{"200":{"description":"アップロードしたビデオファイルを追加しました"},"default":{"description":"予期しないエラー","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/version":{"parameters":[],"get":{"summary":"バージョン情報取得","tags":["version"],"description":"バージョン情報を取得する","responses":{"200":{"description":"バージョン情報を取得しました","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Version"}}}},"default":{"description":"予期しないエラー","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/thumbnails/cleanup":{"par |