Live data from Hacker News

Ask HN: Do you keep a personal journal?

news.ycombinator.com

11–20 of 109 posts

Re: Ask HN: Do you keep a personal journal?

#11
I keep a personal journal.

I have yet to find looking back over it useful. I helpful in organising my thoughts when writing it down.

I used to use Day One but now I use a simple web app running that I built to replace Day One and Evernote late last year.

I'd build your own journal setup. Plain text files would likely work too. Make sure to back it up. It's a pain changing the system after you've written out 1000's of entries.

I tend to write about what's going on and what's coming up as well as what I'm thinking / worrying about.

Advice would be to just write it for yourself - assume it'll only ever be read by you. I find that helps me get things down without fussing.

Re: Ask HN: Do you keep a personal journal?

#12
Yes.

I tried to for many years with paper and pen. It never worked for me until I started using DayOne [0] on iOS and Mac. Simply superb design and one of my favorite pieces of software to use because it does (almost) exactly what I want it to .

When I type, I'm able to render my thoughts directly into text, whereas when I write with a pen I have to think about the physical process of writing. I imagine I'm not the only one here who feels this way.

A valid criticism of DayOne is that they don't currently support strong encryption, and their (optional) sync service stores your entries on their server. Their blog said that they are working on a good client side encryption implementation [1], however the last update was some time around the middle of last year [2].

[0] http://dayoneapp.com/

[1] http://dayoneapp.com/2016/05/end-to-end-encryption-for-day-o...

[2] http://dayoneapp.com/2016/08/encryption-update/

Re: Ask HN: Do you keep a personal journal?

#13
Do you ever have ideas? Things that seemed interesting? That's pretty much what goes into the notes section of my journal. It's all on my phone so it's always with me.

I keep an unstructured, personal journal, and half of what's in there are thoughts I have, going to bed or waking up in the morning. There are some good pieces of writing that've come out of it and just yesterday, a former coworker and friend thanked me for some observations I had about the company we once worked at. Sometimes the things we reflect on can be a big deal.

Re: Ask HN: Do you keep a personal journal?

#14
I keep a written personal journal where I write whatever I'm concerned with, mostly along the same areas as you mentioned too. And I preform a weekly review and rating every Sunday. Have been doing so for about 3 years.

I started to aid my sleep, putting all the racing thoughts in my head down on paper and closing the book on them was very calming, I can then forget them for a while.

I also love the act of translating your nebulous thoughts into (semi) clear language of written words, to me it's a focusing lens on your life, and allows associations, perspective and ideas that may not come about otherwise. Even if just because it forces you to reflect for more than some fleeting seconds.

I never see myself changing the primary method of writing these down freeform. But every time I finish a journal I do read back through and write up in google docs some bullet point style wisdoms and take-aways to remember for the future .

Glad to know there's others that get benefit from journaling too.

Re: Ask HN: Do you keep a personal journal?

#15
"Journaling" seems like a broad term for everything that you want to do. Some people journal about their day, others jot down ideas, some people use it to bookend their day.

Goal setting, Mood Tracking, Habit Tracking, Reflection Etc. is hard to lump into one system, but I have seen it done by a few people.

I personally (and know hundreds of others) spent years writing in a blank notebook with a structure that I created for myself.

Something that would allow me to write my goals, map out my day, write what I'm grateful for, track my important tasks, etc.

I saw this as a problem, asked some friends if they had the same issue, and decided to create something that would have everything above.

You can check it out here: https://bestself.co/products/self-journal

This is not a "plug"

You can download the PDF on this page and check it out first.

I believe in it that much that I want everyone to have access to this.

Cheers!

-Allen Co-Founder | BestSelf Co.

Re: Ask HN: Do you keep a personal journal?

#16
I don't keep a journal. I beliebe I would find it tremendously useful. N/A I believe—though I haven't read it yet—that GTD (by David Allen) has some elements about personal retrospectives in it: have a look at what you did, what you wanted to do, compare and improve.

Again, I don't do this (though I want to) but I'll follow this discussion with interest!

Re: Ask HN: Do you keep a personal journal?

#17
I think you should watch Cody's Lab's Q&A where he takes out his journal and shows off what's inside of it. It'd like to do that some time when I finally have extra money and time to spend on cool side projects. He just keeps logs of experiments. Title + Picture + explination of idea. I think it's a good formula and I've love to try it.

Re: Ask HN: Do you keep a personal journal?

#18
If yes, do you find it useful?

Yes. I mostly do it to unwind/relax. I think it's a good way to get your brain to slow down and collect your thoughts.

What tools would you recommend?

I use pen and paper. I stare at a computer all day and it's nice to take a break. Obviously, there are a ton of upsides to doing things digitally but for my particular use case I wouldn't benefit.

Is there any specific methodology that you follow?

I used to keep several notebooks for various purposes. I found it to be a burden. I'm way less organized now but it's easier to just put everything in one notebook.

When journaling, do you try to track any specific aspects of your life or just write about anything that is currently occupying your mind?

A lot of what I write about are problems I'm working on. I also write a lot of reviews, movies, restaurants, things I drank, etc. If I can't think of anything I'll usually write a short story from some writing prompts. I have no aspirations of being a writer, it's just fun sometimes.

Any advice on how to get the most out of personal journaling?

Try to do it everyday. My life isn't exactly full of excitement so sometimes it's hard to get motivated to write about it but there's always something I could be writing.

Re: Ask HN: Do you keep a personal journal?

#20
Yes, I've recently started building a system to store journal entries among other types. They're markdown files in a Git repo which can then be processed (using Hugo) to make a browsable static site.

I'm storing four types of content:

- J, journal entries, one file per day with a summary of what I've done that day. Already proving useful, I forget what I did three days ago.

- N, notes, working notes on a topic. I treat this like a half neat half messy notebook. I write things in topic files while working through a problem.

- T, thoughts, similar to notes but much neater. Often longer form and drafted and rewritten a few times these are small 'articles' on my thoughts on a particular topic. One or two may get converted into blog posts.

- Q, quotes, if I find a quote in a book or online I find interesting it gets a file in here.

The output is a linear weblog style currently.

I've only had this running for a few weeks and it's rather cumbersome at the moment. What I hope to improve on:

- Improve onboarding, hugo has a nice tool which sets up new documents and opens the editor: `hugo new n/topic.md`. I want to build on top of this to reduce friction when writing.

- Away from PC. This system works very well when I'm in front of a computer. When I'm not I have read-only view on mobile. I take notes on paper, the best of these get transcribed into the system. I'd like a way to write on mobile and have that automagically get added into the system. The backend would probably be an AWS lambda function, frontend, perhaps a web app?

- Frontend, I want search and better browsing, tagging &c. But this will come later, when I have more content.

I'm trying to stay detached from any 'app' and maintain control of my data. The 'solution' I'm building will hopefully serve me for a long long time.

Post reply on HN