Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions day-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Daily Learning
## Morning Planning
<img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" height="500" align="right">
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The first image sets both width and a very large fixed height (500px), which will likely distort the aspect ratio and create excessive vertical whitespace. Consider removing the height attribute (let it scale naturally) or using proportional dimensions consistent with the other image.

Suggested change
<img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" height="500" align="right">
<img alt="Cloudy morning" src="https://octodex.github.com/images/cloud.jpg" width="100" align="right">

Copilot uses AI. Check for mistakes.

Task List
- [ ] Check out the [github blog](https://github.blog/) for topic ideas.
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The link text uses the wrong capitalization for the product name. Consider changing "github blog" to "GitHub Blog" for consistency with GitHub branding.

Suggested change
- [ ] Check out the [github blog](https://github.blog/) for topic ideas.
- [ ] Check out the [GitHub Blog](https://github.blog/) for topic ideas.

Copilot uses AI. Check for mistakes.
- [ ] 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
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"hellooo" looks like an unintended typo in the list item; consider correcting it to "hello" (or a more descriptive item) to keep the example clean.

Suggested change
- hellooo
- hello

Copilot uses AI. Check for mistakes.
<img alt="Mona the Octocat" src="https://octodex.github.com/images/original.png" width="100" align="right">

Ordered List
1. Step 1
2. Step 2
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!";
```