FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
A self-updating GitHub profile README
How-ToTools

A self-updating GitHub profile README

via Dev.to TutorialLars van der Niet10h ago

A self-updating GitHub profile README GitHub has a hidden feature: if you create a repository with the same name as your username, its README is displayed directly on your profile page. It's essentially a personal landing page, but in markdown. The catch is that it gets stale fast — every time you finish a new project, you have to remember to update it manually. I didn't want to do that. So I automated it. How it works The portfolio website already exposes all my projects through an API endpoint at /api/projects . Each project has a title, description, URL, and a featured flag. That's all the data needed to keep the README up to date. A GitHub Actions workflow runs on a schedule — every hour — and does the following: Fetches the latest projects from larsniet.com/api/projects Filters them using jq : featured projects go into one list, everything else into another Injects the generated content into the README between a pair of HTML comment markers using awk Commits and pushes the result

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
0 views

Related Articles

2. Readers-writers Problem
How-To

2. Readers-writers Problem

Medium Programming • 2h ago

The Part Nobody Could Scale
How-To

The Part Nobody Could Scale

Medium Programming • 3h ago

Claude Code Now Lets You Code From Your Phone. Here’s What I Learned the Hard Way.
How-To

Claude Code Now Lets You Code From Your Phone. Here’s What I Learned the Hard Way.

Medium Programming • 3h ago

Stop Watching Tutorials: The Real Way to Learn Coding Faster
How-To

Stop Watching Tutorials: The Real Way to Learn Coding Faster

Medium Programming • 4h ago

Concurrency vs. Parallelism, Processes vs. Threads, Building Thread-Safe Systems
How-To

Concurrency vs. Parallelism, Processes vs. Threads, Building Thread-Safe Systems

Medium Programming • 4h ago

Discover More Articles