Live data from Hacker News

Ask HN: What do you use to organize your knowledge?

news.ycombinator.com

11–20 of 81 posts

Re: Ask HN: What do you use to organize your knowledge?

#14
I just use Google. Keep, Gmail, Calendar for most things. I have a few text documents for recording important information I keep in Google Drive as well. Emails and sometimes even pitches / speeches I keep in gmail as a draft. Used Evernote for a while, but it's just bloat, I don't need another app.

I often have a text file open on my computer that I write quick notes in. Most of my knowledge that isn't like a random reminder note lives in my head though, I'm pretty solid on my memory.

We use Trello for business, so I keep anything business related in there, so other people have access to it if need be.

Re: Ask HN: What do you use to organize your knowledge?

#15
I have written a few scripts to manage my abundant note taking.

In a specific directory, I arrange notes according to subject in directories, and the script parses them and spits out HTML files that displays them in a fashion I find useful. With MathJax, I can render LaTeX. It also spits out an index files so I can see at a glance my subjects and notes on those subjects.

I've been giving some thought to doing something more involved, so I can get full text search capabilities from the index page. It's something I play around with every so often as the inspiration hits me. I will not be surprised if this posts leads me back to playing with it for a bit, although I am busy for the upcoming week already.

You can trivially get something similar with something like vimwiki [0]. The only reason I went further was that I wanted greater levels of customization.

[0] https://code.google.com/p/vimwiki/

Edit: The full text search from the index is just a nicety given the way I like having the notes displayed. I can already grep from the command line, of course. I have other ideas about nice-to-have dynamic behaviour, but a lot of the stuff falls into the lower percentages of the 20% of the 80-20 split.

In The Pragmatic Programmer, one of the tips advocates keeping knowledge in plain text:

> Keep Knowledge in Plain Text

> Plain text won’t become obsolete. It helps leverage your work and simplifies debugging and testing.

The full text expands on the benefits, such as searchability and other stuff I can't recall at the moment.

I try to stay as close to possible to plain text as I can. Even Markdown is a bit heavy for the task, although I have given some thought to adopting it and avoiding needing any custom parsing.

Lastly, I wasn't clear why I output to HTML. I put them up on a server so that I can access them remotely. I can also upload notes, or input a quick note to a textarea and submit it. It's device-agnostic; I just need a browser. I haven't bothered to implement making currently existing notes editable.

Re: Ask HN: What do you use to organize your knowledge?

#16
Prepare yourself... [1]

I have quite a system, but it works. I'm a student, and I utilize Evernote, Google Keep, Microsoft OneNote, Pocket, 8x11 ringed notebooks, and a small field book.

Evernote is for items I may need to a long time: recipes, guides from the internet, personal notes, etc. I'm finding I don't use it much, actually. :-/

Google Keep is incredible for to-do lists, quick notes, this sort of thing.

OneNote is my primary note-taking program, for meetings, for class, anything. I just bullet everything and go at it.

Pocket for saving articles. It has an incredible search function.

8x11 ringed notebooks for times where a laptop is inappropriate, or when I need to physically draw something.

The field notebook was a gift. I use it to host my big ideas and inspirations.

[1] https://www.youtube.com/watch?v=okIAAeb2WVA

Re: Ask HN: What do you use to organize your knowledge?

#17
post #12
post #6

simplenote + notational velocity

Simplenote for me too on all my devices.

Me too.. until recently, because there's no way to switch to a fixed width font. So I've moved to the built in mac Notes app. You can hack the resources files to set a plain background and better default font.

As soon as Simplenote allow font changes, I'm going back though for the Android cross platform support.

Re: Ask HN: What do you use to organize your knowledge?

#19
After playing with various (note-taking) applications/apps I found all of them severely lacking (for several reasons). I was always for the lookout of the one-size-fits-all application, which I obviously never found.

Realizing that there is no such system/app I split things out:

* Important Stuff as well as trivia -> CalDav... believe it or not, but CalDav beats most other systems/apps out there, it's accessible on almost any device and you usually have a wide variety of applications to edit your "calendar events", use different calendars for important vs trivia

* Stuff you read on the internet -> obviously (synced) bookmarks (firefox, chrome, opera and others have builtin sync)

* Ideas, plans, drawings -> A5 pen and paper notebook (most people will advocate moleskine, I prefer Leuchtturm notebooks (to each his/her own)

* Research, papers, references -> good old text files, index + txt + pdf + bib (vim + vimwiki + git + some zsh alias like wiki="cd ~/wiki/; git pull; vi index.wiki; git commit -a; git push; cd -")

So far, this works quite well, although I have to admit that while separation is king, it also hinders creativity at times, so I'm slowly starting to integrate other things into the wiki (write firefox bookmark and caldav importer/parser, thinking about scanning/digitizing notebooks...) to be able to cross-reference things. The long term goal is to create a visualization that allows me to visualize (duuuh) all this data in different ways (especially useful for research and connecting the dots).

Hope this helps and I would really be interested how others manage this, especially regarding research, papers etc (Mendeley and others just aren't flexible enough for me...).

Re: Ask HN: What do you use to organize your knowledge?

#20
post #18

Emacs org mode and Dropbox. I also keep a notebook for sketchnotes and mindmaps.

Yep same here. org-mode FTW! You can use it as a personal wiki only able to keep all your data in plain text: no web server or database required. I still use filesystem as my primary organization so I only use hyperlinks occasionally. I put the whole load in dropbox so I can access any of it from my phone.
Post reply on HN