Hey everyone,
Here is a simple little productivity tip. Tape maximises the power of having everything in one seamless place and quick note-taking, whether on your desktop or mobile, can make all the difference.
For Apple users, here is a simple automation trick that can significantly speed up this process. If youāre on Android or Windows; there are equivalent solutions out there.
Hereās what youāll need:
- An App for Note Storage
Create one and customize it to your liking. Personally, you definitely donāt need all the fields I have:
- Setting up Webhooks
Create an automation with 'When a webhook is received".
I have three quick entry types:
qn
for notesi
for ideasa
for actions
The code snippet provided helps to process the note and extract any entry type specified at the start. If none is found, it defaults to QN
.
const mn = jsonata('note').evaluate(webhook_payload_parsed);
if (mn.includes(" - ")) {
var_note = mn.split("-")[1].trim();
console.log(var_note);
var_prefix = mn.split("-")[0].trim()
console.log(var_prefix)
} else {
var_note = mn
var_prefix = "QN"
console.log("String does not contain '-', so default used.");
}
- Creating an Apple Shortcut
This is incredibly simple. Add an āAsk forā field and then a āget the contents of URLā. Set them up as shown in the image below:
You can trigger this shortcut via various methods on your iPhone; āBack Tapā is particularly handy. I also have a keyboard shortcut on my Mac to launch it.
Pro tip for Mac users: Instead of hitting return, use [Command] + [Return] ā + āµ to close the window and send your note into Tape.
- Adding a Title
While I prefer not to give my āquick notesā a specific name, having a general idea can be helpful in the list view. Hereās a calculation field that takes the first 6 words from the note when a name isnāt available:
const d = date_fns_tz.format(ļ»æ@Created onļ»æ, 'yyyy-MM-dd HH:mm')
const n = ļ»æ@Noteļ»æ.split(' ').slice(0, 6).join(' ');
if (ļ»æ@Nameļ»æ !=null && ļ»æ@Nameļ»æ !== "") {
ļ»æ@iconļ»æ + ļ»æ@typeļ»æ + " - " + ļ»æ@Nameļ»æ + " - " + dļ»æļ»æ;}
else
{ ļ»æ@iconļ»æ + ļ»æ@typeļ»æ + " - " + n + " " + dļ»æļ»æ;}
With this setup, once youāve captured that āthoughtā in Tape, the possibilities are endless. You can expand on it with AI, turn it into a task, or link it to a contact to name just a few.