diff --git a/404.png b/404.png
new file mode 100644
index 0000000..2882f03
Binary files /dev/null and b/404.png differ
diff --git a/index.html b/index.html
index b2eec28..33464fd 100644
--- a/index.html
+++ b/index.html
@@ -1,5 +1,5 @@
-
+
@@ -10,6 +10,9 @@
+
+
+
@@ -28,11 +31,11 @@
-
+
-
-
-
+
\ No newline at end of file
diff --git a/main-5f0876a079f6ac58.css b/main-5f0876a079f6ac58.css
deleted file mode 100644
index bbe6731..0000000
--- a/main-5f0876a079f6ac58.css
+++ /dev/null
@@ -1,70 +0,0 @@
-@font-face {
- font-family: monocraft;
- src: url("monocraft.ttf");
-}
-html * {
- font-family: monocraft, monospace !important;
- scrollbar-color: hsla(232, 97%, 85%, 0.5) hsla(240, 21.05%, 14.9%, 0.7) !important;
- scrollbar-width: thin !important;
- scroll-behavior: smooth !important;
-}
-
-::-webkit-scrollbar {
- display: none;
-}
-
-.textarea {
- -ms-overflow-style: none !important;
- scrollbar-width: none !important;
-}
-
-.textarea::-webkit-scrollbar {
- display: none !important;
-}
-
-.box {
- backdrop-filter: blur(4px) !important;
- --bulma-box-background-color: #1E1E2E80 !important;
- --bulma-shadow-h: 232 !important;
- --bulma-shadow-s: 97% !important;
- --bulma-shadow-l: 85% !important;
- --bulma-shadow: 0 0.5em 1em -0.125em hsla(var(--bulma-shadow-h),
- var(--bulma-shadow-s),
- var(--bulma-shadow-l),
- 0.3), 0 0px 0 1px hsla(var(--bulma-shadow-h),
- var(--bulma-shadow-s),
- var(--bulma-shadow-l),
- 0.02) !important;
-}
-
-.input,
-.select select,
-.textarea {
- backdrop-filter: blur(4px);
- --bulma-input-h: 232 !important;
- --bulma-input-s: 97% !important;
- --bulma-input-l: 85% !important;
- --bulma-input-background-h: var(--bulma-input-h) !important;
- --bulma-input-background-s: var(--bulma-input-s) !important;
- --bulma-input-background-l: var(--bulma-input-l) !important;
- background-color: hsla(var(--bulma-input-h), var(--bulma-input-s), var(--bulma-input-background-l), 0.213125) !important;
- border-color: hsl(var(--bulma-input-h), var(--bulma-input-s), var(--bulma-input-l)) !important;
-}
-
-a.navbar-item,
-a.navbar-item:hover {
- background-color: transparent !important;
-}
-
-::-moz-selection {
- background: hsla(232, 97%, 85%, 0.4125) !important;
-}
-
-::selection {
- background: hsla(232, 97%, 85%, 0.4125) !important;
-}
-
-a:hover {
- text-decoration: underline !important;
- filter: url("post.bloom.svg#process") !important;
-}
diff --git a/profile.avif b/profile.avif
index 4a0b5c3..b5bdd4b 100644
Binary files a/profile.avif and b/profile.avif differ
diff --git a/testimage.jpg b/testimage.jpg
new file mode 100644
index 0000000..df9e801
Binary files /dev/null and b/testimage.jpg differ
diff --git a/web_iouring-8ac0645919329a76.js b/web_iouring-7dd6ffac47ffb586.js
similarity index 98%
rename from web_iouring-8ac0645919329a76.js
rename to web_iouring-7dd6ffac47ffb586.js
index 470030e..47cd9bc 100644
--- a/web_iouring-8ac0645919329a76.js
+++ b/web_iouring-7dd6ffac47ffb586.js
@@ -133,6 +133,28 @@ const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
wasm.__wbindgen_export_7.get(state.dtor)(state.a, state.b)
});
+function makeClosure(arg0, arg1, dtor, f) {
+ const state = { a: arg0, b: arg1, cnt: 1, dtor };
+ const real = (...args) => {
+ // First up with a closure we increment the internal reference
+ // count. This ensures that the Rust closure environment won't
+ // be deallocated while we're invoking it.
+ state.cnt++;
+ try {
+ return f(state.a, state.b, ...args);
+ } finally {
+ if (--state.cnt === 0) {
+ wasm.__wbindgen_export_7.get(state.dtor)(state.a, state.b);
+ state.a = 0;
+ CLOSURE_DTORS.unregister(state);
+ }
+ }
+ };
+ real.original = state;
+ CLOSURE_DTORS.register(real, state, state);
+ return real;
+}
+
function makeMutClosure(arg0, arg1, dtor, f) {
const state = { a: arg0, b: arg1, cnt: 1, dtor };
const real = (...args) => {
@@ -158,28 +180,6 @@ function makeMutClosure(arg0, arg1, dtor, f) {
return real;
}
-function makeClosure(arg0, arg1, dtor, f) {
- const state = { a: arg0, b: arg1, cnt: 1, dtor };
- const real = (...args) => {
- // First up with a closure we increment the internal reference
- // count. This ensures that the Rust closure environment won't
- // be deallocated while we're invoking it.
- state.cnt++;
- try {
- return f(state.a, state.b, ...args);
- } finally {
- if (--state.cnt === 0) {
- wasm.__wbindgen_export_7.get(state.dtor)(state.a, state.b);
- state.a = 0;
- CLOSURE_DTORS.unregister(state);
- }
- }
- };
- real.original = state;
- CLOSURE_DTORS.register(real, state, state);
- return real;
-}
-
function debugString(val) {
// primitive types
const type = typeof val;
@@ -245,19 +245,19 @@ function debugString(val) {
return className;
}
function __wbg_adapter_44(arg0, arg1, arg2) {
- wasm.closure366_externref_shim(arg0, arg1, arg2);
+ wasm.closure914_externref_shim(arg0, arg1, arg2);
}
function __wbg_adapter_47(arg0, arg1) {
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h47b5805e396d8539(arg0, arg1);
+ wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he1b5d17fd2536acb(arg0, arg1);
}
function __wbg_adapter_50(arg0, arg1, arg2) {
- wasm.closure487_externref_shim(arg0, arg1, arg2);
+ wasm.closure989_externref_shim(arg0, arg1, arg2);
}
function __wbg_adapter_53(arg0, arg1, arg2) {
- wasm.closure509_externref_shim(arg0, arg1, arg2);
+ wasm.closure1009_externref_shim(arg0, arg1, arg2);
}
async function __wbg_load(module, imports) {
@@ -968,20 +968,20 @@ function __wbg_get_imports() {
const ret = false;
return ret;
};
- imports.wbg.__wbindgen_closure_wrapper1136 = function(arg0, arg1, arg2) {
- const ret = makeMutClosure(arg0, arg1, 484, __wbg_adapter_47);
+ imports.wbg.__wbindgen_closure_wrapper7508 = function(arg0, arg1, arg2) {
+ const ret = makeClosure(arg0, arg1, 915, __wbg_adapter_44);
return ret;
};
- imports.wbg.__wbindgen_closure_wrapper1143 = function(arg0, arg1, arg2) {
- const ret = makeMutClosure(arg0, arg1, 488, __wbg_adapter_50);
+ imports.wbg.__wbindgen_closure_wrapper8404 = function(arg0, arg1, arg2) {
+ const ret = makeMutClosure(arg0, arg1, 987, __wbg_adapter_47);
return ret;
};
- imports.wbg.__wbindgen_closure_wrapper1185 = function(arg0, arg1, arg2) {
- const ret = makeMutClosure(arg0, arg1, 510, __wbg_adapter_53);
+ imports.wbg.__wbindgen_closure_wrapper8565 = function(arg0, arg1, arg2) {
+ const ret = makeMutClosure(arg0, arg1, 990, __wbg_adapter_50);
return ret;
};
- imports.wbg.__wbindgen_closure_wrapper867 = function(arg0, arg1, arg2) {
- const ret = makeClosure(arg0, arg1, 367, __wbg_adapter_44);
+ imports.wbg.__wbindgen_closure_wrapper9067 = function(arg0, arg1, arg2) {
+ const ret = makeMutClosure(arg0, arg1, 1010, __wbg_adapter_53);
return ret;
};
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
diff --git a/web_iouring-7dd6ffac47ffb586_bg.wasm b/web_iouring-7dd6ffac47ffb586_bg.wasm
new file mode 100644
index 0000000..f0b3b1d
Binary files /dev/null and b/web_iouring-7dd6ffac47ffb586_bg.wasm differ
diff --git a/web_iouring-8ac0645919329a76_bg.wasm b/web_iouring-8ac0645919329a76_bg.wasm
deleted file mode 100644
index b53e666..0000000
Binary files a/web_iouring-8ac0645919329a76_bg.wasm and /dev/null differ