This CSS makes WebDAV listings look nicer in Firefox. Unfortunately it doesn't work right with userstyle addons, so you need to add it to your userContent.css file.
| Before | After |
|---|---|
![]() |
![]() |
| #!/bin/sh | |
| _unix_connect_setup() { | |
| if command -v busybox >/dev/null && busybox --list | grep ^nc$ >/dev/null && ! nc local: 2>&1 | grep 'bad port' >/dev/null; then | |
| _unix_connect_cmd=busybox | |
| _unix_connect_flags=nc | |
| _unix_connect_prefix=local: | |
| return | |
| fi | |
| if command -v nc >/dev/null && ! nc 2>&1 | grep BusyBox >/dev/null; then | |
| _unix_connect_cmd=nc |
| /// <reference lib="webworker" /> | |
| // @ts-ignore | |
| type _makeTSPlaygroundLoadTheBunTypes = import("bun-types"); | |
| type ServeOptions = { | |
| fetch: (req: Request) => PromiseLike<Response> | Response; | |
| port?: number; | |
| hostname?: string; | |
| signal?: AbortSignal; |
| while IFS= read -r line; do printf '#!/bin/busybox ash\nexec busybox %s "$@"\n' "$(echo "$line" | busybox sed -E 's/.+\/([^\/]+)$/\1/')" >"$line"; busybox chmod +x "$line"; done < ./bbins |
| version = 1 | |
| title = 'Svelte Templating' | |
| [[modules]] | |
| plugin = 'source.svelte' | |
| data.contents = ''' | |
| <script> | |
| import AO3 from "./AO3.svelte"; | |
| </script> |
| import { lowercaseKeys } from "https://esm.town/v/stevekrouse/lowercaseKeys?v=1"; | |
| import OpenAI from "npm:openai@^4.0.0"; | |
| const openai = new OpenAI(); | |
| const input = String | |
| .raw`Some types are fine to use from multiple threads, as long as only a single thread at a time uses a | |
| particular value. An example here would be a ${"`"}Cell<i32>${"`"}. If two threads have a reference to a cell | |
| at the same time, a ${"`"}&Cell<i32>${"`"}, we are in trouble --- ${"`"}Cell${"`"}'s loads and stores are not atomic | |
| and are UB by definition if used concurrently. However, if two different threads have exclusive | |
| access to a ${"`"}Cell${"`"}, that's fine --- because the access is exclusive, it necessary means that it is | |
| not simultaneous. That is, it's OK for thread A to _send_ a ${"`"}Cell<i32>${"`"} to a different thread B, |
| { | |
| stdenv, lib, fetchurl, autoPatchelfHook, makeWrapper, | |
| zlib, gdk-pixbuf, cairo, libepoxy, at-spi2-atk, glib, gtk3, pango, harfbuzz, fontconfig | |
| }: | |
| stdenv.mkDerivation rec { | |
| pname = "cwtch-bin"; | |
| version = "1.13.2"; | |
| src = fetchurl { |
| function normalizeMime(string) { | |
| let pos = 0; | |
| let normalized = ""; | |
| const consume = (regex) => { | |
| const match = string.match(regex); | |
| if (!match) | |
| throw new SyntaxError( | |
| "failed to match /" + | |
| regex.source + | |
| "/" + |
| function useStorage() { | |
| const [storage, setStorage] = useState(null) | |
| useEffect(() => { | |
| const listener = async () => { | |
| const { storage } = await browser.storage.sync.get("storage") | |
| setStorage(storage) | |
| } | |
| browser.storage.sync.onChanged.addListener(listener) | |
| listener() | |
| return () => { |
| $[x2 **Comprehensive MFM test**] | |
| This file uses every MFM feature as of [commit 30efd93](https://github.com/misskey-dev/misskey/blob/1d9b5ae1ba6d98cb496367d955fd691371d31f71/packages/frontend/src/components/global/MkMisskeyFlavoredMarkdown.ts). **It does not include Firefish's extensions!** | |
| text | |
| **bold** | |
| ~~strike~~ | |
| *italic* |