OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
octospacc 2023-11-11 00:10:10 +00:00
parent e38588d1ce
commit 8f2174297c
19 changed files with 50 additions and 31 deletions

View File

@ -1,8 +0,0 @@
created: 20230124213630708
creator: Octt
modified: 20230206204135834
modifier: Octt
tags: $:/i18n:en Game
title: 3D Pinball:en
<<iFrame "https://en.wikipedia.org/wiki/Full_Tilt!_Pinball#3D_Pinball_for_Windows_%E2%80%93_Space_Cadet">>

View File

@ -1,12 +1,12 @@
created: 20221006205957260
creator: Octt
modified: 20230823100340850
modified: 20231110235603003
modifier: Octt
tags: Development Gaming $:/i18n:en
title: Development/Resources/Games
<<^wikipediaframe "Video game development">>
* [[Godot Engine|https://godotengine.org/]] - [[[Git|https://github.com/godotengine]]]
* <<linkdescgit "Godot Engine" "https://godotengine.org" "feature-packed, cross-platform game engine to create 2D and 3D games from a unified interface" "https://github.com/godotengine">>
* [[raylib|https://www.raylib.com/]] - //simple and easy-to-use library to enjoy videogames programming// - [[[Git|https://github.com/raysan5]]]
* [[[PICO-8] Advanced Micro Platformer - Starter Kit|https://www.lexaloffle.com/bbs/?tid=28793]]

View File

@ -1,6 +1,6 @@
created: 20230429190335486
creator: Octt
modified: 20231107235701129
modified: 20231110233917733
modifier: Octt
tags:
title: Saved/Sites/Development
@ -20,4 +20,5 @@ Note: the most technically useful ones might be listed under [[Development/Resou
* [[null program (Chris Wellons)|https://nullprogram.com/]]
* [[Shiru's Stuff|https://shiru.untergrund.net/index.shtml]]
* <<linkdescgit SkyLyrac"https://www.skylyrac.net" "Hacking, software projects and my thoughts" "https://github.com/AntonioND/antoniond.github.io">>
* [[Zenithia|https://zenithsal.com/]] --- //Indie Game developer. Loves retro tech, making 8-bit music, motorcycles.//
* [[ZetCode|https://zetcode.com/]] - //accessible tutorials for various languages//

View File

@ -1,6 +1,6 @@
created: 20230223222804008
creator: Octt
modified: 20231106235343752
modified: 20231110235426388
modifier: Octt
tags:
title: Saved/Sites
@ -26,6 +26,7 @@ Note: "[property]-leaning" means the majority of the content of the site, or the
* [[Read the Tea Leaves|https://nolanlawson.com/]] --- //Software and other dark arts, by Nolan Lawson//
* [[λ ryan. himmelwright. net|https://ryan.himmelwright.net/]]
* [[Simon Willisons Weblog|https://simonwillison.net/]] --- <<[ "[[Git|https://github.com/simonw/simonwillisonblog]]">>
* [[Stephan Wagner|https://stephanwagner.me/]]
* [[There oughta be...|https://there.oughta.be/]] --- //A collection of overcomplicated devices nobody needs//
* [[things i play|https://thingsiplay.game.blog/]] --- //My take on Gaming, Emulation and Steam related stuff on Linux//
* [[Val Packett|https://val.packett.cool/]]
@ -60,6 +61,7 @@ These are kind of blogs, but don't contain mainly things written as blogs, but m
* [[rdpillon|https://rpdillon.net/]] --- //Rick's Home Online//
* Show Notes from the [[Open Source is Awesome|https://opensourceisawesome.com/]] Youtube Channel
* <<linkdescgit SvennD "https://svennd.be/" "Linux Sysadmin and Cyber Security Professional. This blog is mainly self-documenting. May my poorly written notes help you, dear DenverCoder9!" "https://github.com/svennd/blog">>
* [[Vincent Young Notes (missuo.me)|https://missuo.me/]] --- <<#[ Git "https://github.com/missuo/missuo.github.io">>
!!! ''[[Wiki]]-leaning''
* [[WikiHands|https://wikihands.github.io]]

View File

@ -1,7 +1,7 @@
created: 20230110225425199
creator: Octt
icon: 🍃
modified: 20230916153412702
modified: 20231111000325649
modifier: Octt
page-cover: https://source.unsplash.com/random?Animal_Crossing
tags: Nintendo $:/i18n:en Game Proprietary
@ -29,6 +29,7 @@ I can't for example really play Japan festivities because only the Japan ROM inc
!!! ''Resources''
* [[Decompilation of Animal Forest (zeldaret)|https://github.com/zeldaret/af]]
* [[ac-decomp|https://github.com/Prakxo/ac-decomp]] --- //Decompilation in progress of Animal Crossing for the Nintendo GameCube//
* [[marcrobledo acnl-editor|https://www.marcrobledo.com/acnl-editor/]] --- //An Animal Crossing: New Leaf savegame editor made in HTML5// --- <<#[ Git "https://github.com/marcrobledo/acnl-editor">>

View File

@ -1,6 +1,6 @@
created: 20231029134919585
creator: Octt
modified: 20231109235401310
modified: 20231110234423621
modifier: Octt
tags:
title: C Language
@ -14,6 +14,7 @@ title: C Language
* [[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]]
** Related: [[error: invalid type argument of unary * (have int)|https://stackoverflow.com/questions/5455866/error-invalid-type-argument-of-unary-have-int#5455962]], this happens when using `*` against a value instead of a pointer, since you can't dereference a value from a value.
* [[What is a "callback" in C and how are they implemented?|https://stackoverflow.com/questions/142789/what-is-a-callback-in-c-and-how-are-they-implemented/142809#142809]] (function pointers)
** [['declared as a function' in C|https://stackoverflow.com/questions/23329261/declared-as-a-function-in-c#23329274]] --- function pointers in structs must be declared with the syntax `type (functionName*)( type arg1, ... )`
* [[Where should I prefer pass-by-reference or pass-by-value?|https://stackoverflow.com/questions/4986341/where-should-i-prefer-pass-by-reference-or-pass-by-value]] --- (performance-wise) //"here's the simple rule: pass by reference when the value is large."//
** [[When should I pass or return a struct by value?|https://stackoverflow.com/questions/30980759/when-should-i-pass-or-return-a-struct-by-value]]

View File

@ -1,6 +1,6 @@
created: 20221110145611678
creator: Octt
modified: 20231109000419620
modified: 20231111000917482
modifier: Octt
tags: Development $:/i18n:en Web
title: JavaScript
@ -25,6 +25,7 @@ title: JavaScript
* [[Get a random item from a JavaScript array|https://stackoverflow.com/questions/5915096/get-a-random-item-from-a-javascript-array#5915122]] --- `item = items[Math.floor(Math.random() * items.length)];`
* [[How to get text from all descendents of an element (disregarding scripts)?|https://stackoverflow.com/questions/2532043/how-to-get-text-from-all-descendents-of-an-element-disregarding-scripts]]
* [[Simplest code for array intersection in javascript|https://stackoverflow.com/questions/1885557/simplest-code-for-array-intersection-in-javascript#1885569]] --- `arrayNew = array1.filter(value => array2.includes(value));`
* [[Converting HTML string into DOM elements?|https://stackoverflow.com/questions/3103962/converting-html-string-into-dom-elements#3104237]] --- `doc = new DOMParser().parseFromString(htmlString, 'text/html')`
* [[Array.prototype.splice()|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice]], [[JavaScript Array splice() (W3S)|https://www.w3schools.com/jsref/jsref_splice.asp]] --- //changes the contents of an array by removing or replacing existing elements and/or adding new elements in place//
* <<MDNLink Web/JavaScript/Reference/Global_Objects/Array/concat "Array.prototype.concat()">> --- //used to merge two or more arrays, does not change the existing arrays but instead returns a new one//

View File

@ -0,0 +1,14 @@
created: 20231110234001250
creator: Octt
modified: 20231110234214295
modifier: Octt
tags: Game
title: Pinball
<<^wikipediaframe Pinball>>
!! 3D Pinball --- Space Cadet
<<^wikipediaframe Full_Tilt!_Pinball#3D_Pinball_for_Windows_%E2%80%93_Space_Cadet>>
* [[SpaceCadetPinball|https://github.com/k4zmu2a/SpaceCadetPinball]] --- //Decompilation of 3D Pinball for Windows Space Cadet//

View File

@ -1,6 +1,6 @@
created: 20221102121324531
creator: Octt
modified: 20231107225357280
modified: 20231110235957848
modifier: Octt
tags: Emulation Retro $:/i18n:en Gaming
title: Retrogaming
@ -19,5 +19,6 @@ title: Retrogaming
!!! ''Misc''
* <<linkdescgit "RetroReversing" "https://www.retroreversing.com/" "Awesome website for reverse engineering retro games" "https://github.com/RetroReversing">>
* [[Decompiled Retail Console Games [Retro Reversing]|https://www.retroreversing.com/source-code/decompiled-retail-console-games]]
* [[retrobrews|https://retrobrews.github.io]] --- //Free game collections for easy installing/playing on RetroPie// (abandoned?)

View File

@ -1,11 +1,13 @@
created: 20231103223458206
creator: Octt
modified: 20231110000947340
modified: 20231110234805798
modifier: Octt
title: Simple DirectMedia Layer
<<^wikipediaframe "Simple DirectMedia Layer">>
* [[SDL_Keycode|https://wiki.libsdl.org/SDL2/SDL_Keycode]] --- list of macros representing keyboard scancodes and keycodes, for use with `SDL_GetKeyState()`(1.2)/`SDL_GetKeyboardState()`(2.0) and `SDL_PollEvent(&event)`...`event.key.keysym.sym == ...` respectively
* [[Lazy Foo' Productions - SDL 1.2 tutorial |https://lazyfoo.net/SDL_tutorials/]] --- Beginning Game Programming in C++
* [[Getting Started With SDL 1.2|http://gamedevgeek.com/tutorials/getting-started-with-sdl/]] ; [[Moving Sprites With SDL 1.2|http://gamedevgeek.com/tutorials/moving-sprites-with-sdl/]] ; [[Animating Sprites With SDL|http://gamedevgeek.com/tutorials/animating-sprites-with-sdl/]]
* [[Exploring SDL (Wikibooks)|https://en.wikibooks.org/wiki/SDL_(Simple_DirectMedia_Layer)]] --- introduction to SDL with the most important basic information, + some WIP examples

View File

@ -1,6 +1,6 @@
created: 20231024225405083
creator: Octt
modified: 20231105002646839
modified: 20231110235801068
modifier: Octt
tags: Nintendo
title: Wii
@ -12,4 +12,6 @@ title: Wii
* <<linkdescgit "Open Shop Channel""https://oscwii.org" "Homebrew apps library for the Nintendo Wii." "https://github.com/OpenShopChannel">>
* [[The Homebrew Channel - open source edition|https://github.com/fail0verflow/hbc]]
** "[[The (Open) Homebrew Channel|https://hackmii.com/2016/11/the-open-homebrew-channel/]]" (article)
* <<linkdesc "USB Loader GX" "https://github.com/wiidev/usbloadergx" "allows you to play Wii and GameCube games from a USB storage device or an SD card, launch other homebrew apps, create backups, use cheats in games...">>

View File

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

View File

@ -1,6 +1,6 @@
created: 20231109235127206
created: 20231110114823646
creator: Octt
list:
modified: 20231110002611621
modified: 20231111000605186
modifier: Octt
title: $:/StoryList

View File

@ -1,5 +1,7 @@
created: 20220920161126651
modified: 20220920161139099
creator: Octt
modified: 20231110115023937
modifier: Octt
title: $:/config/AnimationDuration
128
80

View File

@ -1,7 +1,7 @@
created: 20220920090533937
creator: Octt
modified: 20230504092704638
modified: 20231110114944899
modifier: Octt
title: $:/state/tab--1963855381
$:/themes/tiddlywiki/vanilla/themetweaks
$:/core/ui/ControlPanel/Palette

View File

@ -1,6 +1,6 @@
created: 20220920090438306
creator: Octt
modified: 20230725105920958
modified: 20231110114859307
modifier: Octt
title: $:/state/tab--2112689675

View File

@ -1,7 +1,7 @@
created: 20220920090405977
creator: Octt
modified: 20231107201304760
modified: 20231110114957116
modifier: Octt
title: $:/state/tab-1749438307
$:/core/ui/ControlPanel/Appearance
$:/core/ui/ControlPanel/Info

View File

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

View File

@ -1,6 +1,6 @@
created: 20221108100116751
creator: Octt
modified: 20231105101052846
modified: 20231110114829674
modifier: Octt
title: $:/state/tree/$:/plugins/