Ask HN: Best solutions for keeping a personal log?
81–90 of 138 posts
Re: Ask HN: Best solutions for keeping a personal log?
#82Things are compiled and distilled when not on the go.
Re: Ask HN: Best solutions for keeping a personal log?
#83Re: Ask HN: Best solutions for keeping a personal log?
#84I want to enter these chronologically, as they happen, but then have them viewable like email threads (like the main GMail view) grouped by business or general topic (like "House Maintenance"), with the most active threads shown first!
Re: Ask HN: Best solutions for keeping a personal log?
#85I've taken the odd approach of messaging myself in chat software.. in my case, I have "conversations" with myself in Telegram. I feel like I journal more when it's just text and unstructured, rather than, for instance, a detailed form. It's not exactly what you are looking for, but has some good properties: - Always easy to jump in to, since I use TG to chat with people all day long; works on all devices (I need to j…
Maybe related: I have been looking for a way to EASILY record voice notes in a geotagged and timestamped format. Easily here means with the touch of a button, anytime. I think an app by itself can not achieve this, because it requires too much attention. Ideally I would want to use a physical device remotely connected to the phone. Something like this: https://www.aina-wireless.com/shop/aina-ptt-voice-responder/ But…
https://play.google.com/store/apps/details?id=com.abelssoft....
https://apps.apple.com/us/app/voice2mail/id533391644
a big ask but would love for this to do speech to text also.
Re: Ask HN: Best solutions for keeping a personal log?
#86For journals, I use Vim with a ton of snippets, and write in markdown, using a lot of lists. The snippets are the biggest win. I have daily, weekly, monthly, and various ad-hoc templates that I basically just fill in. When I pick up a new journal, I usually begin by writing the templates. For accounting, I’d recommend taking a look at gnu ledger. I don’t record any financial stuff in my daily journal, it all goes in…
Re: Ask HN: Best solutions for keeping a personal log?
#87Earlier quoted context omitted.
Org mode has a diary feature so the git repo not strictly necessary.
well, it makes for real simple backups... and you have magit right there just a C-x g away, too.
Re: Ask HN: Best solutions for keeping a personal log?
#88This is my solution but it may not be best for everyone. Notes: # .profile function note { mg +-1 "/home/.../notes/$(date "+%Y-%m-%d").txt"; } mg is micro emacs, +-1 opens the file with the cursor at the end. Transactions: I record my transactions into ledger[0]. I wrote an auto-complete wrapper in Python to help speed up entry and another to keep the formatting consistent, but otherwise it's a manual job. It helps k…
# .profile
note () {
echo $@ > ~/Backup/Notes/$( date '+%F_%H:%M:%S' ).txt;
}
usage example: ~$ note this is my new short noteRe: Ask HN: Best solutions for keeping a personal log?
#89Maybe some day I'll get around to developing a simple markup scheme so I can parse and search my logs by #ideas #opinions etc.
I'd use a python tool like jrnl, but vim, text files and git are just too simple to complicate with tools that don't really offer that much more functionality.
I had a less technical friend who used to obsess over software to manage bookmarks, notes, etc and it drove me nuts how over-thought / contrived his approaches were.
Re: Ask HN: Best solutions for keeping a personal log?
#90https://davidbieber.com/post/2019-12-29-track-your-life-in-a...
The short version is: (1) I manually enter the activity(s) I do each day in a spreadsheet, one row per day; (2) the spreadsheet automatically figures out how recently I did each category of activity; (3) [bonus] a chat bot uses this data (and much more!) to help me keep my life on track.