OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
octospacc 2023-11-19 01:17:48 +00:00
parent fca858fa61
commit 4d90f125a4
16 changed files with 58 additions and 21 deletions

View File

@ -1,6 +1,6 @@
created: 20230429190335486
creator: Octt
modified: 20231115234502683
modified: 20231119010917310
modifier: Octt
tags:
title: Saved/Sites/Development
@ -17,6 +17,7 @@ Note: the most technically useful ones, or the non-too-personal ones, might be l
* [[Jack's AutoHotkey Blog|https://jacks-autohotkey-blog.com/]] --- //Feed Your Brain While Adding Power to Your Windows Computers//
* [[Hey onetwo!|https://onetwo.ren/]] --- //林一二的开放记忆 | 关于前端_模因学_语义网_游戏开发_的博客 (Lin Yier's Open Memory | Blog about front-end, memetics, semantic web, game development)//
** 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/]]
* [[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">>

View File

@ -1,6 +1,6 @@
created: 20230223222804008
creator: Octt
modified: 20231115233721599
modified: 20231119005346413
modifier: Octt
tags:
title: Saved/Sites
@ -22,10 +22,12 @@ Note: "[property]-leaning" means the majority of the content of the site, or the
* [[koyu's personal website|https://web.koyu.space/]]
* [[l33t.codes|https://l33t.codes]] --- Nice emulated retro-style with CRT effects and monospace text of many colors.
* [[Lily's Things at The Cool Site|https://www.lilysthings.org/]]
* [[Lyosha Cluster (Лёша Кластер)|https://cluster.wtf/]]
* [[📚 Nitay Neeman's Blog|https://nitayneeman.github.io/]]
* [[P01✨ CREATIVE CODER & TECHNICAL SPEAKER|http://www.p01.org]]
* [[Read the Tea Leaves|https://nolanlawson.com/]] --- //Software and other dark arts, by Nolan Lawson//
* [[λ ryan. himmelwright. net|https://ryan.himmelwright.net/]]
* [[Sebastian Jambor's blog|https://seb.jambor.dev/]] --- software engineering, efficiency and other things
* [[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//

View File

@ -1,6 +1,6 @@
created: 20230613185754543
creator: Octt
modified: 20231111232150358
modified: 20231119005140633
modifier: Octt
tags:
title: Development
@ -16,6 +16,7 @@ title: Development
* [[Compilation and Installation using Autoconf|https://opensource.apple.com/source/X11libs/X11libs-60/mesa/Mesa-7.8.2/docs/autoconf.html]]
* [[What is the purpose of .PHONY in a Makefile?|https://stackoverflow.com/questions/2145590/what-is-the-purpose-of-phony-in-a-makefile]] --- TLDR: it's to declare "fake" targets that must build independently from actual files on disk (that make would otherwise use as targets), it doesn't mean "sound" or "pronunciation" or otherwise the full list of only allowed build targets, as I initially thought because of associating phony => telephony => ...
* [[Makefile Tutorial by Example|https://makefiletutorial.com]] --- //Learn Makefiles With the tastiest examples// --- <<[# Git"https://github.com/theicfire/makefiletutorial">>
* <<linkdescgit "Modern CMake" "https://cliutils.gitlab.io/modern-cmake/" "A book about using CMake for your projects" "https://gitlab.com/CLIUtils/modern-cmake">>
* [[Replit: The software creation platform. IDE, AI, and Deployments|https://replit.com/]]

View File

@ -1,12 +1,13 @@
created: 20230723224321237
creator: Octt
modified: 20230724223355093
modified: 20231119004236913
modifier: Octt
tags:
title: Electronics
<<^wikipediaframe Electronics>>
* [[The Nand Game|https://nandgame.com/]] --- //Welcome to The Nand Game! You are going to build a computer starting from basic components.//
* [[Polyfuses explained|https://elinux.org/Polyfuses_explained]]
* [[How to Solder|https://www.talkingelectronics.com/projects/Solder%20-%20How%20to/HowToSolder.html]]

View File

@ -1,6 +1,6 @@
created: 20221006205957260
creator: Octt
modified: 20231112235129459
modified: 20231119010213861
modifier: Octt
tags: Development Gaming $:/i18n:en
title: Game development
@ -12,5 +12,9 @@ title: Game development
* [[[PICO-8] Advanced Micro Platformer - Starter Kit|https://www.lexaloffle.com/bbs/?tid=28793]]
* <<YoutubeL rWtfClpWSb8 "Understanding framerate independence and deltatime">>
* [[Fix Your Timestep|https://gafferongames.com/post/fix_your_timestep/]] --- aka futile exercises in making games that run properly at a variable framerate, the only way that works is separating the game loop in 2 contexts, like [[in Unity|https://docs.unity3d.com/Manual/TimeFrameManagement.html]] (`FixedUpdate` and `Update`) or Godot (`_process` and `_physics_process`) --- <<HackernewsL 23649406>>
* [[Should frame rate affect the speed in a game engine?|https://gamedev.stackexchange.com/questions/12848/should-frame-rate-affect-the-speed-in-a-game-engine]]
** <<YoutubeL rWtfClpWSb8 "Understanding framerate independence and deltatime">>
** [[Fix Your Timestep|https://gafferongames.com/post/fix_your_timestep/]] --- aka futile exercises in making games that run properly at a variable framerate, the only way that works is separating the game loop in 2 contexts, like [[in Unity|https://docs.unity3d.com/Manual/TimeFrameManagement.html]] (`FixedUpdate` and `Update`) or Godot (`_process` and `_physics_process`) --- <<HackernewsL 23649406>>
*** [[what is the difference between Update & FixedUpdate in Unity?|https://stackoverflow.com/questions/34447682/what-is-the-difference-between-update-fixedupdate-in-unity]]
** [[Fixed vs. variable frame rates in games: what is best, and when?|https://stackoverflow.com/questions/53164/fixed-vs-variable-frame-rates-in-games-what-is-best-and-when]]
*** <<RedditL r/gamedesign/comments/btjj2w/frame_dependency_in_games/ "Frame dependency in games">>

View File

@ -0,0 +1,10 @@
created: 20231119004553704
creator: Octt
modified: 20231119004722405
modifier: Octt
tags: Gaming
title: Gaming console
<<^wikipediaframe "Gaming console">>
* [[Console Protocols|https://sites.google.com/site/consoleprotocols/]] --- //site dedicated to the accurate documentation of protocols used to communicate with and inside of game consoles//

View File

@ -1,8 +1,10 @@
created: 20231107222148927
creator: Octt
modified: 20231107222503536
modified: 20231119010650604
modifier: Octt
tags: [[Nintendo Entertainment System]] Homebrew
tags: [[Nintendo Entertainment System]] Homebrew Game
title: NES Homebrew Games
* [[NES Homebrew Games itch.io collection by John Vanderhoef|https://itch.io/c/632436/nes-homebrew-games]]
* <<linkdescgit "Super Tilt Bro" "https://sgadrat.itch.io/super-tilt-bro" "Super Tilt Bro is a demake of the Super Smash Bros. series compatible with the good old Nintendo Entertainment System from the 1980s. Featuring online play, thanks to a Wi-Fi chip in the cartridge!" "https://github.com/sgadrat/super-tilt-bro">>

View File

@ -1,6 +1,6 @@
created: 20230202104823127
creator: Octt
modified: 20231110001404551
modified: 20231119011705431
modifier: Octt
tags: Nintendo Gaming $:/i18n:en Console
title: Nintendo Entertainment System
@ -12,6 +12,8 @@ title: Nintendo Entertainment System
* <<YoutubeL bfJzJOQqsDk "Pushing The Limits of the NES: Amazing Hacks That Made NES Games Possible [Sharopolis]">>
* [[NES (Famicom) Development Kit Hardware [Retro Reversing]|https://www.retroreversing.com/famicom-nes-development-kit/]]
* (Playlists of) [[Some NES Multicarts Music|https://www.youtube.com/playlist?list=PLP3KtH7oe6jVGoqvVgKldhrYn8q9pxx44]] ; [[NES/Famicom Multicarts Music Remake Video|https://www.youtube.com/playlist?list=PLP3KtH7oe6jUNno7Y2xjeTVIvTy9ig9Hp]]
* [[NesDev.org|https://www.nesdev.org/]] --- //Info, programs, and more//
* [[Nintendo Entertainment System Documentation|https://www.nesdev.org/NESDoc.pdf]]
* <<httpL nes.science>> --- //home to a bunch of random NES stuff// and useful archives
@ -22,6 +24,9 @@ title: Nintendo Entertainment System
* [[NES Programming [Wikibooks]|https://en.wikibooks.org/wiki/NES_Programming]] --- an extremely WIP resource on the matter as of 2023/11, but it's worth for it being just a concise list of specs and memory layout
* General [[Useful tools for NES development|https://www.nesdev.org/wiki/Tools]]
** [[FamiStudio|https://famistudio.org/]] --- //very simple music editor for NES/Famicom targeted at both chiptune artists and NES homebrewers// --- <<[# Git"https://github.com/BleuBleu/FamiStudio">>
** FamiTracker: after official development ceased and website died, see <<RedditL r/famitracker/comments/n97ve9/where_do_i_download_famitracker/ "Where do I download famitracker?">>
*** apparently, current best fork is [[Dn-Famitracker|https://github.com/Dn-Programming-Core-Management/Dn-FamiTracker]]
** [[nixel|https://alexpate.net/nixel/]] --- web editor for CHRs inside NES ROMs with a good UX
** [[NEXXT|https://frankengraphics.itch.io/nexxt]] --- //Featureful NES assets studio based off the classic "NES Screen Tool". It's the "famitracker" of NES graphics.// (sources included)

View File

@ -0,0 +1,10 @@
created: 20231118204300272
creator: Octt
modified: 20231118204419850
modifier: Octt
tags:
title: Window manager
<<^wikipediaframe "Window manager">>
* [[vtm|https://github.com/directvt/vtm]] --- //virtual terminal multiplexer//

View File

@ -1,6 +1,6 @@
created: 20230207213320932
creator: Octt
modified: 20231105004301241
modified: 20231118203412795
modifier: Octt
tags: Microsoft Proprietary OS
title: Windows
@ -19,6 +19,7 @@ title: Windows
** [[One-Core-API|https://github.com/Skulltrail192/One-Core-Api]] --- //complete layer to get compatibility on XP/2003 for newer applications// --- <<#[ Binaries "https://github.com/Skulltrail192/One-Core-API-Binaries">>
* some [[Windows 98SE Utilities|http://dk.toastednet.org/vogons/win98/]]
* [[Windows 2000 Modernization Guide|https://w2k.phreaknet.org/guide/]]
* Visual Studio 6: [[Download VS6|https://winworldpc.com/product/microsoft-visual-stu/60]] ; [[Download MSDN VS6|https://winworldpc.com/product/msdn/vs-60]]; [[Installer wizard 5.0 for installing on Windows 10|http://nuke.vbcorner.net/Articles/VB60/VisualStudio6Installer/tabid/93/language/en-US/Default.aspx]]
!!! ''Distros''

View File

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

View File

@ -1,6 +1,6 @@
created: 20231115232401719
created: 20231118202801570
creator: Octt
list:
modified: 20231115234046784
modified: 20231119011159640
modifier: Octt
title: $:/StoryList

View File

@ -1,6 +1,6 @@
created: 20220920140732083
creator: Octt
modified: 20231108234957601
modified: 20231119004613107
modifier: Octt
title: $:/state/showeditpreview

View File

@ -1,7 +1,7 @@
created: 20230501095944427
creator: Octt
modified: 20231115234529100
modified: 20231117194319497
modifier: Octt
title: $:/state/search/currentTab
$:/plugins/danielo515/ContextPlugin/visualizer
$:/core/ui/DefaultSearchResultList

View File

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

View File

@ -1,7 +1,7 @@
created: 20230501095944427
creator: Octt
modified: 20231115234529104
modified: 20231117194319498
modifier: Octt
title: $:/state/tab/search-results/sidebar
$:/plugins/danielo515/ContextPlugin/visualizer
$:/core/ui/DefaultSearchResultList