journal
all ![]() | Rob is 20,118 days old today. |
Entries this day: first-draft-using-quill-to-write-journal-entries-from-my-phone headed-to-machida okay-this-is-after-i-fixed-title first draft using quill to write journal entries from my phone Right now I am transcribing this via my voice onto my phone and seeing if my proof of concept setup with micropub can get this put on to my website. I don't have the tags working but I got the file path working correctly. Super thanks to the guys who have created the micropub format and sample PHP micropub server and client. permalinkheaded to machida I'm headed to Machida to meet my KUMON Japanese teacher. I have finished 50 of 200 pages she gave me last time (Unit E, I think). Today we are meeting sooner than normal because we couldn't find a workable time ~20 days from our last meeting. It's also a chance for her to bring the kanji practice pages that I had previously requested. The only downside of KUMON for me is that the writing is so dang small. I cannot fully see the details of complex kanji. I bought a Grampa Lamp with light and magnifying glass, but it's still a bit of a clumsy setup." PS: This is the first entry I wrote with Quill, which wrote it directly to my repo via my test server. It was written to the data/ directory, but it's a start. permalinkokay this is after i fixed title I added this to fix the title // My Hugo setup requires title in YAML. This fixes that for journal entries. // there may already be code that deals with that but I did not look for it if (isset($properties['entry_title']) && !isset($properties['title'])) { $properties['title'] = $properties['entry_title']; }permalink |