diff --git a/Wiki-OcttKB/tiddlers/Normal/Saved/Sites/_Development.tid b/Wiki-OcttKB/tiddlers/Normal/Saved/Sites/_Development.tid
index a64a6c6..d393377 100644
--- a/Wiki-OcttKB/tiddlers/Normal/Saved/Sites/_Development.tid
+++ b/Wiki-OcttKB/tiddlers/Normal/Saved/Sites/_Development.tid
@@ -1,6 +1,6 @@
created: 20230429190335486
creator: Octt
-modified: 20231224164037270
+modified: 20240103004131125
modifier: Octt
tags:
title: Saved/Sites/Development
@@ -38,6 +38,7 @@ Note: the most technically useful ones, or the non-too-personal ones, might be l
* [[loadzero|https://blog.loadzero.com/]] --- //Jason McSweeney, unix hacker and recovering video game programmer//
* [[Meefik's Blog|https://meefik.github.io/]] --- //Freedom and Open Source// --- <<[# Git"https://github.com/meefik/meefik.github.io">>
* [[Mike MGarcia's Games Development Blog|http://mgarcia.org/]] --- //Hobby GameDev like its 1999//
+* [[Muffin Man|https://muffinman.io/]] --- //Frontend & creative coding, I'm Stanko, a software engineer in Amsterdam, making digital products and generative art.//
* [[notin.tokyo (δΈε¨ζ±δΊ¬)|https://notin.tokyo]]
* [[null program (Chris Wellons)|https://nullprogram.com/]]
* [[Patater|https://www.patater.com/]] --- has a lot of retrodevelopment projects and resources, especially NDS
diff --git a/Wiki-OcttKB/tiddlers/Normal/_Android.tid b/Wiki-OcttKB/tiddlers/Normal/_Android.tid
index 37f2212..4a6631b 100644
--- a/Wiki-OcttKB/tiddlers/Normal/_Android.tid
+++ b/Wiki-OcttKB/tiddlers/Normal/_Android.tid
@@ -1,7 +1,7 @@
created: 20230202230035698
creator: Octt
icon: π€
-modified: 20231227005302837
+modified: 20240103001057678
modifier: Octt
page-cover: https://source.unsplash.com/random?android
tags: OS Google Linux
@@ -33,6 +33,8 @@ title: Android
* [[I found a hidden folder called ".face" on my phone. It is full of faces cropped from pictures I've taken or downloaded.|https://xdaforums.com/t/face-folder-is-choking-with-thousands-of-files.1929380/]] --- it's apparently a Samsung thing (can't understand if it also happens on other ROMs), a cache for the built-in gallery face recognition system... only question is, why is this just on `/sdcard` and not in a proper cache directory? other people say it's used by the Android system in general, don't know if they have a Samsung ROM or not --- also see on <>
* [[How to Downgrade an Android App Using ADB Without Losing Data|https://www.makeuseof.com/downgrade-android-app-with-adb/]]
+* [[SDK Platform release notes|https://developer.android.com/tools/releases/platforms]] --- //release information about the SDK packages available//
+
!!! ''Emulation / Containerization''
* ''Anbox'' (discontinued) - //Android in a Box// - [[[Git|https://github.com/anbox]]]
diff --git a/Wiki-OcttKB/tiddlers/Normal/_CSS.tid b/Wiki-OcttKB/tiddlers/Normal/_CSS.tid
index 043f8dc..2830637 100644
--- a/Wiki-OcttKB/tiddlers/Normal/_CSS.tid
+++ b/Wiki-OcttKB/tiddlers/Normal/_CSS.tid
@@ -1,10 +1,10 @@
created: 20230209150101862
creator: Octt
icon: π
-modified: 20231212001120451
+modified: 20240103005529115
modifier: Octt
page-cover: https://images.unsplash.com/photo-1523437113738-bbd3cc89fb19
-tags: Web
+tags: Web Frontend
title: CSS
<<^wikipediaframe CSS en>>
@@ -15,9 +15,15 @@ title: CSS
* [[CSS Borders [w3s]|https://www.w3schools.com/css/css_border.asp]]
** <> --- all ways to style a border, not only colors
+!!! ''Frameworks''
+
+* [[Bulma|https://bulma.io/]] --- //modern CSS framework that just works//
+* [[PaperCSS|https://www.getpapercss.com/]] --- //the less formal CSS framework//
+
!!! ''Amazing''
* [[CSS Zen Garden|https://csszengarden.com/]] --- //The Beauty of CSS Design//
* [[Pure CSS Minesweeper|https://codepen.io/bali_balo/pen/BLJONZ?editors=1100]]
* [[Spinning Diagrams with CSS|https://x.st/spinning-diagrams-with-css]]
* [[Bubble Sort...in PURE CSS? [No JS] π±|https://dev.to/grahamthedev/bubble-sortin-pure-css-no-js-3bb1]]
+* [[25 CSS Paper Effects|https://freefrontend.com/css-paper-effects/]]
diff --git a/Wiki-OcttKB/tiddlers/Normal/_Frontend.tid b/Wiki-OcttKB/tiddlers/Normal/_Frontend.tid
new file mode 100644
index 0000000..a7b19f1
--- /dev/null
+++ b/Wiki-OcttKB/tiddlers/Normal/_Frontend.tid
@@ -0,0 +1,12 @@
+created: 20240103004531936
+creator: Octt
+modified: 20240103005832792
+modifier: Octt
+tags:
+title: Frontend
+
+<<^wikipediaframe "Front-end web development">>
+
+* [[FreeFrontend|https://freefrontend.com/]]
+
+* [[React-Grid-Layout|https://github.com/react-grid-layout]] and associated repositories (..., react-draggable, react-resizable)
diff --git a/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid b/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid
index ce176b2..ff79dcf 100644
--- a/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid
+++ b/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid
@@ -1,6 +1,6 @@
created: 20221110145611678
creator: Octt
-modified: 20231223224154890
+modified: 20240103005618220
modifier: Octt
tags: Development $:/i18n:en Web
title: JavaScript
@@ -37,9 +37,13 @@ title: JavaScript
* [[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')`
* [[set doctype using javascript|https://stackoverflow.com/questions/21523487/set-doctype-using-javascript]]
* [[JavaScript Regex Replace Tutorial|https://www.javascripttutorial.net/javascript-regex/replace/]]
+* [[Insert an element after another DOM element with JavaScript|https://attacomsian.com/blog/javascript-insert-element-after]] --- //`target.parentNode.insertBefore(elem, target.nextSibling)
+`//
* [[Send POST data using XMLHttpRequest|https://stackoverflow.com/questions/9713058/send-post-data-using-xmlhttprequest]]
* [[fetch API [and comparison with XMLHttpRequest]|https://davidwalsh.name/fetch]]
+* [[How do I upload a file with the JS fetch API?|https://stackoverflow.com/questions/36067767/how-do-i-upload-a-file-with-the-js-fetch-api#comment98412965_36082038]] --- pass the `file` object to the body, do NOT set Content-Type header
+* [[How to Use Fetch with async/await|https://dmitripavlutin.com/javascript-fetch-async-await/]]
* [[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//
* <> --- //used to merge two or more arrays, does not change the existing arrays but instead returns a new one//
diff --git a/Wiki-OcttKB/tiddlers/Normal/_Strange things.tid b/Wiki-OcttKB/tiddlers/Normal/_Strange things.tid
index 2cd61a3..dfb0802 100644
--- a/Wiki-OcttKB/tiddlers/Normal/_Strange things.tid
+++ b/Wiki-OcttKB/tiddlers/Normal/_Strange things.tid
@@ -1,6 +1,6 @@
created: 20231105150445511
creator: Octt
-modified: 20231220211854011
+modified: 20240103003442135
modifier: Octt
tags:
title: Strange things
@@ -9,6 +9,13 @@ title: Strange things
* [[StudyPlan.dev|https://www.studyplan.dev/]] --- strange C++ tutorials website with random, out-of-context (probably AI-generated?) cover pictures of random characters concept artworks...
+* [[Smokepowered - η
ι§εε.com|https://smokepowered.com/]] --- strange site with weed background and video of Valve characters smoking
+** [[Epic Blazed|https://epicblazed.com/]] --- same thing above, but for Epic Games, Unreal Engine, Fortnite
+
+* [[ICCIVITELLA|https://iccivitella.it/]], ... --- SEO spamming websites with fake content... sometimes they seem to have more actual content than real sites?
+
+* <>, <>, ... --- sites that seem like SEO spamming but they seem to be administered by actual writers? they're kinda the most confusing
+
* [[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
@@ -18,7 +25,4 @@ title: Strange things
* [[https://www.playemulator.io/]] --- very strange-feeling site with online ROMs emulators, due to all the SEO crap, and possibly wrong thumbnails applied to misleadingly titled games
-* [[Smokepowered - η
ι§εε.com|https://smokepowered.com/]] --- strange site with weed background and video of Valve characters smoking
-** [[Epic Blazed|https://epicblazed.com/]] --- same thing above, but for Epic Games, Unreal Engine, Fortnite
-
* [[Pra' - Le Lavatrici|https://it.wikipedia.org/wiki/Pra%27#Le_Lavatrici]] --- un quartiere che sembra una mezza piramide fatta di lavatrici giganti
diff --git a/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta b/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta
index 9ed9f3a..9fd2c4a 100644
--- a/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta
+++ b/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta
@@ -1,5 +1,5 @@
-created: 20240102004343002
+created: 20240103005915406
current-tiddler: GettingStarted
-modified: 20240102004343002
+modified: 20240103005915406
title: $:/HistoryList
type: application/json
\ No newline at end of file
diff --git a/Wiki-OcttKB/tiddlers/System/_StoryList.tid b/Wiki-OcttKB/tiddlers/System/_StoryList.tid
index 257ff52..078e803 100644
--- a/Wiki-OcttKB/tiddlers/System/_StoryList.tid
+++ b/Wiki-OcttKB/tiddlers/System/_StoryList.tid
@@ -1,6 +1,6 @@
-created: 20240101194923694
+created: 20240103000919268
creator: Octt
list:
-modified: 20240102003907711
+modified: 20240103005648557
modifier: Octt
title: $:/StoryList
\ No newline at end of file
diff --git a/Wiki-OcttKB/tiddlers/System/state/search/_currentTab.tid b/Wiki-OcttKB/tiddlers/System/state/search/_currentTab.tid
index 25fb2a0..cfb22d2 100644
--- a/Wiki-OcttKB/tiddlers/System/state/search/_currentTab.tid
+++ b/Wiki-OcttKB/tiddlers/System/state/search/_currentTab.tid
@@ -1,6 +1,6 @@
created: 20230501095944427
creator: Octt
-modified: 20240101223430048
+modified: 20240103005626613
modifier: Octt
title: $:/state/search/currentTab
diff --git a/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid b/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid
index a6573a0..679fb92 100644
--- a/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid
+++ b/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid
@@ -1,6 +1,6 @@
created: 20220920092307479
creator: Octt
-modified: 20240102004305266
+modified: 20240103005835014
modifier: Octt
title: $:/state/tab/sidebar--595412856
diff --git a/Wiki-OcttKB/tiddlers/System/state/tab/search-results/_sidebar.tid b/Wiki-OcttKB/tiddlers/System/state/tab/search-results/_sidebar.tid
index 7951bac..4130842 100644
--- a/Wiki-OcttKB/tiddlers/System/state/tab/search-results/_sidebar.tid
+++ b/Wiki-OcttKB/tiddlers/System/state/tab/search-results/_sidebar.tid
@@ -1,6 +1,6 @@
created: 20230501095944427
creator: Octt
-modified: 20240101223430051
+modified: 20240103005626615
modifier: Octt
title: $:/state/tab/search-results/sidebar