mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-04-12 14:41:12 +02:00
OcttKB Cross-Repo Sync (HTML to Raw)
This commit is contained in:
parent
2e676dcf39
commit
ff8952fcdf
@ -1,14 +1,15 @@
|
||||
created: 20230429190335486
|
||||
creator: Octt
|
||||
modified: 20231029001624412
|
||||
modified: 20231029134807371
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Saved/Sites/Development
|
||||
|
||||
Saved sites that are mainly about development (mainly devlogs).
|
||||
Saved sites that are mainly about development (mainly devlogs or tips+tricks).
|
||||
|
||||
Note: some are in [[Development/Resources]].
|
||||
|
||||
* [[cpprograms|https://cpprograms.net/]]
|
||||
* [[Dustin John Pfister|https://dustinpfister.github.io/]]
|
||||
* [[Jack's AutoHotkey Blog|https://jacks-autohotkey-blog.com/]] --- //Feed Your Brain While Adding Power to Your Windows Computers//
|
||||
* [[ZetCode|https://zetcode.com/]] - //accessible tutorials for various languages//
|
||||
|
@ -1,10 +1,11 @@
|
||||
created: 20230307215116937
|
||||
creator: Octt
|
||||
modified: 20230307215737976
|
||||
modified: 20231029223445149
|
||||
modifier: Octt
|
||||
title: Saved/Games
|
||||
|
||||
List of some small games I liked, I must save them but don't know where.
|
||||
|
||||
* [[Pistol-Pong-DS|https://github.com/Jonatan6/Pistol-Pong-DS]] --- //It's like the classic game pong, but with guns.//
|
||||
* [[Rogule|https://rogule.com/]] - //A dungeon a day keeps the Balrog away// - <<[ "[[Git|https://github.com/chr15m/rogule.com]]">>
|
||||
* [[ZType|https://zty.pe/]] - //Typing Game//
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230223222804008
|
||||
creator: Octt
|
||||
modified: 20231029002857888
|
||||
modified: 20231029140010025
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Saved/Sites
|
||||
@ -29,7 +29,7 @@ Note: "[property]-leaning" means the majority of the content of the site, or the
|
||||
|
||||
!!! ''[[Book]]-leaning''
|
||||
* [[Ledom Software|https://ledomsoft.com]]
|
||||
* [[Hundred Rabbits|https://100r.co/]] --- <<[ "[[Git|https://github.com/hundredrabbits/100r.co]]">>
|
||||
* [[100R - Hundred Rabbits|https://100r.co/]] --- <<[ "[[Git|https://github.com/hundredrabbits/100r.co]]">>
|
||||
|
||||
!!! ''[[Gallery]]-leaning''
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20231029001701704
|
||||
creator: Octt
|
||||
modified: 20231029002636303
|
||||
modified: 20231029140602120
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: 6502
|
||||
@ -9,3 +9,6 @@ title: 6502
|
||||
|
||||
* <<httpL 6502.org>> --- //the 6502 microprocessor resource//
|
||||
* [[6502 Disassembly Projects|https://6502disassembly.com/]]
|
||||
|
||||
* [[6502 Assembly Crash Course [NesHacker]|https://www.youtube.com/playlist?list=PLgvDB6LWam2WvoFvh8tlUqbqw92qWM0aP]]
|
||||
* [[https://100r.co/site/6502_assembly.html]] --- Extremely reduced introduction to 6502 assembly basic concepts
|
||||
|
11
Wiki-OcttKB/tiddlers/Normal/_C Language.tid
Normal file
11
Wiki-OcttKB/tiddlers/Normal/_C Language.tid
Normal file
@ -0,0 +1,11 @@
|
||||
created: 20231029134919585
|
||||
creator: Octt
|
||||
modified: 20231029135726399
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: C Language
|
||||
|
||||
<<^wikipediaframe C_Language>>
|
||||
|
||||
* [[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 [...]//
|
@ -1,6 +1,6 @@
|
||||
created: 20230116211647194
|
||||
creator: Octt
|
||||
modified: 20230223215637591
|
||||
modified: 20231029225116302
|
||||
modifier: Octt
|
||||
tags: $:/i18n:en
|
||||
title: Emulation
|
||||
@ -9,14 +9,13 @@ title: Emulation
|
||||
|
||||
!! ''Resources''
|
||||
|
||||
* https://old.reddit.com/r/iosgaming/comments/tcdpr4/list_of_browser_based_emulators/
|
||||
* a <<RedditL r/iosgaming/comments/tcdpr4/list_of_browser_based_emulators/ "list of browser based emulators">>
|
||||
|
||||
!!! ''Web Sites''
|
||||
* [[Emulation General Wiki|https://emulation.gametechwiki.com]]
|
||||
|
||||
!!! ''Game Console Emulators''
|
||||
* https://github.com/EmulatorJS
|
||||
* https://github.com/44670/desmume-wasm
|
||||
* https://github.com/js-emulators/desmond
|
||||
* https://github.com/44670/44vba
|
||||
* https://github.com/skylersaleh/SkyEmu
|
||||
@ -30,6 +29,7 @@ title: Emulation
|
||||
* [[Bochs|https://bochs.sourceforge.io/]] - //IA-32 emulator// - <<[ "[[Git|https://github.com/bochs-emu/]]">>
|
||||
** <<GPlayLink net.sourceforge.bochs "Android port">> by lubomyr<<fnote "The same developer also has other various emulators">> - Sources: [[Core|https://github.com/lubomyr/bochs]], [[GUI|https://github.com/lubomyr/BochsLauncher]]
|
||||
* [[PCem|https://pcem-emulator.co.uk/]] - IBM PC emulator with focus on emulation of infinite hardware components - <<[ "[[Git|https://github.com/sarah-walker-pcem/pcem]]">>
|
||||
** [[86Box|https://86box.net/]] --- a sometimes more recommended fork --- <<[# Git "https://github.com/86Box">>
|
||||
|
||||
!!! ''Linux Emulators''
|
||||
* [[WebVM|https://webvm.io]] - //Linux virtualization for the Web, in WebAssembly// - <<[ "[[Git|https://github.com/leaningtech/webvm]]">>
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20220923110724649
|
||||
creator: Octt
|
||||
modified: 20230206111552230
|
||||
modified: 20231029225136809
|
||||
modifier: Octt
|
||||
tags: Gaming Nintendo NDS Console $:/i18n:en
|
||||
title: Nintendo DS
|
||||
@ -10,3 +10,11 @@ title: Nintendo DS
|
||||
<<LImg "https://web.archive.org/web/20220923111238/http://pbs.twimg.com/media/E5An_LGVkAQv9ol?format=jpg&name=large" "https://twitter.com/HugeNintendoDS/status/1409670660402466819?cxt=HHwWhsCiueb_k5AnAAAA">>
|
||||
|
||||
<<^wikipediaframe "Nintendo DS">>
|
||||
|
||||
!!! Emulators
|
||||
|
||||
...WIP
|
||||
|
||||
* DeSmuMe
|
||||
** * https://github.com/44670/desmume-wasm
|
||||
* [[NooDS|https://github.com/Hydr8gon/NooDS]] --- //A (hopefully!) speedy DS emulator.//
|
||||
|
@ -1,8 +1,10 @@
|
||||
created: 20230202110726082
|
||||
creator: Octt
|
||||
modified: 20231022225123579
|
||||
modified: 20231029224711694
|
||||
modifier: Octt
|
||||
tags: Gaming Sony Console $:/i18n:en WIP
|
||||
title: PlayStation Portable
|
||||
|
||||
<<^wikipediaframe PlayStation_Portable en>>
|
||||
<<^wikipediaframe PlayStation_Portable en>>
|
||||
|
||||
* [[PPSSPP|https://www.ppsspp.org]] --- <<[# Git "https://github.com/hrydgard/ppsspp">>
|
||||
|
@ -1,5 +1,5 @@
|
||||
created: 20231029003844176
|
||||
created: 20231029235335653
|
||||
current-tiddler: GettingStarted
|
||||
modified: 20231029003844176
|
||||
modified: 20231029235335653
|
||||
title: $:/HistoryList
|
||||
type: application/json
|
@ -1,6 +1,6 @@
|
||||
created: 20231029001339232
|
||||
created: 20231029133444147
|
||||
creator: Octt
|
||||
list:
|
||||
modified: 20231029003718059
|
||||
modified: 20231029225230080
|
||||
modifier: Octt
|
||||
title: $:/StoryList
|
@ -1,6 +1,6 @@
|
||||
created: 20220920140732083
|
||||
creator: Octt
|
||||
modified: 20231029001715612
|
||||
modified: 20231029134926936
|
||||
modifier: Octt
|
||||
title: $:/state/showeditpreview
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20220920174307633
|
||||
creator: Octt
|
||||
modified: 20230823100807042
|
||||
modified: 20231025052608945
|
||||
modifier: Octt
|
||||
title: $:/state/sidebar
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
created: 20220920090405977
|
||||
creator: Octt
|
||||
modified: 20230928233100670
|
||||
modified: 20231029225255203
|
||||
modifier: Octt
|
||||
title: $:/state/tab-1749438307
|
||||
|
||||
$:/core/ui/ControlPanel/Info
|
||||
$:/core/ui/ControlPanel/Saving
|
@ -1,6 +1,6 @@
|
||||
created: 20220920092307479
|
||||
creator: Octt
|
||||
modified: 20231029003721818
|
||||
modified: 20231029144452242
|
||||
modifier: Octt
|
||||
title: $:/state/tab/sidebar--595412856
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user