From f53526f7dc3e6add2065c782cd68ea51528eec5b Mon Sep 17 00:00:00 2001
From: ~Nishant Kumar <78138586+GhostWrites@users.noreply.github.com>
Date: Wed, 4 Mar 2026 19:54:25 +0530
Subject: [PATCH 1/5] Add daily learning structure to day-1.md
---
day-1.md | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 day-1.md
diff --git a/day-1.md b/day-1.md
new file mode 100644
index 0000000..5ff2195
--- /dev/null
+++ b/day-1.md
@@ -0,0 +1,4 @@
+# Daily Learning
+## Morning Planning
+
+## Review
From 20c7a6c13fa19eb3936960600748339c945f796b Mon Sep 17 00:00:00 2001
From: ~Nishant Kumar <78138586+GhostWrites@users.noreply.github.com>
Date: Wed, 4 Mar 2026 20:02:14 +0530
Subject: [PATCH 2/5] Add task and list sections to daily learning document
---
day-1.md | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/day-1.md b/day-1.md
index 5ff2195..4bd6106 100644
--- a/day-1.md
+++ b/day-1.md
@@ -1,4 +1,19 @@
# Daily Learning
## Morning Planning
+## Task List
+- [ ] Check out the [github blog](https://github.blog/) for topic ideas.
+- [ ] Learn about [GitHub Pages](https://skills.github.com/#first-day-on-github).
+- [ ] Convert my first blog post into an actual webpage.
+- [ ] Learn daily.
+
+## Unordered List
+- Item 1
+- Item 2
+- hellooo
+
+## Ordered List
+1. Step 1
+2. Step 2
+3. Step 3
## Review
From 7541136e38cbade70b4b3002de54f62ec5971aa6 Mon Sep 17 00:00:00 2001
From: ~Nishant Kumar <78138586+GhostWrites@users.noreply.github.com>
Date: Wed, 4 Mar 2026 20:08:42 +0530
Subject: [PATCH 3/5] Add JavaScript code snippet to day-1.md
Added JavaScript code snippet to day-1.md.
---
day-1.md | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/day-1.md b/day-1.md
index 4bd6106..65745f0 100644
--- a/day-1.md
+++ b/day-1.md
@@ -17,3 +17,12 @@
3. Step 3
## Review
+Convert an image or video from dark mode to light mode using [ffmpeg](https://www.ffmpeg.org)
+
+```bash
+ffmpeg -i input.mp4 -vf "negate,hue=h=180,eq=contrast=1.2:saturation=1.1" output.mp4
+```
+
+```js
+var myVar = "Hello, world!";
+```
From b6ee60c3d76b1fc301f37c5a1792583c8462acce Mon Sep 17 00:00:00 2001
From: ~Nishant Kumar <78138586+GhostWrites@users.noreply.github.com>
Date: Wed, 4 Mar 2026 20:23:45 +0530
Subject: [PATCH 4/5] Add image to daily learning markdown
---
day-1.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/day-1.md b/day-1.md
index 65745f0..1e90e0f 100644
--- a/day-1.md
+++ b/day-1.md
@@ -1,5 +1,7 @@
# Daily Learning
## Morning Planning
+
+
## Task List
- [ ] Check out the [github blog](https://github.blog/) for topic ideas.
- [ ] Learn about [GitHub Pages](https://skills.github.com/#first-day-on-github).
From 69962afe078fa8282d368de7ac460cb0aac1e59f Mon Sep 17 00:00:00 2001
From: ~Nishant Kumar <78138586+GhostWrites@users.noreply.github.com>
Date: Wed, 4 Mar 2026 20:27:33 +0530
Subject: [PATCH 5/5] Update formatting and add new sections in day-1.md
---
day-1.md | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/day-1.md b/day-1.md
index 1e90e0f..01bfbf1 100644
--- a/day-1.md
+++ b/day-1.md
@@ -2,18 +2,19 @@
## Morning Planning
-## Task List
+Task List
- [ ] Check out the [github blog](https://github.blog/) for topic ideas.
- [ ] Learn about [GitHub Pages](https://skills.github.com/#first-day-on-github).
- [ ] Convert my first blog post into an actual webpage.
- [ ] Learn daily.
-## Unordered List
+Unordered List
- Item 1
- Item 2
- hellooo
+
-## Ordered List
+Ordered List
1. Step 1
2. Step 2
3. Step 3