mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-03-26 21:40:09 +01:00
OcttKB Cross-Repo Sync (HTML to Raw)
This commit is contained in:
parent
a460a5be9a
commit
f63bd18e10
@ -1,12 +1,14 @@
|
||||
created: 20230217221957113
|
||||
creator: Octt
|
||||
modified: 20231224164734893
|
||||
modified: 20240119145813252
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Android/Development
|
||||
|
||||
!!! ''Development''
|
||||
|
||||
* <<RedditL r/androiddev/comments/18ysf26/why_is_the_android_documentation_so_poor/ "Why is the android documentation so poor?">>
|
||||
|
||||
* [[ADB (Android Debug Bridge)|https://developer.android.com/tools/adb]]
|
||||
|
||||
!!!! ''Apps'' and the likes
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230216222435750
|
||||
creator: Octt
|
||||
modified: 20231217011012123
|
||||
modified: 20240119165525443
|
||||
modifier: Octt
|
||||
tags: Development
|
||||
title: Development/Resources
|
||||
@ -15,6 +15,7 @@ title: Development/Resources
|
||||
: [[Programiz|https://www.programiz.com/]]
|
||||
: [[Programming Simplified|https://www.programmingsimplified.com/]] --- //C C++ and Java programming tutorials and programs//
|
||||
: [[W3Schools|https://www.w3schools.com/]]
|
||||
: [[W3docs|https://www.w3docs.com/]] --- //Tutorials, Quizzes, Certificates, Frameworks, Solutions//
|
||||
: <<linkdescgit DevDocs "https://devdocs.io" "API Documentation Browser" "https://github.com/freeCodeCamp/devdocs">>
|
||||
: [[DevTut|https://devtut.github.io/]] --- //Tutorials compiled from StackOverflow Documentation// --- <<[# "Source Git" "https://github.com/devtut/generate">> <<[# "Deploy Git" "https://github.com/devtut/devtut.github.io">>
|
||||
|
||||
|
@ -1,9 +1,11 @@
|
||||
created: 20231221001035380
|
||||
creator: Octt
|
||||
modified: 20231221164123943
|
||||
modified: 20240119163846665
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Linux/Advanced
|
||||
|
||||
* [[What is the smallest possible Linux implementation?|https://unix.stackexchange.com/questions/2692/what-is-the-smallest-possible-linux-implementation/203902#203902]]
|
||||
** [[How to create a Linux system that runs a single application?|https://superuser.com/questions/320529/how-to-create-a-linux-system-that-runs-a-single-application]]
|
||||
|
||||
* [[timb-machine/linux-malware|https://github.com/timb-machine/linux-malware]] --- //Tracking interesting Linux (and UNIX) malware.//
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20231111233128372
|
||||
creator: Octt
|
||||
modified: 20231221163333560
|
||||
modified: 20240119164516295
|
||||
modifier: Octt
|
||||
tags: Geography
|
||||
title: Cartography
|
||||
@ -9,4 +9,5 @@ title: Cartography
|
||||
|
||||
* <<linkdescgit OpenStreetMap"https://www.openstreetmap.org/" "largest community-created geospatial project of all time" "https://github.com/openstreetmap">>
|
||||
** <<linkdescgit OsmAnd"https://osmand.net/" "Offline Maps and Navigation" "https://github.com/osmandapp">>, primarily for Android but a webapp is WIP
|
||||
** [[Organic Maps|https://organicmaps.app/]] --- //Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists. It uses crowd-sourced OpenStreetMap data.// --- <<[# Git"https://github.com/organicmaps/organicmaps">>
|
||||
* <<linkdescgit Leaflet"https://leafletjs.com/" "🍃 JavaScript library for mobile-friendly interactive maps" "https://github.com/Leaflet">>
|
||||
|
@ -1,15 +1,22 @@
|
||||
created: 20231223234312578
|
||||
creator: Octt
|
||||
modified: 20231223234827077
|
||||
modified: 20240119162211752
|
||||
modifier: Octt
|
||||
title: Database
|
||||
|
||||
<<^wikipediaframe Database>>
|
||||
|
||||
!! SQL
|
||||
!! SQL (Structured Query Language)
|
||||
|
||||
<<^wikipediaframe SQL>>
|
||||
|
||||
* [[SQL Tutorial - Essential SQL For The Beginners|https://www.sqltutorial.org/]], //helps you get started with SQL quickly and effectively through many practical examples.//
|
||||
|
||||
* [[SQL Server reverse order after using desc|https://stackoverflow.com/questions/12534248/sql-server-reverse-order-after-using-desc]] --- just use a subselect subquery, `SELECT * FROM (... ORDER BY x DESC) _ ORDER BY x ASC`
|
||||
* [[How to count instances of character in SQL Column|https://stackoverflow.com/questions/1860457/how-to-count-instances-of-character-in-sql-column#1860478]] --- `SELECT LEN(col) - LEN(REPLACE(col, 'x', ''))`
|
||||
** [[SQL String: Counting Words inside a String|https://stackoverflow.com/questions/41952250/sql-string-counting-words-inside-a-string]] --- various methods more specially catered for counting words, than the naive space counting
|
||||
** Note: for counting in many rows together, the `SUM()` function must be used, [[or else you will go mad like me|https://chat.openai.com/share/5883b4c6-37cf-40e3-b735-9cd52b26020c]]
|
||||
|
||||
!!! MySQL \ MariaDB
|
||||
|
||||
<<^wikipediaframe MySQL>>
|
||||
@ -17,3 +24,5 @@ title: Database
|
||||
|
||||
* [[How to install MySQL (MariaDB) on Android with Termux|https://parzibyte.me/blog/en/2019/04/16/install-mysql-mariadb-android-termux/]]
|
||||
* [[--skip-grant-tables option cannot execute statement|https://stackoverflow.com/questions/54751024/skip-grant-tables-option-cannot-execute-statement]] --- in `mysql>` execute `flush privileges`
|
||||
|
||||
* [[MySQL LENGTH() Function|https://www.w3schools.com/sql/func_mysql_length.asp]] (not LEN on MySQL!)
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230202104823127
|
||||
creator: Octt
|
||||
modified: 20240119012237016
|
||||
modified: 20240119121912787
|
||||
modifier: Octt
|
||||
tags: Nintendo Gaming $:/i18n:en Console
|
||||
title: Nintendo Entertainment System
|
||||
@ -14,6 +14,8 @@ title: Nintendo Entertainment System
|
||||
* [[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]]
|
||||
* [[Unchained Nostalgia v1.4.0 [2018/11/15] (a NES/Famicom/Dendy demo)|https://veg.by/en/projects/unchained/]] --- //based on the pirate multicart with a romantic storyline and the Unchained Melody in the menu.// --- <<[# Thread"https://forums.nesdev.org/viewtopic.php?t=10672">>
|
||||
** Original source appeared to be lost to the author forgetting to reupload it after BitBucked fucked up and deleted the hg repo, I was able to find [[some parts on Web Archive|http://web.archive.org/web/20171004041520/https://bitbucket.org/veg/unchained/src]] and copied them: [[https://hlb0.octt.eu.org/Drive/Misc/Unchained%20Nostalgia/Source.7z]] (binary assets are missing but they could be extracted from the compiled ROM, what matters is having the ASM now)
|
||||
|
||||
* [[ArtisaNES|http://0ldsk00l.ca/artisanes/]] --- //Artisanal NES consoles aesthetic mods// (paints)
|
||||
|
||||
@ -45,6 +47,7 @@ title: Nintendo Entertainment System
|
||||
* [[NES Games Disassembly|https://github.com/cyneprepou4uk/NES-Games-Disassembly]] --- //Source code of some NES games// --- <<[# Thread "https://www.romhacking.net/forum/index.php?topic=32220.0">>
|
||||
* [[How to Hack NES Games [JohnRiggs]|https://www.youtube.com/playlist?list=PLsOTz-tlvayLmYmgreE4q1w0E6rN29T4p]]
|
||||
* [[$8000 and $C000 on the NES|https://forums.nesdev.org/viewtopic.php?t=5494]] --- mapper 0 maps the PRG ROM to both addresses
|
||||
* [[How to extract CHR & PRG from a NES/UNiF file|https://forums.nesdev.org/viewtopic.php?t=5661]] --- depends on the mapper, usually PRG is at the start (after the iHeader) and CHR at the end
|
||||
|
||||
* [[Looking For MIDI to NES/NSF Converter|https://forums.nesdev.org/viewtopic.php?t=8007]]
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230215192110036
|
||||
creator: Octt
|
||||
modified: 20230215213713689
|
||||
modified: 20240119145635621
|
||||
modifier: Octt
|
||||
tags: Proprietary Gaming Fantasy Console
|
||||
title: PICO-8
|
||||
@ -10,7 +10,7 @@ title: PICO-8
|
||||
* [[PICO-8 Community Git|https://github.com/pico-8]]
|
||||
* [[Awesome PICO-8|https://pico-8.github.io/awesome-PICO-8/]] - [[[Git|https://github.com/pico-8/awesome-PICO-8]]]
|
||||
|
||||
<<WikipediaFrame PICO-8 en>>
|
||||
<<^WikipediaFrame PICO-8 en>>
|
||||
|
||||
; Get Games
|
||||
: <div>
|
||||
@ -20,6 +20,7 @@ title: PICO-8
|
||||
* <<RedditL "/r/Roms/comments/yj2irf/picowesome_v14_oct312022/" "PICOwesome v1.4 (oct-31-2022)">> - Pico8 Awesome ROM Set - [[[ZIP Gdrive|https://drive.google.com/file/d/1KsK_cm3dp2yCcMdimZInIAU_PkPEfBQf/view?usp=sharing]]] [[[ZIP 1fichier|https://1fichier.com/?jwit1cvqcefytsy9xu24]]] - [<<RedditL "/r/Roms/comments/mw1k3r/pico8_awesome_set_v10/" v1.0>>] [<<RedditL "/r/Roms/comments/t41u6w/picowesome_v13_feb282022/" v1.3>>]
|
||||
** Other (unorganized?) collections mentioned in the thread: https://archive.org/details/pico8 | https://archive.org/details/p8carts
|
||||
** Others (for real): https://archive.org/details/pico-8_cart_collection
|
||||
* [[Pico-8 gallery|https://pico8.retroactive.me/]] --- //A small static site with its own generator containing a few of my Pico-8 sketches// --- <<[# Git"https://github.com/Eiyeron/pico8-gallery">>
|
||||
</div>
|
||||
|
||||
; Reimplementations
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20231105150445511
|
||||
creator: Octt
|
||||
modified: 20240110005819739
|
||||
modified: 20240119165356761
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Strange things
|
||||
@ -17,6 +17,11 @@ title: Strange things
|
||||
|
||||
* <<httpsL www.chimica-online.it>>, <<httpsL www.scuola-e-cultura.it>>, ... --- sites that seem like SEO spamming but they seem to be administered by actual writers? they're kinda the most confusing
|
||||
|
||||
* [[Questions LLC|https://questions.llc/]] --- //Use AI to answer
|
||||
your questions. Our AI bots will answer your questions in seconds.// --- it's a Q/A website where supposedly bots answer the questions, and it's full of spam and useless shit, what's the point of it even? I found it coming from the footer of these oddly-specific websites, which only makes everything stranger:
|
||||
** [[allowfullscreen|https://www.allowfullscreen.com/]] --- //an HTML attribute for the iframe tag// --- a website with some basic information about the attribute, but with some strange details, and some actually decent examples
|
||||
** [[querySelectorAll()|https://www.queryselectorall.com/]] --- //a website dedicated to the best JavaScript function in the world!// --- some generic ass information about that JS function, with a home page full of cringey AI-generated SEO bullshit telling of the subject as if they were trying to sell the thing to a child... also includes information on partially unrelated things that maybe could have something to do with querySelectorAll but really not
|
||||
|
||||
* [[Toire no Hanako-san (folclore)|https://it.wikipedia.org/wiki/Toire_no_Hanako-san_(folclore)]]
|
||||
|
||||
* [[PassSource|https://www.passsource.com/]] --- apparently something to create demo/dummy Apple Wallet passes? I have no use for it but they are very colorful
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20231212222847342
|
||||
creator: Octt
|
||||
modified: 20231212223439290
|
||||
modified: 20240119124309074
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Super Nintendo Entertainment System
|
||||
@ -9,6 +9,8 @@ title: Super Nintendo Entertainment System
|
||||
|
||||
* [[SNES Central|https://snescentral.com/index.php]]
|
||||
|
||||
* [[DiztinGUIsh ("Diz")|https://github.com/IsoFrieze/DiztinGUIsh]] --- //A Super NES ROM Disassembler and tracelog capture/analysis tool with a focus on collaborative workflow UX. Exports .asm files ready to be compiled back into the original binary. Written in Winforms/C#.//
|
||||
|
||||
!! Star Fox
|
||||
|
||||
<<^wikipediaframe "Star Fox">>
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230206192842398
|
||||
creator: Octt
|
||||
modified: 20240107140354621
|
||||
modified: 20240119172421330
|
||||
modifier: Octt
|
||||
tags: Web PHP CMS
|
||||
title: WordPress
|
||||
@ -9,13 +9,18 @@ title: WordPress
|
||||
|
||||
* <<httpsL WordPress.com>> --- Corporate site and home page of the SaaS service
|
||||
* <<httpsL WordPress.org>> --- Home page of the open source project
|
||||
** <<httpsL developer.wordpress.org>> --- Development resources, guides, references
|
||||
** [[WordPress Developer Resources|https://developer.wordpress.org]] --- Development resources, guides, references
|
||||
** //''[[WordPress Codex|https://codex.wordpress.org/]]'', the online manual for WordPress and a living repository for WordPress information and documentation.//
|
||||
|
||||
<<^wikipediaframe WordPress en>>
|
||||
|
||||
* [[Stupid WordPress Tricks|https://perishablepress.com/stupid-wordpress-tricks]] (with PHP)
|
||||
* [[How to Add Code to WordPress Header and Footer|https://kinsta.com/knowledgebase/add-code-wordpress-header-footer/]]
|
||||
|
||||
* [[Wordpress API json, how to get prev and next posts in single post?|https://stackoverflow.com/questions/42546957/wordpress-api-json-how-to-get-prev-and-next-posts-in-single-post/70410781#70410781]] --- not explicitly possible, but achievable for ordering by date, by using exclude of a pivot post id, order asc/desc, and using query after/before a certain date edge
|
||||
|
||||
* [[WP Database Description|https://codex.wordpress.org/Database_Description]] --- //outline and description of the database tables created during the standard installation//
|
||||
|
||||
* [[WordPress Plugins SVN Mirror|http://web.archive.org/web/20200805015358/http://www.pluginmirror.com/]] (apparently website is dead?) --- //Say hello to fully automated GitHub mirrors of every plugin in the WordPress.org plugin repository.// --- <<[# Git"https://github.com/wp-plugins">>
|
||||
|
||||
!!! Plugins
|
||||
|
@ -1,5 +1,5 @@
|
||||
created: 20240119012312540
|
||||
created: 20240119172501258
|
||||
current-tiddler: GettingStarted
|
||||
modified: 20240119012312540
|
||||
modified: 20240119172501258
|
||||
title: $:/HistoryList
|
||||
type: application/json
|
@ -1,6 +1,6 @@
|
||||
created: 20240118224414565
|
||||
created: 20240119115842968
|
||||
creator: Octt
|
||||
list:
|
||||
modified: 20240119011852309
|
||||
modified: 20240119172213778
|
||||
modifier: Octt
|
||||
title: $:/StoryList
|
@ -0,0 +1,7 @@
|
||||
created: 20240119163604538
|
||||
creator: Octt
|
||||
modified: 20240119165435451
|
||||
modifier: Octt
|
||||
title: $:/state/search-list/selected-item--1546365138
|
||||
|
||||
Development/Resources-secondaryList
|
@ -1,6 +1,6 @@
|
||||
created: 20230501095944427
|
||||
creator: Octt
|
||||
modified: 20240118230426101
|
||||
modified: 20240119155439786
|
||||
modifier: Octt
|
||||
title: $:/state/search/currentTab
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20220920092307479
|
||||
creator: Octt
|
||||
modified: 20240110101100366
|
||||
modified: 20240119172425357
|
||||
modifier: Octt
|
||||
title: $:/state/tab/sidebar--595412856
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230501095944427
|
||||
creator: Octt
|
||||
modified: 20240118230426101
|
||||
modified: 20240119155439786
|
||||
modifier: Octt
|
||||
title: $:/state/tab/search-results/sidebar
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user