From 6f668449b646cd8af1a0212e8f370251e2538299 Mon Sep 17 00:00:00 2001 From: octospacc Date: Mon, 6 Nov 2023 23:58:12 +0000 Subject: [PATCH] OcttKB Cross-Repo Sync (HTML to Raw) --- Wiki-OcttKB/tiddlers/Normal/Saved/_Sites.tid | 5 +++-- Wiki-OcttKB/tiddlers/Normal/_C Language.tid | 6 +++++- Wiki-OcttKB/tiddlers/Normal/_Data corruption.tid | 14 ++++++++++++++ Wiki-OcttKB/tiddlers/Normal/_Data recovery.tid | 10 ++++++++++ Wiki-OcttKB/tiddlers/Normal/_Gaming.tid | 4 +++- Wiki-OcttKB/tiddlers/Normal/_Linux.tid | 5 +++-- Wiki-OcttKB/tiddlers/Normal/_Virtual reality.tid | 12 ++++++++++++ Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta | 4 ++-- Wiki-OcttKB/tiddlers/System/_StoryList.tid | 4 ++-- .../System/state/tab/_sidebar--595412856.tid | 2 +- 10 files changed, 55 insertions(+), 11 deletions(-) create mode 100644 Wiki-OcttKB/tiddlers/Normal/_Data corruption.tid create mode 100644 Wiki-OcttKB/tiddlers/Normal/_Data recovery.tid create mode 100644 Wiki-OcttKB/tiddlers/Normal/_Virtual reality.tid diff --git a/Wiki-OcttKB/tiddlers/Normal/Saved/_Sites.tid b/Wiki-OcttKB/tiddlers/Normal/Saved/_Sites.tid index 30638a5..cf79f6c 100644 --- a/Wiki-OcttKB/tiddlers/Normal/Saved/_Sites.tid +++ b/Wiki-OcttKB/tiddlers/Normal/Saved/_Sites.tid @@ -1,13 +1,13 @@ created: 20230223222804008 creator: Octt -modified: 20231106000819012 +modified: 20231106235343752 modifier: Octt tags: title: Saved/Sites List of some Internet sites (Web and also other protocols, so not only "websites") I want to save, for some reason or another. Sometimes they have interesting content, others I just like the aesthetic, or navigation experience, and maybe they are by themselves a good inspiration for my site design journeys. All here are miscellaneous, look in subpages for categories. -Some personal ones could be defined as "[[digital gardens|Digital Garden]]". +Some personal ones could be defined as "[[digital gardens|Digital Garden]]" and are might be moved in that section. Note: "[property]-leaning" means the majority of the content of the site, or the site's style, leans towards that property (in majority, but not necessarily in totality). @@ -70,6 +70,7 @@ These are kind of blogs, but don't contain mainly things written as blogs, but m * [[Maggie Appleton|https://maggieappleton.com/]] --- <<[ "[[Git|https://github.com/MaggieAppleton/maggieappleton.com-V2]]">> * [[RetroRGB|https://www.retrorgb.com/]] --- //site dedicated to keeping everyone up-to-date with everything the retro-gaming world has to offer// * [[TheFrenchGhosty|https://thefrenchghosty.me/]] +* [[The Refined Mind|https://refinedmind.co/]] --- //This is my tiny plot on the internet where I share ideas in progress. It’s my public workspace and an experiment in what’s known as digital gardening.// * [[wiki.nikiv.dev|https://wiki.nikiv.dev/]] --- <<[ "[[Git|https://github.com/nikitavoloboev/knowledge]]">> ** [2023-08-18] Apparently the majority of pages is now paywalled, and the public Git repo isn't receiving any updates. Since the wiki is still static, the paywall can be bypassed by injecting following CSS code: `.modalblur{display:none !important;}`; otherwise, also disabing JavaScript is an option (but breaks navigation on mobile and search globally). * [[XXIIVV|https://wiki.xxiivv.com/]] --- <<[ "[[Git|https://github.com/XXIIVV/oscean]]">> diff --git a/Wiki-OcttKB/tiddlers/Normal/_C Language.tid b/Wiki-OcttKB/tiddlers/Normal/_C Language.tid index f0ff4dd..6bea147 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_C Language.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_C Language.tid @@ -1,12 +1,14 @@ created: 20231029134919585 creator: Octt -modified: 20231105222349930 +modified: 20231106232930161 modifier: Octt tags: title: C Language <<^wikipediaframe C_Language>> +* [[reassign struct in C|https://stackoverflow.com/questions/10298070/reassign-struct-in-c]] (meaning reassigning all fields at a time); the feature is part of compound literals, sadly only supported in C99+, won't work before that and it's not easy to guess why without knowing this + * [[Why do many functions that return structures in C, actually return pointers to structures?|https://softwareengineering.stackexchange.com/questions/359408/why-do-many-functions-that-return-structures-in-c-actually-return-pointers-to-s]] * [[Passing by reference in C|https://stackoverflow.com/questions/2229498/passing-by-reference-in-c]] --- "C does not support passing a variable by reference"... //Passing a pointer ''is'' passing-by-reference. This seems to be one of those facts that "savvy" C programmers pride themselves on. Like they get a kick out of it. "Oh you might THINK C has pass-by-reference but no it's actually just the value of a memory address being passed harharhar". Passing by reference literally just means passing the memory address of where a variable is stored rather than the variable's value itself [...]// * [[Pointers in C: when to use the ampersand and the asterisk?|https://stackoverflow.com/questions/2094666/pointers-in-c-when-to-use-the-ampersand-and-the-asterisk#2094715]] @@ -18,3 +20,5 @@ title: C Language * [[Creating empty function macros|https://stackoverflow.com/questions/9187628/empty-function-macros]] --- only safe way is `#define SomeFunction(arg) ((void)0)` ** [[C macros, what's the meaning of ((void)0)?|https://stackoverflow.com/questions/61157541/c-macros-whats-the-meaning-of-void0]] * [[How to use "else if" with the preprocessor #ifdef?|https://stackoverflow.com/questions/68696585/how-to-use-else-if-with-the-preprocessor-ifdef]] --- the only widely-supported way is: `#if defined(X)`...`#elif defined(Y)`...`#else`...`#endif` + +* [[How to enforce C89-style variable declarations in gcc?|https://stackoverflow.com/questions/3099813/how-to-enforce-c89-style-variable-declarations-in-gcc#3099874]] --- for some things of this goal, just the flags `-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wdeclaration-after-statement` are needed, I would guess. diff --git a/Wiki-OcttKB/tiddlers/Normal/_Data corruption.tid b/Wiki-OcttKB/tiddlers/Normal/_Data corruption.tid new file mode 100644 index 0000000..8781c2c --- /dev/null +++ b/Wiki-OcttKB/tiddlers/Normal/_Data corruption.tid @@ -0,0 +1,14 @@ +created: 20231106225648497 +creator: Octt +modified: 20231106232222100 +modifier: Octt +tags: +title: Data corruption + +<<^wikipediaframe "Data corruption">> + +* <> + +* <> + +* a set of [[Cursed Games|https://redscientist.com/optional/cursed]] --- //"Cursed Games" are modified games which underwent cursification via manual/algorithmic asset modification and data corruption.// diff --git a/Wiki-OcttKB/tiddlers/Normal/_Data recovery.tid b/Wiki-OcttKB/tiddlers/Normal/_Data recovery.tid new file mode 100644 index 0000000..b49ff05 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/Normal/_Data recovery.tid @@ -0,0 +1,10 @@ +created: 20231106235418371 +creator: Octt +modified: 20231106235541279 +modifier: Octt +tags: +title: Data recovery + +<<^wikipediaframe "Data recovery">> + +* [[CGSecurity Wiki|https://www.cgsecurity.org/wiki/Main_Page]] --- home of the TestDisk and PhotoRec programs, plus some other tools and documentation diff --git a/Wiki-OcttKB/tiddlers/Normal/_Gaming.tid b/Wiki-OcttKB/tiddlers/Normal/_Gaming.tid index 8ea6b08..f633452 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Gaming.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Gaming.tid @@ -1,6 +1,6 @@ created: 20230116202756249 creator: Octt -modified: 20231104000058047 +modified: 20231106225613090 modifier: Octt tags: $:/i18n:en title: Gaming @@ -14,3 +14,5 @@ title: Gaming * [[GameSnacks|https://gamesnacks.com/]] --- //Play Bite-Sized HTML5 Games for Mobile and Desktop// --- mostly trashy games but some are decent, also there are no ads apparently? * [[Free Game Planet|https://www.freegameplanet.com/]] --- //All The Best Free Video Games With New Additions Every Day// ** [[Alpha Beta Gamer|https://www.alphabetagamer.com/]] --- //Free Video Game Alpha & Beta Tests. The Worlds Biggest Beta Testing Site// + +* [[Attract Mode (Concept)|https://www.giantbomb.com/attract-mode/3015-1641/]] --- //A mode in which a game will play a gameplay demonstration video as a means to entice players into playing the game.// diff --git a/Wiki-OcttKB/tiddlers/Normal/_Linux.tid b/Wiki-OcttKB/tiddlers/Normal/_Linux.tid index 24ca23c..668fda5 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Linux.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Linux.tid @@ -1,7 +1,7 @@ created: 20230111153758951 creator: Octt icon: 🐧 -modified: 20231027110415527 +modified: 20231106235715753 modifier: Octt page-cover: https://images.unsplash.com/photo-1549605659-32d82da3a059?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D tags: $:/i18n:en Unix @@ -41,6 +41,7 @@ title: Linux * [[Paul Raspberry Pi Benchmarks|https://willy-tech.de/raspberry-pi-benchmarks/]] -!!! ''Troubleshooting'' +!!! ''Troubleshooting, practical guides'' * [[cannot mount /dev/loop1 read-only|https://serverfault.com/questions/839898/cannot-mount-block-device-dev-loop-read-only]] --- Filesystem might have a dirty log, using `-o norecovery` can still mount it readonly. +* [[How to take back control of /etc/resolv.conf on Linux|https://www.ctrl.blog/entry/resolvconf-tutorial.html]] --- //Several DNS-related programs want to automatically manage the DNS name server and resolution configuration file at `/etc/resolv.conf`. In some situations, you may want to manage this file yourself.// diff --git a/Wiki-OcttKB/tiddlers/Normal/_Virtual reality.tid b/Wiki-OcttKB/tiddlers/Normal/_Virtual reality.tid new file mode 100644 index 0000000..6bba3e3 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/Normal/_Virtual reality.tid @@ -0,0 +1,12 @@ +created: 20231106230244142 +creator: Octt +modified: 20231106231120012 +modifier: Octt +tags: +title: Virtual reality + +<<^wikipediaframe "Virtual reality">> + +* <> +** [[Web2VR|https://github.com/kikoano/web2vr]] --- //Dynamically translate HTML and CSS to A-Frame 3D world for virtual reality.// +** <> diff --git a/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta b/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta index 0fd9215..07bb873 100644 --- a/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta +++ b/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta @@ -1,5 +1,5 @@ -created: 20231106003639976 +created: 20231106235806127 current-tiddler: GettingStarted -modified: 20231106003639976 +modified: 20231106235806127 title: $:/HistoryList type: application/json \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/_StoryList.tid b/Wiki-OcttKB/tiddlers/System/_StoryList.tid index 1268d9f..ee76875 100644 --- a/Wiki-OcttKB/tiddlers/System/_StoryList.tid +++ b/Wiki-OcttKB/tiddlers/System/_StoryList.tid @@ -1,6 +1,6 @@ -created: 20231105234412202 +created: 20231106225148095 creator: Octt list: -modified: 20231106003311163 +modified: 20231106235634271 modifier: Octt title: $:/StoryList \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid b/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid index 0397fe4..eefde59 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid @@ -1,6 +1,6 @@ created: 20220920092307479 creator: Octt -modified: 20231106001548724 +modified: 20231106235736864 modifier: Octt title: $:/state/tab/sidebar--595412856