From 4bf9b57cca977760a89bda7b419a85ca471ba1ce Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Mon, 3 Mar 2025 23:29:38 +0800 Subject: feat(www): hurd and todos. --- .editorconfig | 3 + crupest-words.txt | 59 ----------- cspell.yaml | 9 +- dictionary.txt | 60 +++++++++++ hurd/hurd.yaml | 107 ------------------- hurd/path_max.c | 63 ----------- www/assets/base-style.css | 115 -------------------- www/assets/catppuccin-latte.css | 88 --------------- www/assets/catppuccin-mocha.css | 88 --------------- www/assets/color-scheme.ts | 110 ------------------- www/assets/github-mark.png | Bin 6393 -> 0 bytes www/assets/home.css | 79 -------------- www/assets/partials/preview/article.css | 42 -------- www/assets/res/css/article.css | 42 ++++++++ www/assets/res/css/base.css | 147 ++++++++++++++++++++++++++ www/assets/res/css/catppuccin-latte.css | 88 +++++++++++++++ www/assets/res/css/catppuccin-mocha.css | 88 +++++++++++++++ www/assets/res/css/home.css | 79 ++++++++++++++ www/assets/res/css/single.css | 20 ++++ www/assets/res/css/todos.css | 14 +++ www/assets/res/img/gh.png | Bin 0 -> 6393 bytes www/assets/res/js/color-scheme.ts | 110 +++++++++++++++++++ www/assets/single.css | 20 ---- www/config/_default/hugo.yaml | 3 + www/content/hurd.md | 5 - www/content/hurd/_index.md | 182 ++++++++++++++++++++++++++++++++ www/content/hurd/todos.md | 54 ++++++++++ www/content/todos.md | 4 +- www/layouts/_default/baseof.html | 7 +- www/layouts/_default/list.html | 2 +- www/layouts/_default/single.html | 2 +- www/layouts/index.html | 6 +- www/layouts/partials/highlight.html | 6 +- www/layouts/partials/nav.html | 2 +- www/layouts/shortcodes/link-group.html | 25 +++++ www/layouts/shortcodes/mono.html | 3 + www/layouts/shortcodes/todo.html | 1 + 37 files changed, 942 insertions(+), 791 deletions(-) delete mode 100644 crupest-words.txt create mode 100644 dictionary.txt delete mode 100644 hurd/hurd.yaml delete mode 100644 hurd/path_max.c delete mode 100644 www/assets/base-style.css delete mode 100644 www/assets/catppuccin-latte.css delete mode 100644 www/assets/catppuccin-mocha.css delete mode 100644 www/assets/color-scheme.ts delete mode 100644 www/assets/github-mark.png delete mode 100644 www/assets/home.css delete mode 100644 www/assets/partials/preview/article.css create mode 100644 www/assets/res/css/article.css create mode 100644 www/assets/res/css/base.css create mode 100644 www/assets/res/css/catppuccin-latte.css create mode 100644 www/assets/res/css/catppuccin-mocha.css create mode 100644 www/assets/res/css/home.css create mode 100644 www/assets/res/css/single.css create mode 100644 www/assets/res/css/todos.css create mode 100644 www/assets/res/img/gh.png create mode 100644 www/assets/res/js/color-scheme.ts delete mode 100644 www/assets/single.css delete mode 100644 www/content/hurd.md create mode 100644 www/content/hurd/_index.md create mode 100644 www/content/hurd/todos.md create mode 100644 www/layouts/shortcodes/link-group.html create mode 100644 www/layouts/shortcodes/mono.html create mode 100644 www/layouts/shortcodes/todo.html diff --git a/.editorconfig b/.editorconfig index ab74694..beab7a9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,6 +11,9 @@ trim_trailing_whitespace = true indent_style = tab tab_width = 8 +[*.md] +indent_size = 2 + [*.{html,css,js,ts}] indent_size = 2 diff --git a/crupest-words.txt b/crupest-words.txt deleted file mode 100644 index 5f81bb4..0000000 --- a/crupest-words.txt +++ /dev/null @@ -1,59 +0,0 @@ -# me -crupest -yuqian - -# self-hosted services -2fauth -rspamd -certbot -roundcube -roundcubemail - -# general -cheatsheet -aarch64 -pythonpath -gerrit -esmtp -tini -healthcheck - -# unix -cpio -kmod -nproc -sourceware -zstd - -# hurd -gnumach -settrans -fsysopts -pfinet - -# debian -debhelper -debootstrap -devscripts -dquilt -buildpackage -quiltrc -nocheck -chroot -indep -confdir -createchroot -sbuild -sbuildrc -schroot - -# commercial -myqcloud - -# misc -geodata -geoip -geosite -vmess -vnext -ustc diff --git a/cspell.yaml b/cspell.yaml index 5d6d72b..b28017a 100644 --- a/cspell.yaml +++ b/cspell.yaml @@ -1,7 +1,7 @@ version: "0.2" language: en dictionaries: - - crupest-words + - crupest-dict - en_US - companies - softwareTerms @@ -20,8 +20,8 @@ dictionaries: - npm dictionaryDefinitions: - - name: crupest-words - path: './crupest-words.txt' + - name: crupest-dict + path: './dictionary.txt' patterns: - name: libs @@ -29,3 +29,6 @@ patterns: ignoreRegExpList: - libs + +ignorePaths: + - www/layouts/index.html diff --git a/dictionary.txt b/dictionary.txt new file mode 100644 index 0000000..59b382f --- /dev/null +++ b/dictionary.txt @@ -0,0 +1,60 @@ +# me +crupest +yuqian + +# self-hosted services +2fauth +rspamd +certbot +roundcube +roundcubemail +gohugoio + +# general +cheatsheet +aarch64 +pythonpath +gerrit +esmtp +tini +healthcheck + +# unix +cpio +kmod +nproc +sourceware +zstd + +# hurd +gnumach +settrans +fsysopts +pfinet + +# debian +debhelper +debootstrap +devscripts +dquilt +buildpackage +quiltrc +nocheck +chroot +indep +confdir +createchroot +sbuild +sbuildrc +schroot + +# commercial +myqcloud + +# misc +geodata +geoip +geosite +vmess +vnext +ustc diff --git a/hurd/hurd.yaml b/hurd/hurd.yaml deleted file mode 100644 index 88b8c33..0000000 --- a/hurd/hurd.yaml +++ /dev/null @@ -1,107 +0,0 @@ -kernel: - site: - home: https://www.gnu.org/software/hurd/index.html - irc-archive: https://logs.guix.gnu.org/hurd/ - - mailing-list: - - address: bug-hurd@gnu.org - archive: https://lists.gnu.org/archive/html/bug-hurd/ - - project: - - - name: hurd - git: - my: https://crupest.life/git/love-hurd/hurd.git - upstream: https://git.savannah.gnu.org/git/hurd/hurd.git - debian: https://salsa.debian.org/hurd-team/hurd - - - name: gnumach - git: - my: https://crupest.life/git/love-hurd/gnumach.git - upstream: https://git.savannah.gnu.org/git/hurd/gnumach.git - debian: https://salsa.debian.org/hurd-team/gnumach - - - name: mig - git: - my: https://crupest.life/git/love-hurd/mig.git - upstream: https://git.savannah.gnu.org/git/hurd/mig.git - debian: https://salsa.debian.org/hurd-team/mig - - - name: glibc - git: - my: https://crupest.life/git/love-hurd/glibc.git - upstream: git://sourceware.org/git/glibc.git - debian: https://salsa.debian.org/glibc-team/glibc - mirror: https://mirrors.tuna.tsinghua.edu.cn/git/glibc.git - - - name: web - git: - my: https://crupest.life/git/love-hurd/web.git - upstream: https://git.savannah.gnu.org/git/hurd/web.git - - -debian-port: - site: - home: https://www.debian.org/ports/hurd/ - - mailing-list: - - address: debian-hurd@lists.debian.org - archive: https://lists.debian.org/debian-hurd/ - - package: - - - name: abseil - git: - my: https://crupest.life/git/love-hurd/abseil.git - debian: https://salsa.debian.org/debian/abseil - upstream: https://github.com/abseil/abseil-cpp - mail: - - https://lists.debian.org/debian-hurd/2025/02/msg00011.html - - https://lists.debian.org/debian-hurd/2025/02/msg00035.html - - - - name: libgav1 - git: - my: https://crupest.life/git/love-hurd/libgav1.git - debian: https://salsa.debian.org/multimedia-team/libgav1 - upstream: https://chromium.googlesource.com/codecs/libgav1/ - mail: - - https://lists.debian.org/debian-hurd/2025/02/msg00016.html - gerrit: - - https://chromium-review.googlesource.com/c/codecs/libgav1/+/6239812 - - - name: pam - git: - my: https://crupest.life/git/love-hurd/pam.git - debian: https://salsa.debian.org/vorlon/pam - upstream: https://github.com/linux-pam/linux-pam - mail: - - https://lists.debian.org/debian-hurd/2025/02/msg00018.html - -cheatsheet: - - name: Start Hurd in qemu kvm. - tag: - - run - - setup - command: - - qemu-system-x86_64 -enable-kvm -m 4G -net nic -net user,hostfwd=tcp::3222-:22 -vga vmware -drive cache=writeback,file=[...] - - - name: Configure/Setup network. - tag: - - network - - setup - - configure - command: - - settrans -fgap /servers/socket/2 /hurd/pfinet -i /dev/eth0 -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 - - fsysopts /servers/socket/2 /hurd/pfinet -i /dev/eth0 -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 - - fsysopts /server/socket/2 -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 - note: -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 is used in VirtualBox. - - - name: Setup apt after system installation or when cert/gpg are outdated. - tag: - - setup - - debian - - apt - command: - - apt-get --allow-unauthenticated --allow-insecure-repositories update - - apt-get --allow-unauthenticated upgrade diff --git a/hurd/path_max.c b/hurd/path_max.c deleted file mode 100644 index eee777c..0000000 --- a/hurd/path_max.c +++ /dev/null @@ -1,63 +0,0 @@ -#include -#include -#include - -static inline char *xreadlink(const char *restrict path) { - char *buffer; - size_t allocated = 128; - ssize_t len; - - while (1) { - buffer = (char *)malloc(allocated); - if (!buffer) { - return NULL; - } - len = readlink(path, buffer, allocated); - if (len < (ssize_t)allocated) { - return buffer; - } - free(buffer); - if (len >= (ssize_t)allocated) { - allocated *= 2; - continue; - } - return NULL; - } -} - -static inline char *xgethostname() { - long max_host_name; - char *buffer; - - max_host_name = sysconf(_SC_HOST_NAME_MAX); - buffer = malloc(max_host_name + 1); - - if (gethostname(buffer, max_host_name + 1)) { - free(buffer); - return NULL; - } - - buffer[max_host_name] = '\0'; - return buffer; -} - -static inline char *xgetcwd() { - char *buffer; - size_t allocated = 128; - - while (1) { - buffer = (char *)malloc(allocated); - if (!buffer) { - return NULL; - } - getcwd(buffer, allocated); - if (buffer) - return buffer; - free(buffer); - if (errno == ERANGE) { - allocated *= 2; - continue; - } - return NULL; - } -} diff --git a/www/assets/base-style.css b/www/assets/base-style.css deleted file mode 100644 index 4c5a730..0000000 --- a/www/assets/base-style.css +++ /dev/null @@ -1,115 +0,0 @@ -html { - width: 100%; - --fg-color: black; - --bg-color: white; -} - -* { - box-sizing: border-box; -} - -body { - width: 100%; - margin: 0; - color: var(--fg-color); - background-color: var(--bg-color); -} - -.mono { - font-family: monospace; -} - -a.mono-link, -.mono-link a, -.mono-link .fake-link { - font-family: monospace; -} - -.toast { - font-size: large; - font-family: monospace; - color: var(--bg-color); - background-color: var(--fg-color); - padding: 0.5em 0.3em; - border-radius: 6px; - - position: fixed; - z-index: 1; - top: 4px; - left: 50vw; - transform: translateX(-50%); -} - -.chroma { - overflow-x: scroll; - padding-left: 1px; - padding-right: 4px; - border-radius: 3px; -} - -nav { - font-size: large; -} - -#slogan { - color: white; - width: 100%; - padding: 0.5em 1em; - text-align: center; - background-color: dodgerblue; - user-select: none; - - & > * { - user-select: text; - } -} - -#main-article { - position: relative; - left: 50%; - transform: translateX(-50%); - max-width: 880px; - padding: 0 1em; - margin-top: 1em; -} - -#license a { - font-family: initial; - text-decoration: none; -} - -#license-text { - font-family: monospace; - text-decoration: initial; -} - -#license-img-container img { - height: 1em; - vertical-align: middle; -} - -html[data-theme="dark"] { - --fg-color: white; - --bg-color: black; - - & a:link { - color:#34ffd9; - } - - & a:visited { - color:#abcac4; - } - - & #slogan { - color: var(--fg-color); - background-color: midnightblue; - } - - & :is(.chroma,.chroma *) { - background-color: hsl(0, 0%, 1.5%); - - & .n { - color: var(--fg-color); - } - } -} diff --git a/www/assets/catppuccin-latte.css b/www/assets/catppuccin-latte.css deleted file mode 100644 index 00c0669..0000000 --- a/www/assets/catppuccin-latte.css +++ /dev/null @@ -1,88 +0,0 @@ -/* Generated using: hugo gen chromastyles --style=catppuccin-latte */ - -/* Background */ .bg { color:#4c4f69;background-color:#eff1f5; } -/* PreWrapper */ .chroma { color:#4c4f69;background-color:#eff1f5; } -/* Other */ .chroma .x { } -/* Error */ .chroma .err { color:#d20f39 } -/* CodeLine */ .chroma .cl { } -/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit } -/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; } -/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; } -/* LineHighlight */ .chroma .hl { background-color:#bcc0cc } -/* LineNumbersTable */ .chroma .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#8c8fa1 } -/* LineNumbers */ .chroma .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#8c8fa1 } -/* Line */ .chroma .line { display:flex; } -/* Keyword */ .chroma .k { color:#8839ef } -/* KeywordConstant */ .chroma .kc { color:#fe640b } -/* KeywordDeclaration */ .chroma .kd { color:#d20f39 } -/* KeywordNamespace */ .chroma .kn { color:#179299 } -/* KeywordPseudo */ .chroma .kp { color:#8839ef } -/* KeywordReserved */ .chroma .kr { color:#8839ef } -/* KeywordType */ .chroma .kt { color:#d20f39 } -/* Name */ .chroma .n { } -/* NameAttribute */ .chroma .na { color:#1e66f5 } -/* NameBuiltin */ .chroma .nb { color:#04a5e5 } -/* NameBuiltinPseudo */ .chroma .bp { color:#04a5e5 } -/* NameClass */ .chroma .nc { color:#df8e1d } -/* NameConstant */ .chroma .no { color:#df8e1d } -/* NameDecorator */ .chroma .nd { color:#1e66f5;font-weight:bold } -/* NameEntity */ .chroma .ni { color:#179299 } -/* NameException */ .chroma .ne { color:#fe640b } -/* NameFunction */ .chroma .nf { color:#1e66f5 } -/* NameFunctionMagic */ .chroma .fm { color:#1e66f5 } -/* NameLabel */ .chroma .nl { color:#04a5e5 } -/* NameNamespace */ .chroma .nn { color:#fe640b } -/* NameOther */ .chroma .nx { } -/* NameProperty */ .chroma .py { color:#fe640b } -/* NameTag */ .chroma .nt { color:#8839ef } -/* NameVariable */ .chroma .nv { color:#dc8a78 } -/* NameVariableClass */ .chroma .vc { color:#dc8a78 } -/* NameVariableGlobal */ .chroma .vg { color:#dc8a78 } -/* NameVariableInstance */ .chroma .vi { color:#dc8a78 } -/* NameVariableMagic */ .chroma .vm { color:#dc8a78 } -/* Literal */ .chroma .l { } -/* LiteralDate */ .chroma .ld { } -/* LiteralString */ .chroma .s { color:#40a02b } -/* LiteralStringAffix */ .chroma .sa { color:#d20f39 } -/* LiteralStringBacktick */ .chroma .sb { color:#40a02b } -/* LiteralStringChar */ .chroma .sc { color:#40a02b } -/* LiteralStringDelimiter */ .chroma .dl { color:#1e66f5 } -/* LiteralStringDoc */ .chroma .sd { color:#9ca0b0 } -/* LiteralStringDouble */ .chroma .s2 { color:#40a02b } -/* LiteralStringEscape */ .chroma .se { color:#1e66f5 } -/* LiteralStringHeredoc */ .chroma .sh { color:#9ca0b0 } -/* LiteralStringInterpol */ .chroma .si { color:#40a02b } -/* LiteralStringOther */ .chroma .sx { color:#40a02b } -/* LiteralStringRegex */ .chroma .sr { color:#179299 } -/* LiteralStringSingle */ .chroma .s1 { color:#40a02b } -/* LiteralStringSymbol */ .chroma .ss { color:#40a02b } -/* LiteralNumber */ .chroma .m { color:#fe640b } -/* LiteralNumberBin */ .chroma .mb { color:#fe640b } -/* LiteralNumberFloat */ .chroma .mf { color:#fe640b } -/* LiteralNumberHex */ .chroma .mh { color:#fe640b } -/* LiteralNumberInteger */ .chroma .mi { color:#fe640b } -/* LiteralNumberIntegerLong */ .chroma .il { color:#fe640b } -/* LiteralNumberOct */ .chroma .mo { color:#fe640b } -/* Operator */ .chroma .o { color:#04a5e5;font-weight:bold } -/* OperatorWord */ .chroma .ow { color:#04a5e5;font-weight:bold } -/* Punctuation */ .chroma .p { } -/* Comment */ .chroma .c { color:#9ca0b0;font-style:italic } -/* CommentHashbang */ .chroma .ch { color:#9ca0b0;font-style:italic } -/* CommentMultiline */ .chroma .cm { color:#9ca0b0;font-style:italic } -/* CommentSingle */ .chroma .c1 { color:#9ca0b0;font-style:italic } -/* CommentSpecial */ .chroma .cs { color:#9ca0b0;font-style:italic } -/* CommentPreproc */ .chroma .cp { color:#9ca0b0;font-style:italic } -/* CommentPreprocFile */ .chroma .cpf { color:#9ca0b0;font-weight:bold;font-style:italic } -/* Generic */ .chroma .g { } -/* GenericDeleted */ .chroma .gd { color:#d20f39;background-color:#ccd0da } -/* GenericEmph */ .chroma .ge { font-style:italic } -/* GenericError */ .chroma .gr { color:#d20f39 } -/* GenericHeading */ .chroma .gh { color:#fe640b;font-weight:bold } -/* GenericInserted */ .chroma .gi { color:#40a02b;background-color:#ccd0da } -/* GenericOutput */ .chroma .go { } -/* GenericPrompt */ .chroma .gp { } -/* GenericStrong */ .chroma .gs { font-weight:bold } -/* GenericSubheading */ .chroma .gu { color:#fe640b;font-weight:bold } -/* GenericTraceback */ .chroma .gt { color:#d20f39 } -/* GenericUnderline */ .chroma .gl { text-decoration:underline } -/* TextWhitespace */ .chroma .w { } diff --git a/www/assets/catppuccin-mocha.css b/www/assets/catppuccin-mocha.css deleted file mode 100644 index 4d9a04c..0000000 --- a/www/assets/catppuccin-mocha.css +++ /dev/null @@ -1,88 +0,0 @@ -/* Generated using: hugo gen chromastyles --style=catppuccin-mocha */ - -/* Background */ .bg { color:#cdd6f4;background-color:#1e1e2e; } -/* PreWrapper */ .chroma { color:#cdd6f4;background-color:#1e1e2e; } -/* Other */ .chroma .x { } -/* Error */ .chroma .err { color:#f38ba8 } -/* CodeLine */ .chroma .cl { } -/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit } -/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; } -/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; } -/* LineHighlight */ .chroma .hl { background-color:#45475a } -/* LineNumbersTable */ .chroma .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f849c } -/* LineNumbers */ .chroma .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f849c } -/* Line */ .chroma .line { display:flex; } -/* Keyword */ .chroma .k { color:#cba6f7 } -/* KeywordConstant */ .chroma .kc { color:#fab387 } -/* KeywordDeclaration */ .chroma .kd { color:#f38ba8 } -/* KeywordNamespace */ .chroma .kn { color:#94e2d5 } -/* KeywordPseudo */ .chroma .kp { color:#cba6f7 } -/* KeywordReserved */ .chroma .kr { color:#cba6f7 } -/* KeywordType */ .chroma .kt { color:#f38ba8 } -/* Name */ .chroma .n { } -/* NameAttribute */ .chroma .na { color:#89b4fa } -/* NameBuiltin */ .chroma .nb { color:#89dceb } -/* NameBuiltinPseudo */ .chroma .bp { color:#89dceb } -/* NameClass */ .chroma .nc { color:#f9e2af } -/* NameConstant */ .chroma .no { color:#f9e2af } -/* NameDecorator */ .chroma .nd { color:#89b4fa;font-weight:bold } -/* NameEntity */ .chroma .ni { color:#94e2d5 } -/* NameException */ .chroma .ne { color:#fab387 } -/* NameFunction */ .chroma .nf { color:#89b4fa } -/* NameFunctionMagic */ .chroma .fm { color:#89b4fa } -/* NameLabel */ .chroma .nl { color:#89dceb } -/* NameNamespace */ .chroma .nn { color:#fab387 } -/* NameOther */ .chroma .nx { } -/* NameProperty */ .chroma .py { color:#fab387 } -/* NameTag */ .chroma .nt { color:#cba6f7 } -/* NameVariable */ .chroma .nv { color:#f5e0dc } -/* NameVariableClass */ .chroma .vc { color:#f5e0dc } -/* NameVariableGlobal */ .chroma .vg { color:#f5e0dc } -/* NameVariableInstance */ .chroma .vi { color:#f5e0dc } -/* NameVariableMagic */ .chroma .vm { color:#f5e0dc } -/* Literal */ .chroma .l { } -/* LiteralDate */ .chroma .ld { } -/* LiteralString */ .chroma .s { color:#a6e3a1 } -/* LiteralStringAffix */ .chroma .sa { color:#f38ba8 } -/* LiteralStringBacktick */ .chroma .sb { color:#a6e3a1 } -/* LiteralStringChar */ .chroma .sc { color:#a6e3a1 } -/* LiteralStringDelimiter */ .chroma .dl { color:#89b4fa } -/* LiteralStringDoc */ .chroma .sd { color:#6c7086 } -/* LiteralStringDouble */ .chroma .s2 { color:#a6e3a1 } -/* LiteralStringEscape */ .chroma .se { color:#89b4fa } -/* LiteralStringHeredoc */ .chroma .sh { color:#6c7086 } -/* LiteralStringInterpol */ .chroma .si { color:#a6e3a1 } -/* LiteralStringOther */ .chroma .sx { color:#a6e3a1 } -/* LiteralStringRegex */ .chroma .sr { color:#94e2d5 } -/* LiteralStringSingle */ .chroma .s1 { color:#a6e3a1 } -/* LiteralStringSymbol */ .chroma .ss { color:#a6e3a1 } -/* LiteralNumber */ .chroma .m { color:#fab387 } -/* LiteralNumberBin */ .chroma .mb { color:#fab387 } -/* LiteralNumberFloat */ .chroma .mf { color:#fab387 } -/* LiteralNumberHex */ .chroma .mh { color:#fab387 } -/* LiteralNumberInteger */ .chroma .mi { color:#fab387 } -/* LiteralNumberIntegerLong */ .chroma .il { color:#fab387 } -/* LiteralNumberOct */ .chroma .mo { color:#fab387 } -/* Operator */ .chroma .o { color:#89dceb;font-weight:bold } -/* OperatorWord */ .chroma .ow { color:#89dceb;font-weight:bold } -/* Punctuation */ .chroma .p { } -/* Comment */ .chroma .c { color:#6c7086;font-style:italic } -/* CommentHashbang */ .chroma .ch { color:#6c7086;font-style:italic } -/* CommentMultiline */ .chroma .cm { color:#6c7086;font-style:italic } -/* CommentSingle */ .chroma .c1 { color:#6c7086;font-style:italic } -/* CommentSpecial */ .chroma .cs { color:#6c7086;font-style:italic } -/* CommentPreproc */ .chroma .cp { color:#6c7086;font-style:italic } -/* CommentPreprocFile */ .chroma .cpf { color:#6c7086;font-weight:bold;font-style:italic } -/* Generic */ .chroma .g { } -/* GenericDeleted */ .chroma .gd { color:#f38ba8;background-color:#313244 } -/* GenericEmph */ .chroma .ge { font-style:italic } -/* GenericError */ .chroma .gr { color:#f38ba8 } -/* GenericHeading */ .chroma .gh { color:#fab387;font-weight:bold } -/* GenericInserted */ .chroma .gi { color:#a6e3a1;background-color:#313244 } -/* GenericOutput */ .chroma .go { } -/* GenericPrompt */ .chroma .gp { } -/* GenericStrong */ .chroma .gs { font-weight:bold } -/* GenericSubheading */ .chroma .gu { color:#fab387;font-weight:bold } -/* GenericTraceback */ .chroma .gt { color:#f38ba8 } -/* GenericUnderline */ .chroma .gl { text-decoration:underline } -/* TextWhitespace */ .chroma .w { } diff --git a/www/assets/color-scheme.ts b/www/assets/color-scheme.ts deleted file mode 100644 index db6a3aa..0000000 --- a/www/assets/color-scheme.ts +++ /dev/null @@ -1,110 +0,0 @@ -function createResetTimer(cleanup: () => void, timeout = 1) { - let tag = 0 - return () => { - clearTimeout(tag) - tag = setTimeout(() => { - cleanup() - }, timeout * 1000) - } -} - -function createToast(duration: number = 1): (text: string) => void { - const toast = document.createElement("div") - toast.className = "toast" - - const reset = createResetTimer(() => { - toast.remove() - }, duration) - - return (text) => { - if (!toast.isConnected) { - document.body.appendChild(toast) - } - toast.textContent = text - reset() - } -} - -const setToast = createToast() - -const key = "force-color-scheme" -const dark = "dark" -const light = "light" -type Scheme = typeof dark | typeof light - -const mediaQuery = window.matchMedia("(prefers-color-scheme: dark)") - -function fromMediaQuery(value: boolean | null): Scheme { - if (value == null) { value = mediaQuery.matches} - return value ? dark : light -} - -function opposite(scheme: Scheme): Scheme { - return scheme === dark ? light : dark -} - -function updateScheme(theme: Scheme | null): Scheme { - if (theme == null) { theme = fromMediaQuery(null) } - document.querySelector("html")!.dataset["theme"] = theme - return theme -} - -mediaQuery.addEventListener("change", (e) => updateScheme(current || fromMediaQuery(e.matches))) - -let current: Scheme | null = null - -{ - const saved = localStorage.getItem(key) - if ([null, dark, light].includes(saved)) { - current = saved as never - } else { - console.log(`invalid saved theme: ${saved}`) - localStorage.removeItem(key) - } -} - -updateScheme(current) - -function saveScheme(value: Scheme | null) { - current = value - - if (value == null) { - localStorage.removeItem(key) - } else { - localStorage.setItem(key, value) - } - - const real = updateScheme(value) - setToast(`theme: ${current == null ? "system" : "force"}(${real})`) -} - -function next(): Scheme | null { - const sys = fromMediaQuery(null) - if (current == null) { - return opposite(sys) - } else { - if (current === sys) { - return null; - } else { - return opposite(current) - } - } -} - -window.addEventListener("load", () => { - const slogon = document.getElementById("slogan")! - let clicks: number = 0 - - const reset = createResetTimer(() => { - clicks = 0 - }) - - slogon.addEventListener("click", () => { - reset() - clicks += 1 - if (clicks === 3) { - saveScheme(next()) - clicks = 0 - } - }) -}) diff --git a/www/assets/github-mark.png b/www/assets/github-mark.png deleted file mode 100644 index 6cb3b70..0000000 Binary files a/www/assets/github-mark.png and /dev/null differ diff --git a/www/assets/home.css b/www/assets/home.css deleted file mode 100644 index 1db357e..0000000 --- a/www/assets/home.css +++ /dev/null @@ -1,79 +0,0 @@ -#slogan { - position: sticky; - z-index: 1; - top: 0; -} - -#title-name { - font-family: monospace; - color: var(--bg-color); - background-color: var(--fg-color); -} - -#avatar { - float: right; -} - -#links { - font-family: monospace; - - margin-block-end: 1rem; - - > ul { - display: inline; - padding-inline-start: 0.5em; - >li { - display: inline; - - &::after { - content: " | "; - } - } - } -} - -#recent-posts { - margin-block-end: 1.5em; -} - -#friends-container { - display: flex; - gap: 1em; -} - -.friend { - flex-grow: 0; - text-align: center; -} - -.friend a { - font-family: unset; -} - -.friend-avatar { - object-fit: cover; -} - -.friend-github { - width: 1em; - vertical-align: middle; - margin-right: -0.5em; -} - -.friend-tag { - font-size: 0.8em; -} - -.citation { - margin: auto; -} - -.citation figcaption { - text-align: right; -} - -html[data-theme="dark"] { - & .friend-github { - filter: invert(1); - } -} \ No newline at end of file diff --git a/www/assets/partials/preview/article.css b/www/assets/partials/preview/article.css deleted file mode 100644 index 9629597..0000000 --- a/www/assets/partials/preview/article.css +++ /dev/null @@ -1,42 +0,0 @@ -.article-preview { - font-size: 0.95em; - padding-inline: 0.5em; - padding-block: 0.5em; - margin-block-end: 0.5em; - border-radius: 3px; - background-color: hsl(33, 100%, 98%); - - & > p { - font-size: 0.9em; - line-height: 1.4; - margin-inline-start: 0.3em; - margin-block: 0; - } - - & > .title { - margin-block-start: 0; - margin-block-end: 0.3em; - } - - & > .date { - font-size: small; - float: right; - margin-inline-end: 1.5em; - color: hsl(0, 0%, 25%); - } - - & > .content { - overflow: hidden; - height: 3lh; - } -} - -html[data-theme="dark"] { - & .article-preview { - background-color: hsl(0, 0%, 3%); - - & > .date { - color: hsl(0, 0%, 75%); - } - } -} diff --git a/www/assets/res/css/article.css b/www/assets/res/css/article.css new file mode 100644 index 0000000..9629597 --- /dev/null +++ b/www/assets/res/css/article.css @@ -0,0 +1,42 @@ +.article-preview { + font-size: 0.95em; + padding-inline: 0.5em; + padding-block: 0.5em; + margin-block-end: 0.5em; + border-radius: 3px; + background-color: hsl(33, 100%, 98%); + + & > p { + font-size: 0.9em; + line-height: 1.4; + margin-inline-start: 0.3em; + margin-block: 0; + } + + & > .title { + margin-block-start: 0; + margin-block-end: 0.3em; + } + + & > .date { + font-size: small; + float: right; + margin-inline-end: 1.5em; + color: hsl(0, 0%, 25%); + } + + & > .content { + overflow: hidden; + height: 3lh; + } +} + +html[data-theme="dark"] { + & .article-preview { + background-color: hsl(0, 0%, 3%); + + & > .date { + color: hsl(0, 0%, 75%); + } + } +} diff --git a/www/assets/res/css/base.css b/www/assets/res/css/base.css new file mode 100644 index 0000000..9fd922b --- /dev/null +++ b/www/assets/res/css/base.css @@ -0,0 +1,147 @@ +html { + width: 100%; + --fg-color: black; + --bg-color: white; +} + +* { + box-sizing: border-box; +} + +body { + width: 100%; + margin: 0; + color: var(--fg-color); + background-color: var(--bg-color); +} + +.mono { + font-family: monospace; +} + +a.mono-link, +.mono-link a, +.mono-link .fake-link { + font-family: monospace; +} + +div.mono-container { + font-family: monospace; + margin-block: 1rem; +} + +.toast { + font-size: large; + font-family: monospace; + color: var(--bg-color); + background-color: var(--fg-color); + padding: 0.5em 0.3em; + border-radius: 6px; + + position: fixed; + z-index: 1; + top: 4px; + left: 50vw; + transform: translateX(-50%); +} + +.chroma { + overflow-x: scroll; + padding-left: 1px; + padding-right: 4px; + border-radius: 3px; +} + +nav { + font-size: large; +} + +#slogan { + color: white; + width: 100%; + padding: 0.5em 1em; + text-align: center; + background-color: dodgerblue; + user-select: none; + + & > * { + user-select: text; + } +} + +#main-article { + position: relative; + left: 50%; + transform: translateX(-50%); + max-width: 880px; + padding: 0 1em; + margin-top: 1em; +} + +#license a { + font-family: initial; + text-decoration: none; +} + +#license-text { + font-family: monospace; + text-decoration: initial; +} + +#license-img-container img { + height: 1em; + vertical-align: middle; +} + +.link-group { + margin-block-end: 1em; + + > .link-group-title { + font-size: 1.1em; + margin-block-end: 5px; + } + + > .link-group-list { + border-inline-start: solid 1px hsl(0, 0%, 25%); + padding-inline-start: 8px; + + > .link-group-item::before { + content: "- "; + } + } +} + +html[data-theme="dark"] { + --fg-color: white; + --bg-color: black; + + & a:link { + color:#34ffd9; + } + + & a:visited { + color:#abcac4; + } + + & #slogan { + color: var(--fg-color); + background-color: midnightblue; + } + + & :is(.chroma,.chroma *) { + background-color: hsl(0, 0%, 1.5%); + + & .n { + color: var(--fg-color); + } + } + + table { + border-collapse: collapse; + + &, :is(td,th) { + padding: 0.5em; + border: 1px solid hsl(0, 0%, 25%); + } + } +} diff --git a/www/assets/res/css/catppuccin-latte.css b/www/assets/res/css/catppuccin-latte.css new file mode 100644 index 0000000..00c0669 --- /dev/null +++ b/www/assets/res/css/catppuccin-latte.css @@ -0,0 +1,88 @@ +/* Generated using: hugo gen chromastyles --style=catppuccin-latte */ + +/* Background */ .bg { color:#4c4f69;background-color:#eff1f5; } +/* PreWrapper */ .chroma { color:#4c4f69;background-color:#eff1f5; } +/* Other */ .chroma .x { } +/* Error */ .chroma .err { color:#d20f39 } +/* CodeLine */ .chroma .cl { } +/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit } +/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; } +/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; } +/* LineHighlight */ .chroma .hl { background-color:#bcc0cc } +/* LineNumbersTable */ .chroma .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#8c8fa1 } +/* LineNumbers */ .chroma .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#8c8fa1 } +/* Line */ .chroma .line { display:flex; } +/* Keyword */ .chroma .k { color:#8839ef } +/* KeywordConstant */ .chroma .kc { color:#fe640b } +/* KeywordDeclaration */ .chroma .kd { color:#d20f39 } +/* KeywordNamespace */ .chroma .kn { color:#179299 } +/* KeywordPseudo */ .chroma .kp { color:#8839ef } +/* KeywordReserved */ .chroma .kr { color:#8839ef } +/* KeywordType */ .chroma .kt { color:#d20f39 } +/* Name */ .chroma .n { } +/* NameAttribute */ .chroma .na { color:#1e66f5 } +/* NameBuiltin */ .chroma .nb { color:#04a5e5 } +/* NameBuiltinPseudo */ .chroma .bp { color:#04a5e5 } +/* NameClass */ .chroma .nc { color:#df8e1d } +/* NameConstant */ .chroma .no { color:#df8e1d } +/* NameDecorator */ .chroma .nd { color:#1e66f5;font-weight:bold } +/* NameEntity */ .chroma .ni { color:#179299 } +/* NameException */ .chroma .ne { color:#fe640b } +/* NameFunction */ .chroma .nf { color:#1e66f5 } +/* NameFunctionMagic */ .chroma .fm { color:#1e66f5 } +/* NameLabel */ .chroma .nl { color:#04a5e5 } +/* NameNamespace */ .chroma .nn { color:#fe640b } +/* NameOther */ .chroma .nx { } +/* NameProperty */ .chroma .py { color:#fe640b } +/* NameTag */ .chroma .nt { color:#8839ef } +/* NameVariable */ .chroma .nv { color:#dc8a78 } +/* NameVariableClass */ .chroma .vc { color:#dc8a78 } +/* NameVariableGlobal */ .chroma .vg { color:#dc8a78 } +/* NameVariableInstance */ .chroma .vi { color:#dc8a78 } +/* NameVariableMagic */ .chroma .vm { color:#dc8a78 } +/* Literal */ .chroma .l { } +/* LiteralDate */ .chroma .ld { } +/* LiteralString */ .chroma .s { color:#40a02b } +/* LiteralStringAffix */ .chroma .sa { color:#d20f39 } +/* LiteralStringBacktick */ .chroma .sb { color:#40a02b } +/* LiteralStringChar */ .chroma .sc { color:#40a02b } +/* LiteralStringDelimiter */ .chroma .dl { color:#1e66f5 } +/* LiteralStringDoc */ .chroma .sd { color:#9ca0b0 } +/* LiteralStringDouble */ .chroma .s2 { color:#40a02b } +/* LiteralStringEscape */ .chroma .se { color:#1e66f5 } +/* LiteralStringHeredoc */ .chroma .sh { color:#9ca0b0 } +/* LiteralStringInterpol */ .chroma .si { color:#40a02b } +/* LiteralStringOther */ .chroma .sx { color:#40a02b } +/* LiteralStringRegex */ .chroma .sr { color:#179299 } +/* LiteralStringSingle */ .chroma .s1 { color:#40a02b } +/* LiteralStringSymbol */ .chroma .ss { color:#40a02b } +/* LiteralNumber */ .chroma .m { color:#fe640b } +/* LiteralNumberBin */ .chroma .mb { color:#fe640b } +/* LiteralNumberFloat */ .chroma .mf { color:#fe640b } +/* LiteralNumberHex */ .chroma .mh { color:#fe640b } +/* LiteralNumberInteger */ .chroma .mi { color:#fe640b } +/* LiteralNumberIntegerLong */ .chroma .il { color:#fe640b } +/* LiteralNumberOct */ .chroma .mo { color:#fe640b } +/* Operator */ .chroma .o { color:#04a5e5;font-weight:bold } +/* OperatorWord */ .chroma .ow { color:#04a5e5;font-weight:bold } +/* Punctuation */ .chroma .p { } +/* Comment */ .chroma .c { color:#9ca0b0;font-style:italic } +/* CommentHashbang */ .chroma .ch { color:#9ca0b0;font-style:italic } +/* CommentMultiline */ .chroma .cm { color:#9ca0b0;font-style:italic } +/* CommentSingle */ .chroma .c1 { color:#9ca0b0;font-style:italic } +/* CommentSpecial */ .chroma .cs { color:#9ca0b0;font-style:italic } +/* CommentPreproc */ .chroma .cp { color:#9ca0b0;font-style:italic } +/* CommentPreprocFile */ .chroma .cpf { color:#9ca0b0;font-weight:bold;font-style:italic } +/* Generic */ .chroma .g { } +/* GenericDeleted */ .chroma .gd { color:#d20f39;background-color:#ccd0da } +/* GenericEmph */ .chroma .ge { font-style:italic } +/* GenericError */ .chroma .gr { color:#d20f39 } +/* GenericHeading */ .chroma .gh { color:#fe640b;font-weight:bold } +/* GenericInserted */ .chroma .gi { color:#40a02b;background-color:#ccd0da } +/* GenericOutput */ .chroma .go { } +/* GenericPrompt */ .chroma .gp { } +/* GenericStrong */ .chroma .gs { font-weight:bold } +/* GenericSubheading */ .chroma .gu { color:#fe640b;font-weight:bold } +/* GenericTraceback */ .chroma .gt { color:#d20f39 } +/* GenericUnderline */ .chroma .gl { text-decoration:underline } +/* TextWhitespace */ .chroma .w { } diff --git a/www/assets/res/css/catppuccin-mocha.css b/www/assets/res/css/catppuccin-mocha.css new file mode 100644 index 0000000..4d9a04c --- /dev/null +++ b/www/assets/res/css/catppuccin-mocha.css @@ -0,0 +1,88 @@ +/* Generated using: hugo gen chromastyles --style=catppuccin-mocha */ + +/* Background */ .bg { color:#cdd6f4;background-color:#1e1e2e; } +/* PreWrapper */ .chroma { color:#cdd6f4;background-color:#1e1e2e; } +/* Other */ .chroma .x { } +/* Error */ .chroma .err { color:#f38ba8 } +/* CodeLine */ .chroma .cl { } +/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit } +/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; } +/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; } +/* LineHighlight */ .chroma .hl { background-color:#45475a } +/* LineNumbersTable */ .chroma .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f849c } +/* LineNumbers */ .chroma .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f849c } +/* Line */ .chroma .line { display:flex; } +/* Keyword */ .chroma .k { color:#cba6f7 } +/* KeywordConstant */ .chroma .kc { color:#fab387 } +/* KeywordDeclaration */ .chroma .kd { color:#f38ba8 } +/* KeywordNamespace */ .chroma .kn { color:#94e2d5 } +/* KeywordPseudo */ .chroma .kp { color:#cba6f7 } +/* KeywordReserved */ .chroma .kr { color:#cba6f7 } +/* KeywordType */ .chroma .kt { color:#f38ba8 } +/* Name */ .chroma .n { } +/* NameAttribute */ .chroma .na { color:#89b4fa } +/* NameBuiltin */ .chroma .nb { color:#89dceb } +/* NameBuiltinPseudo */ .chroma .bp { color:#89dceb } +/* NameClass */ .chroma .nc { color:#f9e2af } +/* NameConstant */ .chroma .no { color:#f9e2af } +/* NameDecorator */ .chroma .nd { color:#89b4fa;font-weight:bold } +/* NameEntity */ .chroma .ni { color:#94e2d5 } +/* NameException */ .chroma .ne { color:#fab387 } +/* NameFunction */ .chroma .nf { color:#89b4fa } +/* NameFunctionMagic */ .chroma .fm { color:#89b4fa } +/* NameLabel */ .chroma .nl { color:#89dceb } +/* NameNamespace */ .chroma .nn { color:#fab387 } +/* NameOther */ .chroma .nx { } +/* NameProperty */ .chroma .py { color:#fab387 } +/* NameTag */ .chroma .nt { color:#cba6f7 } +/* NameVariable */ .chroma .nv { color:#f5e0dc } +/* NameVariableClass */ .chroma .vc { color:#f5e0dc } +/* NameVariableGlobal */ .chroma .vg { color:#f5e0dc } +/* NameVariableInstance */ .chroma .vi { color:#f5e0dc } +/* NameVariableMagic */ .chroma .vm { color:#f5e0dc } +/* Literal */ .chroma .l { } +/* LiteralDate */ .chroma .ld { } +/* LiteralString */ .chroma .s { color:#a6e3a1 } +/* LiteralStringAffix */ .chroma .sa { color:#f38ba8 } +/* LiteralStringBacktick */ .chroma .sb { color:#a6e3a1 } +/* LiteralStringChar */ .chroma .sc { color:#a6e3a1 } +/* LiteralStringDelimiter */ .chroma .dl { color:#89b4fa } +/* LiteralStringDoc */ .chroma .sd { color:#6c7086 } +/* LiteralStringDouble */ .chroma .s2 { color:#a6e3a1 } +/* LiteralStringEscape */ .chroma .se { color:#89b4fa } +/* LiteralStringHeredoc */ .chroma .sh { color:#6c7086 } +/* LiteralStringInterpol */ .chroma .si { color:#a6e3a1 } +/* LiteralStringOther */ .chroma .sx { color:#a6e3a1 } +/* LiteralStringRegex */ .chroma .sr { color:#94e2d5 } +/* LiteralStringSingle */ .chroma .s1 { color:#a6e3a1 } +/* LiteralStringSymbol */ .chroma .ss { color:#a6e3a1 } +/* LiteralNumber */ .chroma .m { color:#fab387 } +/* LiteralNumberBin */ .chroma .mb { color:#fab387 } +/* LiteralNumberFloat */ .chroma .mf { color:#fab387 } +/* LiteralNumberHex */ .chroma .mh { color:#fab387 } +/* LiteralNumberInteger */ .chroma .mi { color:#fab387 } +/* LiteralNumberIntegerLong */ .chroma .il { color:#fab387 } +/* LiteralNumberOct */ .chroma .mo { color:#fab387 } +/* Operator */ .chroma .o { color:#89dceb;font-weight:bold } +/* OperatorWord */ .chroma .ow { color:#89dceb;font-weight:bold } +/* Punctuation */ .chroma .p { } +/* Comment */ .chroma .c { color:#6c7086;font-style:italic } +/* CommentHashbang */ .chroma .ch { color:#6c7086;font-style:italic } +/* CommentMultiline */ .chroma .cm { color:#6c7086;font-style:italic } +/* CommentSingle */ .chroma .c1 { color:#6c7086;font-style:italic } +/* CommentSpecial */ .chroma .cs { color:#6c7086;font-style:italic } +/* CommentPreproc */ .chroma .cp { color:#6c7086;font-style:italic } +/* CommentPreprocFile */ .chroma .cpf { color:#6c7086;font-weight:bold;font-style:italic } +/* Generic */ .chroma .g { } +/* GenericDeleted */ .chroma .gd { color:#f38ba8;background-color:#313244 } +/* GenericEmph */ .chroma .ge { font-style:italic } +/* GenericError */ .chroma .gr { color:#f38ba8 } +/* GenericHeading */ .chroma .gh { color:#fab387;font-weight:bold } +/* GenericInserted */ .chroma .gi { color:#a6e3a1;background-color:#313244 } +/* GenericOutput */ .chroma .go { } +/* GenericPrompt */ .chroma .gp { } +/* GenericStrong */ .chroma .gs { font-weight:bold } +/* GenericSubheading */ .chroma .gu { color:#fab387;font-weight:bold } +/* GenericTraceback */ .chroma .gt { color:#f38ba8 } +/* GenericUnderline */ .chroma .gl { text-decoration:underline } +/* TextWhitespace */ .chroma .w { } diff --git a/www/assets/res/css/home.css b/www/assets/res/css/home.css new file mode 100644 index 0000000..1db357e --- /dev/null +++ b/www/assets/res/css/home.css @@ -0,0 +1,79 @@ +#slogan { + position: sticky; + z-index: 1; + top: 0; +} + +#title-name { + font-family: monospace; + color: var(--bg-color); + background-color: var(--fg-color); +} + +#avatar { + float: right; +} + +#links { + font-family: monospace; + + margin-block-end: 1rem; + + > ul { + display: inline; + padding-inline-start: 0.5em; + >li { + display: inline; + + &::after { + content: " | "; + } + } + } +} + +#recent-posts { + margin-block-end: 1.5em; +} + +#friends-container { + display: flex; + gap: 1em; +} + +.friend { + flex-grow: 0; + text-align: center; +} + +.friend a { + font-family: unset; +} + +.friend-avatar { + object-fit: cover; +} + +.friend-github { + width: 1em; + vertical-align: middle; + margin-right: -0.5em; +} + +.friend-tag { + font-size: 0.8em; +} + +.citation { + margin: auto; +} + +.citation figcaption { + text-align: right; +} + +html[data-theme="dark"] { + & .friend-github { + filter: invert(1); + } +} \ No newline at end of file diff --git a/www/assets/res/css/single.css b/www/assets/res/css/single.css new file mode 100644 index 0000000..70325d1 --- /dev/null +++ b/www/assets/res/css/single.css @@ -0,0 +1,20 @@ +.post-info { + margin-block: 0; + font-family: monospace; + font-size: 0.95em; + display: flex; + flex-wrap: wrap; + gap: 1em; + + & > .words { + margin-inline-end: auto; + } +} + +.end-hr { + border: none; + width: 8em; + margin-block-start: 1.5em; + margin-inline-start: 0; + border-top: 1px dashed black; +} diff --git a/www/assets/res/css/todos.css b/www/assets/res/css/todos.css new file mode 100644 index 0000000..e9a595d --- /dev/null +++ b/www/assets/res/css/todos.css @@ -0,0 +1,14 @@ +.todo { + + &::before { + font-family: monospace; + } + + &.working::before { + content: "* "; + } + + &.done::before { + content: "✓ "; + } +} \ No newline at end of file diff --git a/www/assets/res/img/gh.png b/www/assets/res/img/gh.png new file mode 100644 index 0000000..6cb3b70 Binary files /dev/null and b/www/assets/res/img/gh.png differ diff --git a/www/assets/res/js/color-scheme.ts b/www/assets/res/js/color-scheme.ts new file mode 100644 index 0000000..db6a3aa --- /dev/null +++ b/www/assets/res/js/color-scheme.ts @@ -0,0 +1,110 @@ +function createResetTimer(cleanup: () => void, timeout = 1) { + let tag = 0 + return () => { + clearTimeout(tag) + tag = setTimeout(() => { + cleanup() + }, timeout * 1000) + } +} + +function createToast(duration: number = 1): (text: string) => void { + const toast = document.createElement("div") + toast.className = "toast" + + const reset = createResetTimer(() => { + toast.remove() + }, duration) + + return (text) => { + if (!toast.isConnected) { + document.body.appendChild(toast) + } + toast.textContent = text + reset() + } +} + +const setToast = createToast() + +const key = "force-color-scheme" +const dark = "dark" +const light = "light" +type Scheme = typeof dark | typeof light + +const mediaQuery = window.matchMedia("(prefers-color-scheme: dark)") + +function fromMediaQuery(value: boolean | null): Scheme { + if (value == null) { value = mediaQuery.matches} + return value ? dark : light +} + +function opposite(scheme: Scheme): Scheme { + return scheme === dark ? light : dark +} + +function updateScheme(theme: Scheme | null): Scheme { + if (theme == null) { theme = fromMediaQuery(null) } + document.querySelector("html")!.dataset["theme"] = theme + return theme +} + +mediaQuery.addEventListener("change", (e) => updateScheme(current || fromMediaQuery(e.matches))) + +let current: Scheme | null = null + +{ + const saved = localStorage.getItem(key) + if ([null, dark, light].includes(saved)) { + current = saved as never + } else { + console.log(`invalid saved theme: ${saved}`) + localStorage.removeItem(key) + } +} + +updateScheme(current) + +function saveScheme(value: Scheme | null) { + current = value + + if (value == null) { + localStorage.removeItem(key) + } else { + localStorage.setItem(key, value) + } + + const real = updateScheme(value) + setToast(`theme: ${current == null ? "system" : "force"}(${real})`) +} + +function next(): Scheme | null { + const sys = fromMediaQuery(null) + if (current == null) { + return opposite(sys) + } else { + if (current === sys) { + return null; + } else { + return opposite(current) + } + } +} + +window.addEventListener("load", () => { + const slogon = document.getElementById("slogan")! + let clicks: number = 0 + + const reset = createResetTimer(() => { + clicks = 0 + }) + + slogon.addEventListener("click", () => { + reset() + clicks += 1 + if (clicks === 3) { + saveScheme(next()) + clicks = 0 + } + }) +}) diff --git a/www/assets/single.css b/www/assets/single.css deleted file mode 100644 index 70325d1..0000000 --- a/www/assets/single.css +++ /dev/null @@ -1,20 +0,0 @@ -.post-info { - margin-block: 0; - font-family: monospace; - font-size: 0.95em; - display: flex; - flex-wrap: wrap; - gap: 1em; - - & > .words { - margin-inline-end: auto; - } -} - -.end-hr { - border: none; - width: 8em; - margin-block-start: 1.5em; - margin-inline-start: 0; - border-top: 1px dashed black; -} diff --git a/www/config/_default/hugo.yaml b/www/config/_default/hugo.yaml index 4ade102..2479f6e 100644 --- a/www/config/_default/hugo.yaml +++ b/www/config/_default/hugo.yaml @@ -17,6 +17,9 @@ frontmatter: lastmod: [ "lastmod", "date", "publishDate" ] markup: + goldmark: + extensions: + table: true highlight: lineNos: true noClasses: false diff --git a/www/content/hurd.md b/www/content/hurd.md deleted file mode 100644 index 67cf6f8..0000000 --- a/www/content/hurd.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "Hurd" -date: 2025-03-03T15:34:41+08:00 -lastmod: 2025-03-03T15:34:41+08:00 ---- diff --git a/www/content/hurd/_index.md b/www/content/hurd/_index.md new file mode 100644 index 0000000..b4c727c --- /dev/null +++ b/www/content/hurd/_index.md @@ -0,0 +1,182 @@ +--- +title: "Hurd" +date: 2025-03-03T15:34:41+08:00 +lastmod: 2025-03-03T23:28:46+08:00 +layout: single +--- + +{{< mono >}} + +[TODOS](/hurd/todos) + +{{< /mono >}} + +## links + +{{< mono >}} + +| name | link | +| --- | --- | +| kernel-list-archive | | +| debian-list-archive | | +| irc-archive | | +| kernel-home | | +| debian-home | | + +{{< /mono >}} + +refs: + +{{< mono >}} + +| name | link | +| --- | --- | +| c | | +| posix latest | | +| posix 2013 | | +| posix 2008 | | +| glibc | | + +{{< /mono >}} + +## *_MAX patch + +TODO: Move to separate page. + +```c +#include +#include +#include + +static inline char *xreadlink(const char *restrict path) { + char *buffer; + size_t allocated = 128; + ssize_t len; + + while (1) { + buffer = (char *)malloc(allocated); + if (!buffer) { + return NULL; + } + len = readlink(path, buffer, allocated); + if (len < (ssize_t)allocated) { + return buffer; + } + free(buffer); + if (len >= (ssize_t)allocated) { + allocated *= 2; + continue; + } + return NULL; + } +} + +static inline char *xgethostname() { + long max_host_name; + char *buffer; + + max_host_name = sysconf(_SC_HOST_NAME_MAX); + buffer = malloc(max_host_name + 1); + + if (gethostname(buffer, max_host_name + 1)) { + free(buffer); + return NULL; + } + + buffer[max_host_name] = '\0'; + return buffer; +} + +static inline char *xgetcwd() { + char *buffer; + size_t allocated = 128; + + while (1) { + buffer = (char *)malloc(allocated); + if (!buffer) { + return NULL; + } + getcwd(buffer, allocated); + if (buffer) + return buffer; + free(buffer); + if (errno == ERANGE) { + allocated *= 2; + continue; + } + return NULL; + } +} +``` + +## git repos + +{{< link-group >}} +hurd +cru: +upstream: +debian: +{{< /link-group >}} + +{{< link-group >}} +gnumach +cru: +upstream: +debian: +{{< /link-group >}} + +{{< link-group >}} +mig +cru: +upstream: +debian: +{{< /link-group >}} + +{{< link-group >}} +glibc +cru: +upstream: +debian: +mirror: +{{< /link-group >}} + +{{< link-group >}} +web +cru: +upstream: +{{< /link-group >}} + +## cheatsheet + +Start qemu + +```sh +qemu-system-x86_64 -enable-kvm -m 4G -net nic -net user,hostfwd=tcp::3222-:22 -vga vmware -drive cache=writeback,file=[...] +``` + +Configure/Setup network + +```sh +settrans -fgap /servers/socket/2 /hurd/pfinet -i /dev/eth0 -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 +fsysopts /servers/socket/2 /hurd/pfinet -i /dev/eth0 -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 +fsysopts /server/socket/2 -a 10.0.2.15 -g 10.0.2.2 -m 255.255.255.0 +``` + +Setup apt + +```sh +apt-get --allow-unauthenticated --allow-insecure-repositories update +apt-get --allow-unauthenticated upgrade +``` + +## mailing lists / irc + +{{< mono >}} + +| name | address | +| --- | --- | +| hurd | | +| debian | | +| irc | librechat #hurd | + +{{< /mono >}} diff --git a/www/content/hurd/todos.md b/www/content/hurd/todos.md new file mode 100644 index 0000000..d95bfb9 --- /dev/null +++ b/www/content/hurd/todos.md @@ -0,0 +1,54 @@ +--- +title: "Hurd Todos" +date: 2025-03-03T21:22:35+08:00 +lastmod: 2025-03-03T23:28:46+08:00 +params: + css: + - todos +--- + +## Porting + +### {{< todo name=pam state=working >}} + +{{< link-group >}} +git +cru: +debian: +upstream: +{{< /link-group >}} + +{{< link-group >}} +mail + +{{< /link-group >}} + +### {{< todo name=abseil state=working >}} + +{{< link-group >}} +git +cru: +upstream: +debian: +{{< /link-group >}} + +{{< link-group >}} +mail +\ + +{{< /link-group >}} + +### {{< todo name=libgav1 state=done >}} + +{{< link-group >}} +git +my: +debian: +upstream: +{{< /link-group >}} + +{{< link-group >}} +misc +mail: +gerrit: +{{< /link-group >}} diff --git a/www/content/todos.md b/www/content/todos.md index da7cc0f..a790e24 100644 --- a/www/content/todos.md +++ b/www/content/todos.md @@ -1,5 +1,7 @@ --- title: "Todos" date: 2025-03-03T15:34:53+08:00 -lastmod: 2025-03-03T15:34:53+08:00 +lastmod: 2025-03-03T23:28:46+08:00 --- + +[Hurd](/hurd/todos) diff --git a/www/layouts/_default/baseof.html b/www/layouts/_default/baseof.html index 55954d3..621aea1 100644 --- a/www/layouts/_default/baseof.html +++ b/www/layouts/_default/baseof.html @@ -9,11 +9,14 @@ {{ block "title" . }} {{ .Site.Title }} {{ end }} - {{ partial "js.html" "color-scheme.ts" }} + {{ partial "js.html" "res/js/color-scheme.ts" }} {{ partial "css-res.html" (partial "highlight.html" dict) }} - {{ partial "css.html" "base-style.css" }} + {{ partial "css.html" "res/css/base.css" }} {{ block "head" . }} {{ end }} + {{ range .Params.css }} + {{ partial "css.html" (printf "res/css/%s.css" .) }} + {{ end }}
diff --git a/www/layouts/_default/list.html b/www/layouts/_default/list.html index ddc3942..c7c6cce 100644 --- a/www/layouts/_default/list.html +++ b/www/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ define "head"}} - {{ partial "css.html" "partials/preview/article.css" }} + {{ partial "css.html" "res/css/article.css" }} {{ end }} {{ define "content" }} diff --git a/www/layouts/_default/single.html b/www/layouts/_default/single.html index 1f267eb..cd0e9c5 100644 --- a/www/layouts/_default/single.html +++ b/www/layouts/_default/single.html @@ -1,5 +1,5 @@ {{ define "head"}} - {{ partial "css.html" "single.css" }} + {{ partial "css.html" "res/css/single.css" }} {{ end }} {{ define "title" }} diff --git a/www/layouts/index.html b/www/layouts/index.html index 55e49ff..7b33a6a 100644 --- a/www/layouts/index.html +++ b/www/layouts/index.html @@ -1,6 +1,6 @@ {{ define "head"}} - {{ partial "css.html" "home.css" }} - {{ partial "css.html" "partials/preview/article.css" }} + {{ partial "css.html" "res/css/home.css" }} + {{ partial "css.html" "res/css/article.css" }} {{ end }} {{ define "friend" }} @@ -10,7 +10,7 @@ Friend {{.name}}'s avatar
{{.name}} - {{- with resources.Get "github-mark.png" -}} + {{- with resources.Get "res/img/gh.png" -}} {{- end -}}
diff --git a/www/layouts/partials/highlight.html b/www/layouts/partials/highlight.html index 06ab047..28c510e 100644 --- a/www/layouts/partials/highlight.html +++ b/www/layouts/partials/highlight.html @@ -1,6 +1,6 @@ -{{ $light := resources.Get "catppuccin-latte.css" }} -{{ $dark := resources.Get "catppuccin-mocha.css" }} +{{ $light := resources.Get "res/css/catppuccin-latte.css" }} +{{ $dark := resources.Get "res/css/catppuccin-mocha.css" }} {{ $dark_wrapper_before := resources.FromString "highlight-dark-wapper-before.css" `html[data-theme="dark"] {`}}} {{ $dark_wrapper_after := resources.FromString "highlight-dark-wapper-after.css" "}"}} -{{ $highlight := slice $light $dark_wrapper_before $dark $dark_wrapper_after | resources.Concat "highlight.css" }} +{{ $highlight := slice $light $dark_wrapper_before $dark $dark_wrapper_after | resources.Concat "res/css/highlight.css" }} {{ return $highlight }} diff --git a/www/layouts/partials/nav.html b/www/layouts/partials/nav.html index 42c9ad1..4ecf622 100644 --- a/www/layouts/partials/nav.html +++ b/www/layouts/partials/nav.html @@ -2,5 +2,5 @@ {{ range .Ancestors.Reverse }} {{ lower .Title }} > {{ end }} - this + this: {{.Title}} diff --git a/www/layouts/shortcodes/link-group.html b/www/layouts/shortcodes/link-group.html new file mode 100644 index 0000000..b16c2bc --- /dev/null +++ b/www/layouts/shortcodes/link-group.html @@ -0,0 +1,25 @@ + diff --git a/www/layouts/shortcodes/mono.html b/www/layouts/shortcodes/mono.html new file mode 100644 index 0000000..ab183a5 --- /dev/null +++ b/www/layouts/shortcodes/mono.html @@ -0,0 +1,3 @@ +
+ {{ .Inner | .Page.RenderString }} +
diff --git a/www/layouts/shortcodes/todo.html b/www/layouts/shortcodes/todo.html new file mode 100644 index 0000000..1327b31 --- /dev/null +++ b/www/layouts/shortcodes/todo.html @@ -0,0 +1 @@ +{{ .Get "name" }} \ No newline at end of file -- cgit v1.2.3