From a9b4dc4e5628ee193948236dc5dff535ab3b9761 Mon Sep 17 00:00:00 2001 From: Samuel Robinson Date: Thu, 1 May 2025 17:22:29 +1000 Subject: [PATCH 01/78] Added new output formats for chatgpt --- source/_posts/chatgpt.md | 51 ++++++++++++++++++++++++++-------------- 1 file changed, 33 insertions(+), 18 deletions(-) diff --git a/source/_posts/chatgpt.md b/source/_posts/chatgpt.md index 028816e9..84f33e75 100644 --- a/source/_posts/chatgpt.md +++ b/source/_posts/chatgpt.md @@ -276,32 +276,36 @@ In [output format] #### Text +Paragraphs +- Paragraphs ***(default)*** + List -- Bullet point list +- Bulleted list - Numbered list - Check list Code - Code -Process +Instructions - Step-by-step instructions -Response -- Question and answer -- Dialogue +Questions And Answers +- Q&A +- FAQ -Creative -- Script -- Comic strip dialogue +Creative Writing +- [Joke | humour] +- [Lyrics | song] +- [Metaphorical | stylized language] - Poetry -- Music lyrics -- Riddle +- [Riddle | puzzle] +- [Script | screenplay | dialogue] +- [Story | narrative] -Game -- Quiz -- RPG -- Choose-Your-Own-Adventure +Interactive And Educational +- [Quiz | test | flashcards | drills] +- [Interactive fiction | role-playing game | choose-your-own-adventure] #### Visual @@ -309,17 +313,28 @@ Data Visualization - Table - [Chart] chart ***(Chart type examples: gantt, bubble, error, contour, area, scatter, KDE, box, histogram, bar, line, 3D, joint, surface, polar, pie, cat, pair, strip, swarm, heatmap, hexbin)*** -Creative +Creative Visual +- ASCII Art - Emojis - Word cloud -#### File Format +#### File Type +Document +- PDF + +Structured Data And Markup - Plain text - Markdown -- CSV +- HTML - XML +- CSV - JSON -- PDF +- LaTeX + +Programming Code And Scripting +- [Programming language] +- Pseudocode +- Regular expression ### Constraint But [constraint] From 05e102eb24021f3ea9a2f7f1c497db473dd7b7d4 Mon Sep 17 00:00:00 2001 From: Aryamaan Goswamy <44227544+aryamaan-exe@users.noreply.github.com> Date: Fri, 15 Aug 2025 19:32:38 +0530 Subject: [PATCH 02/78] Update kotlin.md --- source/_posts/kotlin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/kotlin.md b/source/_posts/kotlin.md index 46cca601..3f7765fd 100644 --- a/source/_posts/kotlin.md +++ b/source/_posts/kotlin.md @@ -550,7 +550,7 @@ fun main() { ### Default Parameters ```kotlin {.wrap} -fun favoriteLanguage(name, language = "Kotlin") { +fun favoriteLanguage(name: String, language: String = "Kotlin") { println("Hello, $name. Your favorite programming language is $language") } From c3c09480fbc49f4889b9f770004ec41004081dbc Mon Sep 17 00:00:00 2001 From: Leonard Lesinski Date: Sat, 16 Aug 2025 12:49:02 +0200 Subject: [PATCH 03/78] fix: updated to Svelte 5 syntax with runes See https://svelte.dev/docs/svelte/v5-migration-guide --- source/_posts/svelte.md | 44 ++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/source/_posts/svelte.md b/source/_posts/svelte.md index a4534bcd..4af615b0 100644 --- a/source/_posts/svelte.md +++ b/source/_posts/svelte.md @@ -1,6 +1,6 @@ --- title: Svelte -date: 2025-04-08 19:45:00 +date: 2025-08-16 10:30:00 background: bg-[#FF3E00] tags: - svelte @@ -87,7 +87,7 @@ Note: Svelte components must always return a root element or content. ```js
@@ -127,8 +127,7 @@ Note: External components should be installed via npm first. ```js

{firstName} {lastName} is {age}.

@@ -164,7 +161,7 @@ Note: External components should be installed via npm first. ```js

{name}

- + ``` ## Events {.cols-1} @@ -187,12 +184,12 @@ Note: External components should be installed via npm first. } - + Say Hi ``` -Note: The most common event listeners are `on:click` and `on:submit`. +Note: The most common event listeners are `onclick` and `onsubmit`. ## Loops {.cols-2} @@ -236,8 +233,8 @@ Note: The most common event listeners are `on:click` and `on:submit`. ```js -
+ @@ -274,7 +271,7 @@ Note: The most common event listeners are `on:click` and `on:submit`.

{sum}

@@ -402,14 +399,17 @@ export const time = readable(new Date(), function start(set) { ### Reactive Statements with Side Effects ```js - + ``` ### Bind to DOM Properties ```js