added youtube scripts
This commit is contained in:
parent
e6e0d867b9
commit
df05dca187
5 changed files with 31 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
14
juntekim_frontend/app/Youtube/page.tsx
Normal file
14
juntekim_frontend/app/Youtube/page.tsx
Normal file
|
|
@ -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 (
|
||||
<div className="p-8">
|
||||
<MarkdownRenderer content={markdown} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -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 (
|
||||
<div className="p-8">
|
||||
<MarkdownRenderer content={markdown} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
A rought script please to make a youtube video...
|
||||
1
juntekim_frontend/app/Youtube/todo.md
Normal file
1
juntekim_frontend/app/Youtube/todo.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
- Make youtube video for s7 triggering when I leave the house
|
||||
Loading…
Add table
Reference in a new issue