Skip to content

Commit

Permalink
OcttKB Cross-Repo Sync (HTML to Raw)
Browse files Browse the repository at this point in the history
  • Loading branch information
octospacc committed Nov 19, 2023
1 parent 4d90f12 commit 8fb5d80
Show file tree
Hide file tree
Showing 14 changed files with 68 additions and 15 deletions.
4 changes: 3 additions & 1 deletion Wiki-OcttKB/tiddlers/Normal/Saved/Sites/_Development.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20230429190335486
creator: Octt
modified: 20231119010917310
modified: 20231119144421755
modifier: Octt
tags:
title: Saved/Sites/Development
Expand All @@ -19,6 +19,8 @@ Note: the most technically useful ones, or the non-too-personal ones, might be l
** TiddlyWiki: [[Standard|https://onetwo.ren/wiki/]], [[Prerelease|https://wiki.onetwo.ren/]] --- //knowledge base mainly used to store text memes that Lin Yier encounters by chance, as well as to replace his various thoughts posted in Weibo Moments, and as a directory to pile up online content to be sorted out during the exploration process//
* [[Krzysztof Kowalczyk|https://blog.kowalczyk.info/]] --- design and implementation of software
* [[null program (Chris Wellons)|https://nullprogram.com/]]
* [[Patater|https://www.patater.com/]] --- has a lot of retrodevelopment projects and resources, especially NDS
** [[GBAGuy's Lair Patater Mirror|https://www.patater.com/gbaguy/]] --- notes on some retrodevelopment
* [[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">>
* [[UTF-8.jp|https://utf-8.jp/]]
Expand Down
9 changes: 8 additions & 1 deletion Wiki-OcttKB/tiddlers/Normal/Saved/_Games.tid
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
created: 20230307215116937
creator: Octt
modified: 20231029223445149
modified: 20231119163200980
modifier: Octt
tags: Game
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.//
** //[[Handheld Pong, now with firearms! (Pistol Pong DS)|https://gamingshitposting.github.io/naplesnds/2023/10/01/pistol-pong-ds.html]]//

* [[Project DS|https://github.com/Hydr8gon/Project-DS]] --- //Project DIVA for the DS!//
** //<<YoutubeL ZQ4uYyCW7aA "Project DIVA on DS - Tutorial and Second Demo">>//
** [[Pre-packaged version by Nullbyt on archive.org|https://archive.org/details/project-ds]] (//This upload contains the AFT charts and songs already converted and ready to play//)

* [[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//
5 changes: 3 additions & 2 deletions Wiki-OcttKB/tiddlers/Normal/Unix/_Shell.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20230605214923345
creator: Octt
modified: 20230725114604938
modified: 20231119150258479
modifier: Octt
tags:
title: Unix/Shell
Expand All @@ -15,6 +15,7 @@ title: Unix/Shell
* [[Split string with symbol|https://stackoverflow.com/a/10638555]]
* [[How to find the last field using 'cut'|https://stackoverflow.com/questions/22727107/how-to-find-the-last-field-using-cut]] --- `echo 'maps.google.com' | rev | cut -d'.' -f 1 | rev`
* [[Check if a string begins with some value|https://stackoverflow.com/questions/2172352/in-bash-how-can-i-check-if-a-string-begins-with-some-value#18558871]] --- `beginswith(){ case $2 in "$1"*) true;; *) false;; esac; }`
* [[How can I remove the extension of a filename in a shell script?|https://stackoverflow.com/questions/12152626/how-can-i-remove-the-extension-of-a-filename-in-a-shell-script]]
* [[Remove the extension of a filename, get filename path, ... using POSIX's built-in script only|https://gist.github.com/nimula/385938957bb96234aa62abc6ed8f950e]]
** [[How can I remove the extension of a filename in a shell script?|https://stackoverflow.com/questions/12152626/how-can-i-remove-the-extension-of-a-filename-in-a-shell-script]]

* "error: arithmetic expression: expecting primary"... --- happens when calling an arithmetic expression (e.g. `$(( 5 * 7 ))`) with a missing parameter, or with quotes, in `sh`; `bash` accepts quotes and doesn't error instead. Don't use quotes in mathexps in `sh`.
10 changes: 10 additions & 0 deletions Wiki-OcttKB/tiddlers/Normal/_Assembly language.tid
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
created: 20231119143717311
creator: Octt
modified: 20231119143843428
modifier: Octt
tags:
title: Assembly language

<<^wikipediaframe "Assembly language">>

* [[armips assembler|https://github.com/Kingcom/armips]] --- //assembler for various ARM and MIPS platforms//
6 changes: 5 additions & 1 deletion Wiki-OcttKB/tiddlers/Normal/_Development.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20230613185754543
creator: Octt
modified: 20231119005140633
modified: 20231119164716153
modifier: Octt
tags:
title: Development
Expand All @@ -22,3 +22,7 @@ title: Development
* [[Replit: The software creation platform. IDE, AI, and Deployments|https://replit.com/]]
** [[Repl.it Offline|https://web.archive.org/web/20230330151345/https://offline.repl.it/]] (joke) --- //Repl.it's most requested feature has finally come: an offline, local-first IDE.//
*** [[We still get mailed code and we still mail back outputs in case you thought we stopped https://offline.repl.it|https://web.archive.org/web/20230129101236/https://twitter.com/amasad/status/1442672024397045761]]

* [[GPL and Linking Exceptions|https://opensource.stackexchange.com/questions/14122/gpl-and-linking-exceptions]]
** //You can use LGPLv3 with the [[LGPL-3.0-linking-exception|https://spdx.org/licenses/LGPL-3.0-linking-exception.html]]//
* [[What does "GPL with classpath exception" mean in practice?|https://softwareengineering.stackexchange.com/questions/119436/what-does-gpl-with-classpath-exception-mean-in-practice]]
13 changes: 13 additions & 0 deletions Wiki-OcttKB/tiddlers/Normal/_Minigame.tid
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
created: 20231119163134278
creator: Octt
modified: 20231119163812997
modifier: Octt
tags:
title: Minigame

<<^wikipediaframe Minigame>>

* See [[Microgame|https://www.mariowiki.com/Microgame]] for the WarioWare kind
** [[Dumb Ways to Die|https://www.dumbwaystodie.com/]], mobile microgames collection with minimalist graphics
*** HTML5 builds playable: [[Original (1)|https://www.crazygames.com/game/dumb-ways-to-die-original]], [[2|https://www.crazygames.com/game/dumb-ways-to-die-2-the-games]]
** [[NitorInc.: Touhou Microgames collaborative project|https://nitorincmicro.games/]] --- //Fast-paced, crazy fun microgames with your favorite Touhou characters! And YOU can help make them!// --- <<[# Git"https://github.com/NitorInc">>
14 changes: 14 additions & 0 deletions Wiki-OcttKB/tiddlers/Normal/_PlayStation 1.tid
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
created: 20231119143345968
creator: Octt
modified: 20231119150037031
modifier: Octt
tags: Gaming Console
title: PlayStation 1

<<^wikipediaframe "PlayStation 1">>

* [[PlayStation Bare Metal Mips Assembly Programming Code Examples by krom|https://github.com/PeterLemon/PSX]]

!!! Emulators, Debuggers

* [[no$psx|https://problemkaputt.de/psx.htm]] --- //nocash Playstation PSone emulator and debugger by martin korth//, + resources
4 changes: 2 additions & 2 deletions Wiki-OcttKB/tiddlers/Normal/_Simple DirectMedia Layer.tid
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
created: 20231103223458206
creator: Octt
modified: 20231110234805798
modified: 20231119155259356
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++
* Beginning Game Programming in C++ with Lazy Foo' Productions' tutorials for: [[v1, SDL 1.2|https://lazyfoo.net/SDL_tutorials/]] ; [[v2.0, SDL 2.0|https://lazyfoo.net/tutorials/SDL/index.php]]
* [[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

Expand Down
4 changes: 3 additions & 1 deletion Wiki-OcttKB/tiddlers/Normal/_phpBB.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20230818075833750
creator: Octt
modified: 20230919202644915
modified: 20231119152821235
modifier: Octt
tags: Forum
title: phpBB
Expand All @@ -12,6 +12,8 @@ title: phpBB

* [[How to Install phpBB with Nginx and MariaDB on Ubuntu Linux|https://geekrewind.com/install-phpbb-on-ubuntu-17-04-17-10-with-nginx-mariadb-and-php-support/]] --- Note: the `php-fpm` package might need to be installed by specifying version, and it's better to use [[phpBB's official nginx.sample.conf|https://github.com/phpbb/phpbb/blob/master/phpBB/docs/nginx.sample.conf]].

* [[phpBB Studio|https://phpbbstudio.com]] --- //Extension developers for phpBB//

!!! ''Extensions''

* [[Knowledge Base|https://www.phpbb.com/customise/db/extension/knowledge_base/]] --- //An extension for phpBB 3.1.x that adds a knowledge base to your board// --- <<[# Git "https://github.com/Crizz0/knowledgebase">>
Expand Down
4 changes: 2 additions & 2 deletions Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
created: 20231119011742148
created: 20231119164837589
current-tiddler: GettingStarted
modified: 20231119011742148
modified: 20231119164837589
title: $:/HistoryList
type: application/json
4 changes: 2 additions & 2 deletions Wiki-OcttKB/tiddlers/System/_StoryList.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20231118202801570
created: 20231119143316503
creator: Octt
list:
modified: 20231119011159640
modified: 20231119164751579
modifier: Octt
title: $:/StoryList
2 changes: 1 addition & 1 deletion Wiki-OcttKB/tiddlers/System/state/search/_currentTab.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20230501095944427
creator: Octt
modified: 20231117194319497
modified: 20231119164159453
modifier: Octt
title: $:/state/search/currentTab

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20220920092307479
creator: Octt
modified: 20231119011711644
modified: 20231119164727203
modifier: Octt
title: $:/state/tab/sidebar--595412856

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20230501095944427
creator: Octt
modified: 20231117194319498
modified: 20231119164159453
modifier: Octt
title: $:/state/tab/search-results/sidebar

Expand Down

0 comments on commit 8fb5d80

Please sign in to comment.