Built a full-stack developer worklog application from scratch.
Full-stack devlogs application with FastAPI backend, React frontend, SQLite database, and MCP server for OpenCode integration.
| from datetime import date, datetime, timedelta | |
| from tqdm import tqdm | |
| from functools import reduce | |
| DAYS_OUT = 180 | |
| def get_days_opened(clds: list[bool]) -> list[int]: | |
| days_opened = [-1] * len(clds) | |
| days_opened_cnt = 0 | |