Skip to content
View GeorgePearse's full-sized avatar

Highlights

  • Pro

Block or report GeorgePearse

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
GeorgePearse/README.md

Stuff to add:

  • One of those flow chart things which shows the amount of projects that make it to each stage, through Idea -> PoC -> Real Implementation -> Blog or popular package
  • Embedding scatter plot of starred repos
  • Graph of starred repos
  • Better searchable interface of starred repos.
  • Find a way to encourage me to work on certain projects via. how they're visualised (e.g. traffic light system or similar).
  • A general webserver and react UI for all coding CLIs (similar to how ML experiment trackes all have interfaces that make it easy to work with irrespective of the training framework used)

George Pearse · Project Notebook

This repository now powers a Vite + React site that documents everything I am studying and building. The homepage presents a card for every public repository on my GitHub profile, enriched with tags so that projects can be sorted by topic (computer vision, LLMs, VLMs, MLOps, and more).

About the Site

I now use this as a study notebook: whenever I dive into a new area of technology, I start by building something and keep track of where it becomes difficult. Those lessons surface here so I can return to them quickly, and so others can trace the same path.

The React app fetches repositories directly from the GitHub API and surfaces the GitHub Topics you define on each repository. Keep your topics up to date on GitHub and this site will reflect them in real time. Each card also includes a docs button that links to the repository's documentation (GitHub Pages homepage when present, otherwise the README).

Running Locally

npm install
npm run dev

The dev server listens on http://localhost:5173 by default. Any of the following commands will also work if you prefer alternative package managers:

pnpm install && pnpm dev
yarn install && yarn dev

Optional: Authenticated GitHub Requests

Unauthenticated requests are limited to 60 calls per hour. To raise the limit while developing locally, create a .env.local file and supply a fine-grained personal access token that has the public_repo scope:

VITE_GITHUB_TOKEN=ghp_exampletoken

⚠️ Because this is a client-side application, do not commit personal access tokens. Only use a token for local development if you are comfortable exposing it to the browser; the production build should rely on the unauthenticated rate limit or be fronted by your own proxy/API.

Updating Tags & Content

  • Update the about copy by editing src/components/AboutSection.tsx.
  • Adjust card layout or data fields inside src/components/RepositoryCard.tsx.
  • Maintain GitHub Topics directly in each repository to curate tags; no code changes required.

To force a refresh of repository data during development, reload the page or restart the dev server; the app requests fresh data on each visit.

Directory Layout

├── assets/                 # Static assets (favicon, graphs, etc.)
├── src/
│   ├── components/         # React component modules
│   ├── hooks/              # Data-fetching and domain hooks
│   ├── styles/             # Global styles
│   └── utils/              # Formatting helpers
├── data/                   # Historical metrics CSV (retained from previous setup)
├── scripts/                # Legacy metrics scripts (unchanged)
├── index.html              # Vite entrypoint
├── package.json            # Project manifest
└── vite.config.ts          # Build configuration

Real GitHub Metrics

The site now displays real GitHub activity metrics powered by daily data collection:

Features

  • Real Data: Fetches actual commit counts, stars, and lines of code from GitHub API
  • Historical Tracking: Builds true historical trends by storing daily snapshots
  • Automated Updates: GitHub Actions workflow runs daily to collect and commit new data
  • Interactive Charts: React components display trends using Recharts library

Usage

To collect metrics manually:

# Set your GitHub token
export GITHUB_TOKEN='your_personal_access_token'

# Gather current metrics
npm run metrics

# Or refresh repos cache and gather metrics
npm run metrics:refresh

Data Files

  • data/historical-metrics.json - Daily snapshots with per-repository breakdown
  • src/data/repos-metrics.json - Monthly aggregated data for chart display
  • src/data/cached-repos.json - Repository metadata cache

Automation

The .github/workflows/gather-real-metrics.yml workflow:

  • Runs daily at 3 AM UTC
  • Collects fresh metrics from GitHub
  • Commits updated data files automatically

See docs/REAL_METRICS_GUIDE.md for complete documentation.

Legacy Metrics

The original Python-based metrics scripts under scripts/github_metrics/ generate SVG graphs for followers and stars. They continue to work independently and are maintained for GitHub profile graphics.

Pinned Loading

  1. bayesian_filters bayesian_filters Public

    Python Kalman filtering and optimal estimation library. Implements Kalman filter, particle filter, Extended Kalman filter, Unscented Kalman filter, g-h (alpha-beta), least squares, H Infinity, smoo…

    Python 19