Todo for safe-whatwg
Interfaces:
/* | |
$ deno bench iter.js | |
CPU | 13th Gen Intel(R) Core(TM) i7-1365U | |
Runtime | Deno 2.2.8 (x86_64-unknown-linux-gnu) | |
file:///tmp/iter.js | |
benchmark time/iter (avg) iter/s (min … max) p75 p99 p995 | |
------------------- ----------------------------- --------------------- -------------------------- |
Interfaces:
{ | |
"tech.lgbt": 92, | |
"transfem.social": 82, | |
"a.bloodyno.se": 80, | |
"60228.dev": 76, | |
"myfriendsare.gay": 51, | |
"eepy.moe": 50, | |
"gaysex.cloud": 48, | |
"brain.worm.pink": 48, | |
"wetdry.world": 47, |
/* ==UserStyle== | |
@name unfuck discord | |
@namespace easrng | |
@version 0.0.3 | |
@author easrng | |
==/UserStyle== */ | |
@-moz-document domain("discord.com") { | |
:root { | |
--font-primary: "Roboto", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
--font-display: "Roboto", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; |
#!/bin/sh | |
SELF="$(dirname "$(realpath "$0")")" | |
cc -x c - -shared -o "$SELF/uwu.node" -fPIC -Oz -static -nostdlib <<'EOF' | |
#include "stddef.h" | |
int napi_create_string_latin1(void *env, const char *str, size_t length, | |
void **result); | |
int napi_run_script(void *env, void *script, void **result); | |
void uwu_injecting_time(void *ptr) { | |
void *result; | |
char js[] = "process.getBuiltinModule('module').createRequire(process.cwd()+'" |
#!/bin/sh | |
deps="-p gnumake -p clang -p esbuild -p nodejs_22 -p corepack_22 -p wget -p cacert" | |
set -eu | |
self="$(realpath "$(command -v "$0")")" | |
cd "$(dirname "$self")" | |
mkdir -p build | |
nix_state="$( (printf "%s\n" "$self" "$NIX_PATH" | tee /dev/stderr | tr ':' '\n' | sed -E 's/^.+=//' | xargs ls -l) 2>&1)" | |
if [ ! -e build/.env.cache ]; then |
#!/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> |