From df05dca187bd3c915048551e7cf96a27bebf23b4 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Sun, 7 Dec 2025 18:56:16 +0000 Subject: [PATCH] added youtube scripts --- juntekim_frontend/app/Learning/Todo.md | 1 + juntekim_frontend/app/Youtube/page.tsx | 14 ++++++++++++++ .../page.tsx | 14 ++++++++++++++ .../script.md | 1 + juntekim_frontend/app/Youtube/todo.md | 1 + 5 files changed, 31 insertions(+) create mode 100644 juntekim_frontend/app/Youtube/page.tsx create mode 100644 juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx create mode 100644 juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md create mode 100644 juntekim_frontend/app/Youtube/todo.md diff --git a/juntekim_frontend/app/Learning/Todo.md b/juntekim_frontend/app/Learning/Todo.md index a15365b..4af9c26 100644 --- a/juntekim_frontend/app/Learning/Todo.md +++ b/juntekim_frontend/app/Learning/Todo.md @@ -21,3 +21,4 @@ - Re read pragmatic automator - unix and linux system adminstration handbook - pandas text book i bought +- Home assistant docs on dashboard etc diff --git a/juntekim_frontend/app/Youtube/page.tsx b/juntekim_frontend/app/Youtube/page.tsx new file mode 100644 index 0000000..0dfd1eb --- /dev/null +++ b/juntekim_frontend/app/Youtube/page.tsx @@ -0,0 +1,14 @@ +import fs from "fs"; +import path from "path"; +import MarkdownRenderer from "../components/MardownRenderer"; + +export default function YoutubePage() { + const filePath = path.join(process.cwd(), "app/Youtube/todo.md"); + const markdown = fs.readFileSync(filePath, "utf8"); + + return ( +
+ +
+ ); +} diff --git a/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx new file mode 100644 index 0000000..1bbf3ca --- /dev/null +++ b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx @@ -0,0 +1,14 @@ +import fs from "fs"; +import path from "path"; +import MarkdownRenderer from "../../components/MardownRenderer"; + +export default function YoutubePage() { + const filePath = path.join(process.cwd(), "app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md"); + const markdown = fs.readFileSync(filePath, "utf8"); + + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md new file mode 100644 index 0000000..d083b89 --- /dev/null +++ b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md @@ -0,0 +1 @@ +A rought script please to make a youtube video... \ No newline at end of file diff --git a/juntekim_frontend/app/Youtube/todo.md b/juntekim_frontend/app/Youtube/todo.md new file mode 100644 index 0000000..979fa70 --- /dev/null +++ b/juntekim_frontend/app/Youtube/todo.md @@ -0,0 +1 @@ +- Make youtube video for s7 triggering when I leave the house \ No newline at end of file