https://github.com/paradise-runner/feels-like-github-status
How does GitHub _feel_?
https://github.com/paradise-runner/feels-like-github-status
github reliability status-page uptime
Last synced: about 7 hours ago
JSON representation
How does GitHub _feel_?
- Host: GitHub
- URL: https://github.com/paradise-runner/feels-like-github-status
- Owner: paradise-runner
- License: mit
- Created: 2026-05-11T16:28:40.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-07-03T09:23:10.000Z (4 days ago)
- Last Synced: 2026-07-03T11:17:14.043Z (4 days ago)
- Topics: github, reliability, status-page, uptime
- Language: JavaScript
- Homepage: https://paradise-runner.github.io/feels-like-github-status/
- Size: 1.21 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feels-like GitHub Status
GitHub uptime, filtered to the hours you actually use it.
This is a remix of [mrshu/github-statuses](https://github.com/mrshu/github-statuses) (MIT) — instead of computing one platform-wide uptime number across every minute of the last 90 days, you paint a weekly schedule of *your* hours, and the page shows how reliable GitHub felt during them.
## Develop locally
```bash
# Serve the static site
python3 -m http.server 8000
# open http://localhost:8000/site/
```
## Run the unit tests
```bash
node --test site/lib/*.test.js
```
## Refresh the data (optional)
The `parsed/` directory is committed and updated daily by CI. To regenerate locally:
```bash
uv sync
uv run python pipeline/extract_incidents.py --out parsed --enrich-impact --infer-components gliner2
```
(Requires Python 3.11–3.13. The GLiNER2 step downloads PyTorch and is heavy; omit `--infer-components gliner2` if you don't need ML-inferred components.)
## Layout
- `site/` — static site (HTML, CSS, vanilla ES modules)
- `pipeline/` — vendored Python data pipeline (MIT, see `pipeline/LICENSE`)
- `parsed/` — generated incident data committed by CI
## License
MIT for original code in this repo. Vendored pipeline retains its upstream MIT license — see `pipeline/LICENSE`.