|
|
|
Ask HN: Digital Wall Calendar?
|
|
3 points
by marymkearney
982 days ago
|
|
Remember those monthly wall calendars you just write your appointments on? Has anyone seen a digital version of that, where you can jot down a note for a day in plain text? Plain text calendars like calendar.txt are great. [1] It would be super helpful, to see that list data in a month grid as well. There's an Android app called Calendar Notes that does something like this, but it's not interoperable with Mac. It could be a local file, an app, or a browser extension. Compatible with Mac desktop and Android phone. Not looking for word processing calendars like Word or Google Docs. Also not Apple or Google Calendar. Really just plain text notes with a calendar-grid GUI. Thanks! [1]
https://terokarvinen.com/2021/calendar-txt/, discussed at
https://news.ycombinator.com/item?id=31574125 (05/2022). Edited for brevity. |
|
Marymkearney, you could write a similar program for your grid calendar.
1. Print HTML start boilerplate. Start an HTML table and row (tr). 2. Read a line of calendar.txt. 3. Print contents of the day as table cell (td). 4. If day is Sunday (string matches "\bSun\b"), print row change (/tr, tr). 5. ... 6. Profit.
HTML is quite convenient for printing, and you can modify it with CSS. As an added bonus for Quinzel, you can copy your static calendar to your devices, and make any device show it - so you don't need to turn those pages. To make the static HTML file available to your devices, you could use syncthing or a web server in local network.