I use a single text file, have done this for decades. I dump everything into it and don't worry too much about structure, it's an incredible resource for "remembering" minutia, things like "what was that server that i thought might have had some issues last August?" Just a quick control-S and I'm there. My current 7+ year old notes file has about 100K lines in it right now. I can tell you what I was doing last year,…
My productivity app for the past 12 years has been a single .txt file
291–300 of 420 posts
Re: My productivity app for the past 12 years has been a single .txt file
#292Earlier quoted context omitted.
I've been doing something similar to track what I do at work for just over a year. I tried keeping a home journal with a similar technique, but it didn't stick. I have a git repo set up, and I run: "vim `date -I`", which opens a text file named for the current date (2020-02-08 today for example). Then I'll put in notes about what it is I'm currently working on. I've come up with the convention of separating tasks wit…
I use vim. Doing files based on timestamps sounds smart so I might steal that. I used just one big file right now and one thing good about it is that you can search all your notes with one command. I also use the uuid command to tag/reference sections. Then, I can just put the cursor on the uuid and hit '*' to jump right to that spot in the file.
I guess that's basically what you wrote, but I had to play with it a bit to understand.
Re: My productivity app for the past 12 years has been a single .txt file
#293For public notes, I use GitBook https://www.aizatto.com/why-gitbook
Re: My productivity app for the past 12 years has been a single .txt file
#294Re: My productivity app for the past 12 years has been a single .txt file
#295I have introduced many people to FreeMind, and the interesting thing is that the numbers have not changed over nearly 10 years: - 50% hate it and cannot grok it - 50% love it and have used it every day since
(link:http://freemind.sourceforge.net/wiki/index.php/Main_Page)
I suggest you use the 0.9.0 version as it has only crashed and destroyed a file once is nearly 10 years..
Re: My productivity app for the past 12 years has been a single .txt file
#296I use a single text file, have done this for decades. I dump everything into it and don't worry too much about structure, it's an incredible resource for "remembering" minutia, things like "what was that server that i thought might have had some issues last August?" Just a quick control-S and I'm there. My current 7+ year old notes file has about 100K lines in it right now. I can tell you what I was doing last year,…
I've been doing something similar to track what I do at work for just over a year. I tried keeping a home journal with a similar technique, but it didn't stick. I have a git repo set up, and I run: "vim `date -I`", which opens a text file named for the current date (2020-02-08 today for example). Then I'll put in notes about what it is I'm currently working on. I've come up with the convention of separating tasks wit…
"======================================================
"put an entry with the date/time (for keeping plan.txt)
"======================================================
command! -nargs=* Entry call s:RunEntry()
function! s:RunEntry()
let s:tm = "\n---" . strftime("%d/%m/%y %H:%M:%S") . "----------------------\n"
execute "normal! i" . s:tm
" enter insert mode because it's time to write stuff now.
call feedkeys("i")
endfunctionRe: My productivity app for the past 12 years has been a single .txt file
#297Earlier quoted context omitted.
I just put my text files in version control. Push/pull, occasionally merge when I forget.
I save these text files to my desktop, call me old school.
Re: My productivity app for the past 12 years has been a single .txt file
#298Re: My productivity app for the past 12 years has been a single .txt file
#299I've been doing this kind of thing for years, to the point of managing highly complex multi-million dollar multidisciplinary projects very successfully with basic text files. When you get right down to it, it's the embodiment of a Kanban system in a text file. Because I have so much to manage every single project has its own text file in the relevant directory. In other words, I don't have one text file to rule them…
Re: My productivity app for the past 12 years has been a single .txt file
#300Earlier quoted context omitted.
I handle this by aliasing `todo` to `vim scp://[my website]/~/todo.txt`.
Wait, you can use scp as a protocol?!
For example, to run a remote command using an inline org-mode source block:
src_sh[:dir /ssh:host:]{some command}
Or to run code using a remote Jupyter kernel within Org-mode in Emacs: #+BEGIN_SRC jupyter-julia :session /ssh:ec2:/run/user/1000/jupyter/kernel-julia-0.6.json
...
#+END_SRC
https://github.com/dzop/emacs-jupyter/blob/master/README.org...