OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
octospacc 2023-11-06 23:58:12 +00:00
parent 0fc3660936
commit 6f668449b6
10 changed files with 55 additions and 11 deletions

View File

@ -1,13 +1,13 @@
created: 20230223222804008 created: 20230223222804008
creator: Octt creator: Octt
modified: 20231106000819012 modified: 20231106235343752
modifier: Octt modifier: Octt
tags: tags:
title: Saved/Sites 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. 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). 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]]">> * [[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// * [[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/]] * [[TheFrenchGhosty|https://thefrenchghosty.me/]]
* [[The Refined Mind|https://refinedmind.co/]] --- //This is my tiny plot on the internet where I share ideas in progress. Its my public workspace and an experiment in whats known as digital gardening.//
* [[wiki.nikiv.dev|https://wiki.nikiv.dev/]] --- <<[ "[[Git|https://github.com/nikitavoloboev/knowledge]]">> * [[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). ** [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]]">> * [[XXIIVV|https://wiki.xxiivv.com/]] --- <<[ "[[Git|https://github.com/XXIIVV/oscean]]">>

View File

@ -1,12 +1,14 @@
created: 20231029134919585 created: 20231029134919585
creator: Octt creator: Octt
modified: 20231105222349930 modified: 20231106232930161
modifier: Octt modifier: Octt
tags: tags:
title: C Language title: C Language
<<^wikipediaframe 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]] * [[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 [...]// * [[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]] * [[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)` * [[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]] ** [[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 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.

View File

@ -0,0 +1,14 @@
created: 20231106225648497
creator: Octt
modified: 20231106232222100
modifier: Octt
tags:
title: Data corruption
<<^wikipediaframe "Data corruption">>
* <<linkdescgit Corrupt.wiki"https://corrupt.wiki/" "The Corruptions Wiki" "https://github.com/redscientistlabs/corruption-wiki-media">>
* <<linkdescgit "RTCV - Real-Time Corruptor Vanguard" "https://redscientist.com/rtc" "Easily corrupt videogames and programs in real-time with this free open-source suite of corruption tools." "https://github.com/redscientistlabs/RTCV">>
* 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.//

View File

@ -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

View File

@ -1,6 +1,6 @@
created: 20230116202756249 created: 20230116202756249
creator: Octt creator: Octt
modified: 20231104000058047 modified: 20231106225613090
modifier: Octt modifier: Octt
tags: $:/i18n:en tags: $:/i18n:en
title: Gaming 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? * [[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// * [[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// ** [[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.//

View File

@ -1,7 +1,7 @@
created: 20230111153758951 created: 20230111153758951
creator: Octt creator: Octt
icon: 🐧 icon: 🐧
modified: 20231027110415527 modified: 20231106235715753
modifier: Octt modifier: Octt
page-cover: https://images.unsplash.com/photo-1549605659-32d82da3a059?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D page-cover: https://images.unsplash.com/photo-1549605659-32d82da3a059?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D
tags: $:/i18n:en Unix tags: $:/i18n:en Unix
@ -41,6 +41,7 @@ title: Linux
* [[Paul Raspberry Pi Benchmarks|https://willy-tech.de/raspberry-pi-benchmarks/]] * [[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. * [[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.//

View File

@ -0,0 +1,12 @@
created: 20231106230244142
creator: Octt
modified: 20231106231120012
modifier: Octt
tags:
title: Virtual reality
<<^wikipediaframe "Virtual reality">>
* <<linkdescgit A-Frame"https://aframe.io/" "🅰️ Web framework for building virtual reality experiences." "https://github.com/aframevr">>
** [[Web2VR|https://github.com/kikoano/web2vr]] --- //Dynamically translate HTML and CSS to A-Frame 3D world for virtual reality.//
** <<linkdescgit "Mozilla Hubs" "https://hubs.mozilla.com" "Duck-themed multi-user virtual spaces in WebVR. Built with A-Frame." "https://github.com/mozilla/hubs">>

View File

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

View File

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

View File

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