Live data from Hacker News

Ask HN: Best solutions for keeping a personal log?

news.ycombinator.com

11–20 of 138 posts

Re: Ask HN: Best solutions for keeping a personal log?

#11
I'm using org mode (in particular, org capture) on my desktop and Orgzly on Android for active logging.

For passive logging, I've got Orger, set of scripts that are pulling data from different APIs and render it as org-mode [1]. Having it as org-mode allows me for quick search and recall in the logs.

There is also Memacs that uses similar approach [2].

1. https://beepb00p.xyz/orger.html

2. https://github.com/novoid/Memacs

Re: Ask HN: Best solutions for keeping a personal log?

#12

I'm using org mode (in particular, org capture) on my desktop and Orgzly on Android for active logging. For passive logging, I've got Orger, set of scripts that are pulling data from different APIs and render it as org-mode [1]. Having it as org-mode allows me for quick search and recall in the logs. There is also Memacs that uses similar approach [2]. 1. https://beepb00p.xyz/orger.html 2. https://github.com/novoid/M…

A few years ago I came to the conclusion that whenever I was struggling with an information task, the correct answer was org-mode. It's remarkable how I forget it over and over again.

I'm using an iphone, do you have any suggestions about how to sync up entries made on the move?

Re: Ask HN: Best solutions for keeping a personal log?

#13
post #9

I’ve been using Day One for a while. I started using it in 2012 as a simple journal but it became a essential tool in logging my life.

I started using DayOne about two years ago and I've really enjoyed it! I like that it does a lot of the work for us. I do want to dig into the privacy policy a lot more, because the "activity feed" feature seems like it would be really useful but obviously I'm concerned about the persistent location tracking.

I've been trying to come up with ways to automate entry of other data as entries in day one, because something that's really useful is that you can grab a copy of the sqlite database underneath it and do what you want with it.

Re: Ask HN: Best solutions for keeping a personal log?

#14
post #7

I'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…

I use Telegram the saved messages thread, which I have pinned to the top. You basically send messages to yourself.

I didn't think of using telegram, and that has easy arbitrary file attachments to go with it. I wonder how easy it is to grab the transcripts and transform them, I'll have to check it out!

Re: Ask HN: Best solutions for keeping a personal log?

#15
post #7

I'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…

Exactly for this purpose - using TG as a "personal logging/journaling" platform - I've long thought of building a bot. Since Telegram's bot API is very robust, simple to use and set up, it can be done easily.

I've imagined the bot to:

* save each message in the chat as a separate "log" in a text file that is saved on an online backup. This can be a private GitHub repo, OneDrive, etc.

* give a short summary/statistics of how much I wrote

* tag message with the hashtags I use

...etc.

I haven't got time to start it, but hopefully I do soon. How would you like this sort of a personal bot?

Re: Ask HN: Best solutions for keeping a personal log?

#17
post #7

I'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…

How you find information. It looks like good for 2-3 days or week but after a month you could not able to find the information.

Re: Ask HN: Best solutions for keeping a personal log?

#18
post #7

I'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…

How you find information. It looks like good for 2-3 days or week but after a month you could not able to find the information.

Using hashtags to tag messages can be helpful. Overall, Telegram has a nice search algorithm that plays well with hashtags too.

Re: Ask HN: Best solutions for keeping a personal log?

#19
post #7

I'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…

Exactly for this purpose - using TG as a "personal logging/journaling" platform - I've long thought of building a bot. Since Telegram's bot API is very robust, simple to use and set up, it can be done easily. I've imagined the bot to: * save each message in the chat as a separate "log" in a text file that is saved on an online backup. This can be a private GitHub repo, OneDrive, etc. * give a short summary/statistics…

Oh! A friend of mine made a bot like that! https://github.com/martinthenext/daytobase

Re: Ask HN: Best solutions for keeping a personal log?

#20
This 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 keep me aware of my transactions, plus I like to add comments and customize the entries instead of just loading them from the institution's CSVs.

[0] https://www.ledger-cli.org

Post reply on HN