sequenceDiagram
actor Initiator
actor Recipient
participant KEM
participant KDF
participant AEAD
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 5.16.4 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.2.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110200 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=23700 |
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
# example config | |
MINECRAFT_VERSION="1.18.1" | |
FABRIC_MODS=( | |
# add the mod id / slug from modrinth here | |
) | |
FORGE_MODS=( | |
# add the mod id / slug from modrinth here | |
) | |
QUILT_MODS=( |
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 { useRef, useEffect, useState } from 'preact/hooks'; | |
export function App() { | |
const [keys, setKeys] = useState<string[]>([]); | |
const [obj, setObj] = useState<any>(); | |
return ( | |
<> | |
<textarea | |
onInput={(ev) => { |
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
body { | |
min-height: fit-content; | |
background-color: #f7f2ff; | |
color: #392142; | |
font-family: 'Gambarino', serif; | |
&>.page { | |
min-height: 100dvh; | |
height: 100%; | |
padding: 3rem; |
here are my solutions (partially) in uiua for advent of code 2024.
there is an explained version with filename ending in _long
and a minimized version ending in _short
for each part in each day.
i might explain more for each one on my website here so yea :3
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
// curl https://microsoftedge.github.io/Demos/json-dummy-data/1MB-min.json > test.json | |
import { decode as decodeMsgpack, encode as encodeMsgpack } from "npm:@msgpack/msgpack"; | |
import { decode as decodeCbor, encode as encodeCbor } from "npm:cbor-x"; | |
const encoder = new TextEncoder(), | |
decoder = new TextDecoder(), | |
data = JSON.parse(Deno.readTextFileSync("test.json")); | |
Deno.bench("@msgpack/msgpack", () => { |
OlderNewer