Notetime: Minimalistic notes where everything is timestamped
21–30 of 137 posts
Re: Notetime: Minimalistic notes where everything is timestamped
#22Re: Notetime: Minimalistic notes where everything is timestamped
#23Re: Notetime: Minimalistic notes where everything is timestamped
#24Nice job! Just noticed—when an item is edited, the edited timestamp isn’t being captured.
If you want an entry timestamped to your current time, you can make a new entry.
Re: Notetime: Minimalistic notes where everything is timestamped
#25Re: Notetime: Minimalistic notes where everything is timestamped
#26Nit: clicking "Create X" to add a new tag seems worse than pressing enter to create one as you have to go off the tag menu and back onto it to create or add another, but it's not necessarily clear that you can press enter to create one.
Re: Notetime: Minimalistic notes where everything is timestamped
#27I really don't get how this can't be emulated with the F5 key, or something like Sublime Text's InsertDate package, or a text expansion software. What does this note taking provide that's any different?
Yeah, this seems like an Obsidian package waiting to happen.
Re: Notetime: Minimalistic notes where everything is timestamped
#28I'm using a simple little combo of a shell script and alias to append a line of text to a text file in a known location. The script is just to prepend the line with a timestamp. Stupid and simple, but hey, it works for me.
My aliases:
alias ttag='/cygdrive/c/Dropbox/tools/ttag/ttag.sh'
alias ttagcat='\cat /cygdrive/c/Dropbox/tools/ttag/ttag-logfile.txt'
alias ttago='open /cygdrive/c/Dropbox/tools/ttag/ttag-logfile.txt'
The shellscript: 1 │ LOGFILE=/cygdrive/c/Dropbox/tools/ttag/ttag-logfile.txt
2 │ TIMESTAMP_NICE=$(date +"%F %H.%M.%S - %s:")
3 │ echo $TIMESTAMP_NICE "$@" >> $LOGFILERe: Notetime: Minimalistic notes where everything is timestamped
#29If you use org-mode, you can just set up a git repo which auto-commits with gitwatch. And run magit-blame when you want the timestamps. With the advantage that it doesn't distract you when you don't need to see them, but super useful when you want to check when a note is written.
Re: Notetime: Minimalistic notes where everything is timestamped
#30Btw, F5 in Notepad inserts a time stamp.