Hi,
It's not as sophisticated as the log solution, but having a simple tiddler
like the one below will create tiddlers with timestamp as title when
hitting enter and supports inline tagging using hashtags; etc. writing
"This is a #test with tags" and hitting will add a tiddler and tag it with
"test" (and "$:/tags/item" for easy filtering)
\define additem()
<$action-listops $tiddler="$:/temp"
$tags="[enlist{$:/temp!!text}lowercase[]removeprefix[#]]" />
<$action-listops $tiddler="$:/temp" $tags="+[append{$:/temp!!tags}]
$:/tags/item" />
<$action-createtiddler $basetitle=<<now "[UTC]YYYY0MM0DD0hh0mm0ssXXX">>
text={{$:/temp!!text}} tags={{$:/temp!!tags}} />
<$action-setfield $tiddler="$:/temp" text="" tags="" />
\end
<$keyboard key="enter" actions=<<additem>>>
<$edit-text tiddler="$:/temp" tag="input" default="" />
</$keyboard>
<$list filter="[tag[$:/tags/item]]">
* {{!!text}}
</$list>
Best,
Anders
søndag 26. april 2020 07.35.59 UTC+2 skrev Scott Kingery følgende:
>
> An article by Anne-Laure Le Cunff titled Interstitial journaling:
> combining notes, to-do & time tracking - Ness Labs
> <https://nesslabs.com/interstitial-journaling> introduced me to the
> concept. She wrote, "the basic idea of interstitial journaling is to write
> a few lines every time you take a break, and to track the exact time you
> are taking these notes."
>
> I liked the idea and thought I might be able to cobble together an
> interesting tool for it using TIddlyWiki. Lots of great plugins and code
> from Tiddlyblink make it not too hard. The main concept is being able to
> add a new journal entry with as few barriers as possible.
>
> If it sounds interesting, have a look here:
> https://techlifeweb.com/tiddlywiki/dailynotes.html
>
>
> Scott
>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/1c5699a5-3de0-442a-a5ee-adb2c8c98047%40googlegroups.com.