Go to Settings > APIs > API Keys and put the following into the "CurseForge Core API" box
$2a$10$bL4bIL5pUWqfcO7KQtnMReakwtfHbNKh6v1uTpKlzhwoueEJQnPnm
If the API key changes, it may be found again with this guide
| /*: | |
| * @target MZ | |
| * @plugindesc Increases the size of the Options window | |
| * @author SugoiDogo | |
| * @license LGPL-3.0-or-later (https://www.gnu.org/licenses/lgpl-3.0.en.html) | |
| * @help Sugoi_LargerOptionsWindow.js | |
| * | |
| * Increases the size of the Options window | |
| */ | |
| { |
| /*: | |
| * @target MZ | |
| * @plugindesc Changes save format from rmmzsave to json | |
| * @author SugoiDogo | |
| * @license LGPL-3.0-or-later (https://www.gnu.org/licenses/lgpl-3.0.en.html) | |
| * @help Sugoi_JSONSaves.js | |
| * | |
| * Changes save format from rmmzsave to json | |
| */ |
| docker run -it --rm -v ./:/pack -e "PACKWIZ_URL=/pack/pack.toml" -e EULA=TRUE -e MAX_MEMORY=8G -e TYPE=<<CHANGEME>> -e VERSION=<<CHANGEME>> itzg/minecraft-server |
| # /etc/systemd/system/dnf-automatic.service.d/override.conf | |
| # run podman-auto-update right after dnf-automatic | |
| # both services are now started by dnf-automatic.timer | |
| [Unit] | |
| Wants=podman-auto-update.service | |
| Before=podman-auto-update.service | |
| [Install] | |
| WantedBy=podman-auto-update.service |
| async function getVideoURL(embed_url){ | |
| embed_url+='&parent=clips.twitch.tv' | |
| const url=new URL('https://videolink.sugoidogo.com') | |
| url.searchParams.append('url',embed_url) | |
| const response=await fetch(url) | |
| return response.text() | |
| } |
| import { DurableObject } from "cloudflare:workers"; | |
| export default { | |
| /** @param {Request} request */ | |
| async fetch(request, env, ctx) { | |
| if(request.headers.get('Accept')!='text/event-stream'){ | |
| return new Response() | |
| } | |
| let id = env.EVENT_SOURCE.idFromName('test'); | |
| let stub = env.EVENT_SOURCE.get(id); |
Go to Settings > APIs > API Keys and put the following into the "CurseForge Core API" box
$2a$10$bL4bIL5pUWqfcO7KQtnMReakwtfHbNKh6v1uTpKlzhwoueEJQnPnm
If the API key changes, it may be found again with this guide
| local forward=0 | |
| local right=0 | |
| local up=0 | |
| local rotation=0 | |
| local function quit(reason) | |
| if smove.print_status then | |
| print(reason) | |
| end | |
| fs.delete('.smove_home') |
| [Unit] | |
| Description=initialize nvidia devices and the nvidia container toolkit for podman containers | |
| [Service] | |
| Type=oneshot | |
| ExecStart=nvidia-smi | |
| ExecStart=nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml |
| /** | |
| * @param {RequestInfo | URL} input | |
| * @param {RequestInit} init | |
| * @returns {Promise<Response>} | |
| */ | |
| function fetch(input,init=undefined){ | |
| return window.fetch(input,init).catch(async error=>{ | |
| if(error.message==="Failed to fetch"){ | |
| await new Promise(function(resolve,reject){ | |
| setTimeout(resolve,1000) |