OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
octospacc 2023-11-06 00:36:46 +00:00
parent dfc37bcd14
commit 0fc3660936
17 changed files with 45 additions and 23 deletions

View File

@ -1,13 +1,13 @@
created: 20230126105640952 created: 20230126105640952
creator: Octt creator: Octt
modified: 20231105214741288 modified: 20231105154317265
modifier: Octt modifier: Octt
tags: OcttKB WIP tags: OcttKB WIP
title: OcttKB/WIP title: OcttKB/WIP
!!! ''WIP/TODO'' !!! ''WIP/TODO''
//Note: this section is by itself in an heavy WIP state..., and currently it's really outdated... I will never escape from this 😱️// //Note: this section is by itself in an heavy WIP state... I will never escape from this 😱️//
* Better footnotes (should be clickable) * Better footnotes (should be clickable)
* Fix StaticRiver template, broken after introducing breadcrumbs ~~(showing duplicate title, and also broken elements)~~ * Fix StaticRiver template, broken after introducing breadcrumbs ~~(showing duplicate title, and also broken elements)~~

View File

@ -1,6 +1,6 @@
created: 20230223222804008 created: 20230223222804008
creator: Octt creator: Octt
modified: 20231105144457250 modified: 20231106000819012
modifier: Octt modifier: Octt
tags: tags:
title: Saved/Sites title: Saved/Sites
@ -20,6 +20,7 @@ Note: "[property]-leaning" means the majority of the content of the site, or the
* <<httpL iter.ca>> * <<httpL iter.ca>>
* [[koyu's personal website|https://web.koyu.space/]] * [[koyu's personal website|https://web.koyu.space/]]
* [[l33t.codes|https://l33t.codes]] --- Nice emulated retro-style with CRT effects and monospace text of many colors. * [[l33t.codes|https://l33t.codes]] --- Nice emulated retro-style with CRT effects and monospace text of many colors.
* [[Lily's Things at The Cool Site|https://www.lilysthings.org/]]
* [[📚 Nitay Neeman's Blog|https://nitayneeman.github.io/]] * [[📚 Nitay Neeman's Blog|https://nitayneeman.github.io/]]
* [[P01✨ CREATIVE CODER & TECHNICAL SPEAKER|http://www.p01.org]] * [[P01✨ CREATIVE CODER & TECHNICAL SPEAKER|http://www.p01.org]]
* [[Read the Tea Leaves|https://nolanlawson.com/]] --- //Software and other dark arts, by Nolan Lawson// * [[Read the Tea Leaves|https://nolanlawson.com/]] --- //Software and other dark arts, by Nolan Lawson//

View File

@ -0,0 +1,10 @@
created: 20231106001643166
creator: Octt
modified: 20231106001854973
modifier: Octt
tags:
title: Archive
<<^wikipediaframe Archive>>
* <<httpsL hobune.stream>> --- //hobune.stream is a website for me to share my private archives publicly with the world//, seems to be all videos, and many of them

View File

@ -1,6 +1,6 @@
created: 20230613185754543 created: 20230613185754543
creator: Octt creator: Octt
modified: 20231102102508440 modified: 20231106003605886
modifier: Octt modifier: Octt
tags: tags:
title: Development title: Development
@ -13,3 +13,5 @@ title: Development
* [[What package naming convention do you use for personal/hobby projects|https://stackoverflow.com/questions/292169/what-package-naming-convention-do-you-use-for-personal-hobby-projects-in-java]] in Java/Android/Flatpak? * [[What package naming convention do you use for personal/hobby projects|https://stackoverflow.com/questions/292169/what-package-naming-convention-do-you-use-for-personal-hobby-projects-in-java]] in Java/Android/Flatpak?
* [[Compilation and Installation using Autoconf|https://opensource.apple.com/source/X11libs/X11libs-60/mesa/Mesa-7.8.2/docs/autoconf.html]] * [[Compilation and Installation using Autoconf|https://opensource.apple.com/source/X11libs/X11libs-60/mesa/Mesa-7.8.2/docs/autoconf.html]]
* [[What is the purpose of .PHONY in a Makefile?|https://stackoverflow.com/questions/2145590/what-is-the-purpose-of-phony-in-a-makefile]] --- TLDR: it's to declare "fake" targets that must build independently from actual files on disk (that make would otherwise use as targets), it doesn't mean "sound" or "pronunciation" or otherwise the full list of only allowed build targets, as I initially thought because of associating phony => telephony => ...
* <<linkdescgit "Modern CMake" "https://cliutils.gitlab.io/modern-cmake/" "A book about using CMake for your projects" "https://gitlab.com/CLIUtils/modern-cmake">>

View File

@ -0,0 +1,9 @@
created: 20231106000942380
creator: Octt
modified: 20231106001552282
modifier: Octt
tags: Strange
title: Internet Checkpoint
* <<YoutubeL EETV2JNBhcc "Welcome traveller. You have reached the checkpoint of the internet. This is an age-old story beginning with taia777 in 2012, where people from all walks of life would comment about how their life is going.">>
* <<linkdescgit "Internet Checkpoint" "https://internetcheckpoint.page/" "An hommage to the internet checkpoint comments section." "https://github.com/geauser/internetcheckpoint">>

View File

@ -1,7 +1,7 @@
created: 20231105210128175 created: 20231105210128175
creator: Octt creator: Octt
list-after: $:/core/ui/ViewTemplate/tags list-after: $:/core/ui/ViewTemplate/tags
modified: 20231105232834847 modified: 20231105234639368
modifier: Octt modifier: Octt
tags: $:/tags/ViewTemplate tags: $:/tags/ViewTemplate
title: $:/Styles/View/i18n title: $:/Styles/View/i18n
@ -32,7 +32,7 @@ title: $:/Styles/View/i18n
if (TidBodyParags[i].trim()) { if (TidBodyParags[i].trim()) {
/* TODO: make this not lock up the main thread */ /* TODO: make this not lock up the main thread */
var req = new XMLHttpRequest(); var req = new XMLHttpRequest();
req.open('GET', `https://lingva.garudalinux.org/api/v1/${TidLangKnown ? TidLangKnown : 'auto'}/${window['OcttKB-i18n-current']}/${encodeURIComponent(TidBodyParags[i].trim())}`, false); req.open('GET', `https://lingva.garudalinux.org/api/v1/${TidLangKnown ? TidLangKnown : 'auto'}/${input.value}/${encodeURIComponent(TidBodyParags[i].trim())}`, false);
req.send(); req.send();
var jsonResponse = JSON.parse(req.responseText); var jsonResponse = JSON.parse(req.responseText);
TidBodyTranslated += jsonResponse.translation + BodySplitter; TidBodyTranslated += jsonResponse.translation + BodySplitter;

View File

@ -1,5 +1,5 @@
created: 20231105232914777 created: 20231106003639976
current-tiddler: GettingStarted current-tiddler: GettingStarted
modified: 20231105232914777 modified: 20231106003639976
title: $:/HistoryList title: $:/HistoryList
type: application/json type: application/json

View File

@ -1,6 +1,6 @@
created: 20231105231431599 created: 20231105234412202
creator: Octt creator: Octt
list: list:
modified: 20231105232654357 modified: 20231106003311163
modifier: Octt modifier: Octt
title: $:/StoryList title: $:/StoryList

View File

@ -1,7 +1,7 @@
created: 20220920140732083 created: 20220920140732083
creator: Octt creator: Octt
modified: 20231105210451811 modified: 20231106002453291
modifier: Octt modifier: Octt
title: $:/state/showeditpreview title: $:/state/showeditpreview
no yes

View File

@ -1,7 +1,7 @@
created: 20230109143853256 created: 20230109143853256
creator: Octt creator: Octt
modified: 20231104195014618 modified: 20231105151648391
modifier: Octt modifier: Octt
title: $:/state/tab--1498284803 title: $:/state/tab--1498284803
$:/core/ui/AdvancedSearch/Standard $:/core/ui/AdvancedSearch/System

View File

@ -1,7 +1,7 @@
created: 20230109143853256 created: 20230109143853256
creator: Octt creator: Octt
modified: 20231104195014617 modified: 20231105151648391
modifier: Octt modifier: Octt
title: $:/state/advancedsearch/currentTab title: $:/state/advancedsearch/currentTab
$:/core/ui/AdvancedSearch/Standard $:/core/ui/AdvancedSearch/System

View File

@ -1,6 +1,6 @@
created: 20230501095944427 created: 20230501095944427
creator: Octt creator: Octt
modified: 20231105151623215 modified: 20231106002433020
modifier: Octt modifier: Octt
title: $:/state/search/currentTab title: $:/state/search/currentTab

View File

@ -1,6 +1,6 @@
created: 20220920092307479 created: 20220920092307479
creator: Octt creator: Octt
modified: 20231105232842380 modified: 20231106001548724
modifier: Octt modifier: Octt
title: $:/state/tab/sidebar--595412856 title: $:/state/tab/sidebar--595412856

View File

@ -1,6 +1,6 @@
created: 20230501095944427 created: 20230501095944427
creator: Octt creator: Octt
modified: 20231105151623215 modified: 20231106002433020
modifier: Octt modifier: Octt
title: $:/state/tab/search-results/sidebar title: $:/state/tab/search-results/sidebar

View File

@ -1,6 +1,6 @@
created: 20221108155618185 created: 20221108155618185
creator: Octt creator: Octt
modified: 20231105183045128 modified: 20231105234600860
modifier: Octt modifier: Octt
title: $:/state/tree/$:/Macros/ title: $:/state/tree/$:/Macros/

View File

@ -1,7 +1,7 @@
created: 20230111084703963 created: 20230111084703963
creator: Octt creator: Octt
modified: 20231105185204090 modified: 20231105151708695
modifier: Octt modifier: Octt
title: $:/state/tree/$:/OcttKB/ title: $:/state/tree/$:/OcttKB/
show hide

View File

@ -1,6 +1,6 @@
created: 20230108193801573 created: 20230108193801573
creator: Octt creator: Octt
modified: 20231105214443871 modified: 20231105234602375
modifier: Octt modifier: Octt
title: $:/state/tree/$:/Styles/ title: $:/state/tree/$:/Styles/