| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Reference image library for Space Invader mosaics where we know the official identifier, such as AIX_05 or AVI_13.
Store:
references/
AIX/
AIX_01/
metadata.json
sources/
images/
AIX_02/
AVI/
metadata/
places.json
Each invader directory should contain a metadata.json file with:
{
"place_id": "AIX",
"invader_id": "AIX_01",
"city": "Aix-en-Provence",
"country": "France",
"status": "confirmed",
"sources": [],
"images": []
}Project planning and status tracking for the reference-corpus automation work live in:
First pass for the spotter site city index:
npm run scrape:citiesThis writes:
Per-city listing scrape:
npm run scrape:city -- AIXThis writes:
To also sync the scraped invaders into references/<CITY>/...:
npm run scrape:city -- AIX --sync-referencesTo additionally download the referenced spotter images into each invader directory:
npm run scrape:city -- AIX --sync-references --download-imagesDaily automation for new invaders:
npm run daily:new-mosaicsThis first parses news.php and looks for recent green mosaic IDs (a.ok) to target only likely new additions, then scrapes only the impacted city tails. If news parsing fails, it falls back to the city-count delta strategy. The script writes a report to tmp/daily-new-mosaics-report.json.
You can inspect the raw news parser output directly:
npm run discover:news -- --max-days=10To force the old city-delta strategy:
npm run daily:new-mosaics -- --disable-news-discoveryThe scheduled GitHub Action in .github/workflows/daily-new-mosaics.yml uploads the new grosplan images to R2, commits the updated reference tree back to the canonical repo, and sends an ntfy notification when something new is found.
For a notification-only test run, use the workflow dispatch inputs test_notification=true and an override ntfy_url pointing at a disposable ntfy topic.
Instagram tag pages currently redirect anonymous requests to login. To test a saved logged-in browser profile:
npm run instagram:login -- https://www.instagram.com/explore/tags/aix_06/After login, press Enter in the terminal to save the profile.
Reuse that saved session in headless mode to probe a tag page:
npm run instagram:test -- https://www.instagram.com/explore/tags/aix_06/The browser profile is stored under profiles/instagram/ and is ignored by git.
To scrape post links and media for a tag using the saved session:
npm run instagram:scrape -- aix_06 --limit=12 --downloadThis writes results under data/instagram/<tag>/.
Run a reference-library audit to measure:
npm run audit:libraryThis writes:
To send an ntfy notification from a generated report:
npm run notify:ntfy -- --report-path tmp/daily-new-mosaics-report.jsoncommit to keep the action alive.
| Back | FazBrowse Home | New Git URL |