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
42 changes: 42 additions & 0 deletions contributors/ilikeapplesandbananas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<article>
<h3>Mbesa</h3>
<p>Final year, top student studing Computer Science while attending the Bitcoin Lightning Bootcamp</p></br>
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

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

Typo in bio: "studing" should be "studying".

Suggested change
<p>Final year, top student studing Computer Science while attending the Bitcoin Lightning Bootcamp</p></br>
<p>Final year, top student studying Computer Science while attending the Bitcoin Lightning Bootcamp</p></br>

Copilot uses AI. Check for mistakes.
<h4>Programming languages I use</h4></br>
Comment on lines +3 to +4
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

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

</br> is not a valid HTML tag (the line break element is <br> and it doesn’t have an end tag in HTML5). This will show up as a markup/console validation error; prefer removing these and using CSS spacing or replace with a proper <br> where truly needed.

Copilot uses AI. Check for mistakes.
<il>Python</il>
<il>JavaScript</il>
<il>TypeScript</il>
<il>Rust</il>
Comment on lines +5 to +8
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

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

<il> is not a valid HTML element. If these are intended as list items, use <li> inside a <ul>/<ol>; otherwise remove this block and represent languages consistently (e.g., with the existing badge section).

Suggested change
<il>Python</il>
<il>JavaScript</il>
<il>TypeScript</il>
<il>Rust</il>
<ul>
<li>Python</li>
<li>JavaScript</li>
<li>TypeScript</li>
<li>Rust</li>
</ul>

Copilot uses AI. Check for mistakes.

<section class="container">
<div class="badge" style="background-color: #000000; color: white">Rust</div>
<div class="badge" style="background-color: #f7df1e; color: black;">JavaScript</div>
</section>

<h4>Tools I use</h4></br>
<li>Windows Powershell</h4>
<li>Polar</li>
Comment on lines +15 to +17
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

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

These <li> elements are not inside a <ul>/<ol>, and the first item is closed with </h4> (mismatched tag). This is invalid HTML and may break the page structure; wrap the items in a proper list and fix the closing tag.

Copilot uses AI. Check for mistakes.
<li>Docker</li>
<li>Bitcoin</li>

<section class="container">
<img class="icon" src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/bash/bash-original.svg"/>
<img class="icon" src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/linux/linux-original.svg"/>
</section>
</article>
<style>
body {
font-family: sans-serif;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.badge {
padding: 0.5rem;
border-radius: 0.25rem;
}
.icon {
width: 2rem;
}
</style>
Loading