From e10b37c4dde565746e6356eb29dcc97353a6d340 Mon Sep 17 00:00:00 2001 From: fusolarry <57095226+fusolarry@users.noreply.github.com> Date: Sun, 8 Mar 2026 17:47:04 +0100 Subject: [PATCH 1/4] Add daily learning structure to day-1.md --- day-1.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 day-1.md diff --git a/day-1.md b/day-1.md new file mode 100644 index 0000000..cafdedc --- /dev/null +++ b/day-1.md @@ -0,0 +1,3 @@ +# Daily learning +## Morning Planning +## Review From b3fc2e881cddad08e96dff3567d9a44a72aeaddf Mon Sep 17 00:00:00 2001 From: fusolarry <57095226+fusolarry@users.noreply.github.com> Date: Sun, 8 Mar 2026 17:50:16 +0100 Subject: [PATCH 2/4] Add tasks for daily learning and planning --- day-1.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/day-1.md b/day-1.md index cafdedc..8f47482 100644 --- a/day-1.md +++ b/day-1.md @@ -1,3 +1,6 @@ # Daily learning ## Morning Planning +- [ ] 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. ## Review From 7548e861194901a500225da30e31ad67ecfd8623 Mon Sep 17 00:00:00 2001 From: fusolarry <57095226+fusolarry@users.noreply.github.com> Date: Sun, 8 Mar 2026 17:52:43 +0100 Subject: [PATCH 3/4] Add ffmpeg task for media conversion Added a task to convert media from dark mode to light mode using ffmpeg. --- day-1.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/day-1.md b/day-1.md index 8f47482..28bc8b0 100644 --- a/day-1.md +++ b/day-1.md @@ -4,3 +4,8 @@ - [ ] Learn about [GitHub Pages](https://skills.github.com/#first-day-on-github). - [ ] Convert my first blog post into an actual webpage. ## 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 +``` From 6f21bf168da99e49999417364c11e028c5a9429f Mon Sep 17 00:00:00 2001 From: fusolarry <57095226+fusolarry@users.noreply.github.com> Date: Sun, 8 Mar 2026 17:56:44 +0100 Subject: [PATCH 4/4] Add image to daily learning markdown --- day-1.md | 1 + 1 file changed, 1 insertion(+) diff --git a/day-1.md b/day-1.md index 28bc8b0..20334fb 100644 --- a/day-1.md +++ b/day-1.md @@ -1,4 +1,5 @@ # Daily learning +Cloudy morning ## Morning Planning - [ ] Check out the [github blog](https://github.blog/) for topic ideas. - [ ] Learn about [GitHub Pages](https://skills.github.com/#first-day-on-github).