<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Claudio Tancredi</title>
    <description>The latest articles on DEV Community by Claudio Tancredi (@claudiotancredi).</description>
    <link>https://dev.to/claudiotancredi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3887506%2F0d7aa320-c642-4c88-8631-a5dd28077eb8.png</url>
      <title>DEV Community: Claudio Tancredi</title>
      <link>https://dev.to/claudiotancredi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/claudiotancredi"/>
    <language>en</language>
    <item>
      <title>I built a gamified hub for open-source contributions, here's why</title>
      <dc:creator>Claudio Tancredi</dc:creator>
      <pubDate>Sun, 19 Apr 2026 15:46:43 +0000</pubDate>
      <link>https://dev.to/claudiotancredi/i-built-a-gamified-hub-for-open-source-contributions-heres-why-e5m</link>
      <guid>https://dev.to/claudiotancredi/i-built-a-gamified-hub-for-open-source-contributions-heres-why-e5m</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Getting into open source is harder than it should be. You want to contribute, but where do you start? You search for "good first issue" on GitHub, scroll through hundreds of results, and most are stale, already claimed, or in repos you've never heard of. The discovery step kills your enthusiasm before you even begin.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/claudiotancredi/weekly-issue-arena" rel="noopener noreferrer"&gt;Weekly Issue Arena&lt;/a&gt; is an automated system that proposes open-source issues every week and turns contributing into a lightweight game.&lt;/p&gt;

&lt;p&gt;Every Friday at 17:00 UTC, a GitHub Action scans ~250 actively maintained repositories and pulls fresh issues into three categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Good First Issues&lt;/strong&gt;: approachable entry points&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bug Fixes&lt;/strong&gt;: real bugs waiting for a fix&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hard Issues&lt;/strong&gt;: for those who want a challenge&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Right now the arena proposes up to 44 issues per week across Python, C++, Rust, Go, TypeScript, Java, and more, from projects like PyTorch Lightning, Dragonfly, Sniffnet, and others.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding an issue takes two clicks
&lt;/h2&gt;

&lt;p&gt;The homepage has a match flow: pick your language, and the arena shows one unclaimed issue for you. No scrolling, no evaluating dozens of candidates. If the first match isn't right, hit "Show me another" to cycle through others.&lt;/p&gt;

&lt;p&gt;I used this exact flow myself to find and close my first issue this week. Picked Python, got matched with a documentation task in a compiler framework project, opened a PR, and it was merged the same day. The whole process from "I want to contribute" to "PR merged" took less than an hour, and most of that was the actual work, not the search.&lt;/p&gt;

&lt;p&gt;That's the point: the arena removes the friction of &lt;em&gt;finding&lt;/em&gt; something to work on, so you can spend your time on the contribution itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Visit the &lt;a href="https://claudiotancredi.github.io/weekly-issue-arena/" rel="noopener noreferrer"&gt;homepage&lt;/a&gt; - pick your language and get matched, or browse the full issue list&lt;/li&gt;
&lt;li&gt;Fork the chosen repo and open a PR with a closing keyword (&lt;code&gt;fixes #N&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;When your PR merges, the arena detects it automatically and credits you with points&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No registration. No sign-up. The system tracks everything through GitHub's public API.&lt;/p&gt;

&lt;p&gt;Points go into a personal rank and a shared &lt;strong&gt;Arena Level&lt;/strong&gt;. When enough contributors close enough issues, the arena levels up and unlocks more issues for everyone the following week. Individual effort compounds into a shared benefit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why gamification?
&lt;/h2&gt;

&lt;p&gt;Not because contributing needs to be a game. But because the first contribution is the hardest one to make, and a small feedback loop with points, a rank, and a profile card can be the small thing that gets someone from "I should try open source" to actually opening a PR.&lt;/p&gt;

&lt;p&gt;Every contributor gets a personal profile page with their stats and a badge they can embed in their GitHub README. First-time contributors get a welcome thread in the repo's Discussions. It's a small thing, but it signals that someone noticed.&lt;/p&gt;

&lt;h2&gt;
  
  
  The stack
&lt;/h2&gt;

&lt;p&gt;The whole system runs on GitHub Actions and Python scripts, with no external infrastructure, databases, or backends. Issue data, scores, and leaderboard state live in JSON files committed directly to the repo. The site is a static Astro frontend deployed to GitHub Pages.&lt;/p&gt;

&lt;p&gt;The automation handles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Weekly repo discovery and issue fetching&lt;/li&gt;
&lt;li&gt;Hourly PR detection and leaderboard updates&lt;/li&gt;
&lt;li&gt;Dynamic README updates with live issue tables and leaderboard&lt;/li&gt;
&lt;li&gt;SVG badge generation for contributor profiles&lt;/li&gt;
&lt;li&gt;Discussion notifications for new and returning contributors&lt;/li&gt;
&lt;li&gt;Arena Level tracking and milestone announcements&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;The arena is early. I'm using it myself and the system works end to end. Now it needs more people to try it.&lt;/p&gt;

&lt;p&gt;If you're looking for a place to start contributing to open source, or you just want to pick up an issue on a Friday afternoon, take a look:&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/claudiotancredi" rel="noopener noreferrer"&gt;
        claudiotancredi
      &lt;/a&gt; / &lt;a href="https://github.com/claudiotancredi/weekly-issue-arena" rel="noopener noreferrer"&gt;
        weekly-issue-arena
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A gamified hub for open-source issues. Every week, this repo fetches a fresh batch of issues. Climb the leaderboard and level up your skills! ⭐
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;⚔️ Weekly Issue Arena&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="https://github.com/claudiotancredi/weekly-issue-arena/actions/workflows/lint.yml" rel="noopener noreferrer"&gt;&lt;img src="https://github.com/claudiotancredi/weekly-issue-arena/actions/workflows/lint.yml/badge.svg" alt="Lint &amp;amp; Test"&gt;&lt;/a&gt;
&lt;a href="https://github.com/claudiotancredi/weekly-issue-arena/stargazers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/09966de1376ab0522fcd0d3fc3a0b52dd976404267d6bc475df651c2942f91d2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f636c617564696f74616e63726564692f7765656b6c792d69737375652d6172656e613f7374796c653d666c6174266c6f676f3d676974687562" alt="GitHub stars"&gt;&lt;/a&gt;
&lt;a href="https://github.com/claudiotancredi/weekly-issue-arena/graphs/contributors" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/90e04377ebda5f13171db83a927f1706c6e4d029fb2e29b8ba6f032e6eccaf78/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f636c617564696f74616e63726564692f7765656b6c792d69737375652d6172656e613f7374796c653d666c6174266c6f676f3d676974687562" alt="GitHub contributors"&gt;&lt;/a&gt;
&lt;a href="https://github.com/claudiotancredi/weekly-issue-arena/commits/main" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/fd1f8f7da1546f034cd0ca98f13f9a5c3abe48ed2b60c2d1291645bd35bb9cd4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f636c617564696f74616e63726564692f7765656b6c792d69737375652d6172656e613f7374796c653d666c6174266c6f676f3d676974687562" alt="Last commit"&gt;&lt;/a&gt;
&lt;a href="https://github.com/claudiotancredi/weekly-issue-arena/blob/main/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667" alt="License: MIT"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A weekly-refreshed hub of open-source issues, with a leaderboard for contributors who close them.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;Find an issue. Submit a PR. Earn points. Climb the leaderboard.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;No registration. No sign-ups. Just open source.&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;&lt;a href="https://claudiotancredi.github.io/weekly-issue-arena/" rel="nofollow noopener noreferrer"&gt;Browse Issues &amp;amp; Leaderboard on the Website →&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;New here?&lt;/strong&gt; The homepage now matches you with one unclaimed issue in your favorite language in 2 clicks, plus a 4-step PR walkthrough. &lt;a href="https://claudiotancredi.github.io/weekly-issue-arena/" rel="nofollow noopener noreferrer"&gt;Try it →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
  &lt;a href="https://claudiotancredi.github.io/weekly-issue-arena/" rel="nofollow noopener noreferrer"&gt;
    &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Farena_level.svg" alt="Arena Level Progress" width="640"&gt;
  &lt;/a&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The arena levels up.&lt;/strong&gt; Every contribution adds to a shared pool of points. When the pool crosses a threshold, &lt;strong&gt;more issues unlock for everyone&lt;/strong&gt;, every week. We're all building this together.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🏆 Leaderboard&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;em&gt;Updated hourly. Top 10 all-time contributors.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;br&gt;
&lt;thead&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;th&gt;Position&lt;/th&gt;
&lt;br&gt;
&lt;th&gt;Contributor&lt;/th&gt;
&lt;br&gt;
&lt;th&gt;Points&lt;/th&gt;
&lt;br&gt;
&lt;th&gt;Rank&lt;/th&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/thead&gt;
&lt;br&gt;
&lt;tbody&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/Alvaro-Kothe" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F60141605%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/Alvaro-Kothe" rel="noopener noreferrer"&gt;@Alvaro-Kothe&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/kkollsga" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F58362424%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/kkollsga" rel="noopener noreferrer"&gt;@kkollsga&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/LeviLong01" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F7453310%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/LeviLong01" rel="noopener noreferrer"&gt;@LeviLong01&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/biefan" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F70761325%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/biefan" rel="noopener noreferrer"&gt;@biefan&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/claudiotancredi" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F64598512%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/claudiotancredi" rel="noopener noreferrer"&gt;@claudiotancredi&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/mvanhorn" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F455140%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/mvanhorn" rel="noopener noreferrer"&gt;@mvanhorn&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/Netail" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F11695769%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/Netail" rel="noopener noreferrer"&gt;@Netail&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;
&lt;br&gt;
&lt;a href="https://github.com/zzstoatzz" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F31014960%3Fv%3D4" width="64" height="64" class="js-gh-image-fallback"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/zzstoatzz" rel="noopener noreferrer"&gt;@zzstoatzz&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;&lt;div&gt;&lt;a rel="noopener noreferrer" href="https://github.com/claudiotancredi/weekly-issue-arena/assets/hwengineer.png"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fclaudiotancredi%2Fweekly-issue-arena%2FHEAD%2Fassets%2Fhwengineer.png" width="64" height="64"&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/tbody&gt;
&lt;br&gt;
&lt;/table&gt;&lt;/div&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In case of a tie, contributors are listed alphabetically by GitHub username.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;…&lt;/p&gt;
&lt;/div&gt;


&lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/claudiotancredi/weekly-issue-arena" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


</description>
      <category>opensource</category>
      <category>github</category>
      <category>beginners</category>
      <category>gamification</category>
    </item>
  </channel>
</rss>
