From b7694399eb4984f980753772f39da723248075d5 Mon Sep 17 00:00:00 2001 From: Abubakar Mvunye Date: Fri, 1 May 2026 22:05:42 +0200 Subject: [PATCH 1/5] Add initial structure for daily learning notes --- day-1.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 day-1.md diff --git a/day-1.md b/day-1.md new file mode 100644 index 0000000..fcb4fff --- /dev/null +++ b/day-1.md @@ -0,0 +1,6 @@ +

Daily Learning

+ +

Morning Review

+ +

Review

+ From e6faf3bf82251907d97d23be1e4e07ced3011769 Mon Sep 17 00:00:00 2001 From: Abubakar Mvunye Date: Fri, 1 May 2026 22:08:02 +0200 Subject: [PATCH 2/5] Convert HTML headings to Markdown format --- day-1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/day-1.md b/day-1.md index fcb4fff..be457ce 100644 --- a/day-1.md +++ b/day-1.md @@ -1,6 +1,6 @@ -

Daily Learning

+# Daily Learning -

Morning Review

+## Morning Review -

Review

+## Review From e098cb35d7a51e691db71c92966cf453fe3a87e0 Mon Sep 17 00:00:00 2001 From: Abubakar Mvunye Date: Fri, 1 May 2026 22:10:45 +0200 Subject: [PATCH 3/5] Rename section from 'Morning Review' to 'Morning Planning' --- day-1.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/day-1.md b/day-1.md index be457ce..3da5441 100644 --- a/day-1.md +++ b/day-1.md @@ -1,6 +1,10 @@ # Daily Learning -## Morning Review +## 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 59e4071fa655312edc11df8cd67face59a14f39e Mon Sep 17 00:00:00 2001 From: Abubakar Mvunye Date: Fri, 1 May 2026 22:14:46 +0200 Subject: [PATCH 4/5] Add ffmpeg instructions for media conversion Add instructions for converting media from dark mode to light mode using ffmpeg. --- day-1.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/day-1.md b/day-1.md index 3da5441..84cec1d 100644 --- a/day-1.md +++ b/day-1.md @@ -7,4 +7,8 @@ ## 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 8465df9c64d3f759c7295ff5a6de826b2d4ae552 Mon Sep 17 00:00:00 2001 From: Abubakar Mvunye Date: Fri, 1 May 2026 22:23:34 +0200 Subject: [PATCH 5/5] Add image to daily learning document Added an image to enhance the morning planning section. --- day-1.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/day-1.md b/day-1.md index 84cec1d..9403351 100644 --- a/day-1.md +++ b/day-1.md @@ -1,6 +1,8 @@ # Daily Learning ## Morning Planning +Cloudy morning + - [ ] 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.