-
A couple of months ago I started to use Messages for talking to myself.
-
Why do I want to do that?
-
When I want to figure something out, I noticed that the best way to do it is to start writing in freeform text.
-
It feels like talking to myself, which helps me to externalize my ideas, and find solutions quickly to problems. It’s like a pre-thinking phase for capturing ideas in a timeline format, then organizing them later in a mindmap or an outline.
-
Slack has a similar idea of why you should start to message yourself. When you open your profile and press the Direct Message button, the following message appears on the top.
-
This is your space. Draft messages, list your to-dos, or keep links and files handy. You can also talk to yourself here, but please bear in mind you’ll have to supply both sides of the conversation.
-
-
Others also wrote about this idea in more detail. It is the modern version of emailing ourselves.
-
Messages is actually a pretty cool candidate for this workflow. It is available on all my devices, I can pin messages for reviewing them later, and it is still the best way to share information between my devices when AirDrop and Handoff farts themselves.
-
-
How to set it up?
-
Texting with ourselves in Messages is a bit weird since every message will be sent back in the same thread duplicating everything. We can avoid that by registering a new iCloud account and sending messages to there.
-
I have a sparse iCloud sandbox account which I use for testing. I logged in from my old MacBook Air, then I started to write thoughts for myself over iMessage.
-
We have to log into a separate iCloud account at least once, otherwise, Messages won’t pick up the account as a proper recipient.
-
-
-
This is yet another version of the capture step in GTD
-
This idea was cool, but for me it quickly fell apart. People get the idea of writing stuff down, but they forget that it needs to be processed later.
-
When I had to pull out data from Messages, it was hard to mark my processed position in the timeline.
-
I started to use a marker message by typing 5 equal signs which is similar to how I mark my processed position in my notebook using a double line.
-
This is a very important note about something.
-
======
← This is my “processed” bookmark. Anything above this line is processed and I don’t need to see it again. -
My Notebook System (part 3): Field Notes Pocket Notebook – Decoding
-
-
When I process, I usually reference information between apps, which means that I like to link to the source or at least copy the text out into a place that I can link to.
-
There is a hidden URL scheme in Messages, but it is really hard to link to messages.
-
sms://open?message-guid=UUID
-
If there is a data detector visible in your message (like the text of “tomorrow 9:00am”), Messages will underline it, and you can create a new event or a reminder by clicking on it. Creating a new reminder will also add the link to the message which you can copy.
-
-
-
Getting links or text out of Messages is actually bit convoluted.
-
-
Strflow, an actual app made for texting yourself
-
I just found a unique new app today called Strflow, which mixes note-taking with a messaging interface. It works exactly like I wanted to use Messages.
-
Why it is better than Messages?
-
There is a “Copy Note Link” command for every note.
-
Notes can be edited after they are created.
-
There is a minimal Markdown-like syntax available, which lets me have the right amount of formatting for quick notes like these.
-
-
I love unique apps like this one – that’s one the reasons I love the Mac, since you can always find interesting tools like this – although it still has some missing pieces.
-
iOS version (the developer mentioned that he’s working on it).
-
Spotlight integration: it just feels right to index and search snippets of information in Spotlight.
-
Better export: we get a JSON file on export, but since the app uses Markdown for formatting, why not export proper Markdown notes?
-
It would be even better if I could define a date range for exporting, so processing information can be done outside of Strflow.
-
-
Although there are unique links for each note, getting them is a bit hard. I have to
⌃Click
and choose the “Copy Link to Note” command from the context menu which is not available in the app’s menubar.-
strflow://show-note?id=UUID
-
-
Selecting notes can be done using the trackpad, but having keyboard shortcuts for navigating up and down would be useful to select one or multiple notes.
-
Related to the previous issue, I could use UI scripting and Hookmark to get the currently selected notes’ URL.
-
-
-
-
So what am I using Strflow for?
-
As I mentioned, I mostly use this app for talking with myself to figure out something by writing.
-
I started the draft of this post there.
-
I saved couple of links which I want to revisit later.
-
It is like a private version of Mastodon.
-
-
It is going to be another inbox/journal/status update tool next to my interstitial journal in TaskPaper.
-
2024.01.05.
Bookmarked “Mind map & Outline Ideas – Escape”
Escape is your place to jot down notes & ideas, connect and develop them, and bring them to life.
2024.01.01.
Bookmarked “Tofu · Amar Sagoo”
Tofu was designed to help you read text on your Mac.
Text is often very wide, making it hard for your eyes to jump from the end of one line to the beginning of the next. That’s why newspapers have narrow columns: it makes them faster to read. Another problem is that vertical scrolling can be disorienting, as lines of text all look pretty much the same and are hard to track as they move.
Fuck yeah, there is an update to Tofu!
2023.12.26.
Bookmarked “Card Buddy | Card Buddy: organize your thoughts and ideas using index cards on the Mac.”
A Virtual Corkboard for Your Notes
Index card lovers rejoice! Your brainstorming tool is here.
2023.12.24.
Bookmarked “OpenAny: macOS app and file launching springboard”
macOS app and file launcher for simple scripting.
2023.12.23.
Bookmarked “iA Markdown Dictionary”
Need to quickly learn or recall Markdown syntax? Our Markdown Dictionary is here to help. It’s a standard macOS dictionary built for the Dictionary app, so it’s compatible with iA Writer, iA Presenter, and other Mac apps too.
2023.12.21.
Writing a Book with Unix
Follow-up on Using iA Writer as an end-to-end writing system.
2023.12.19.
It is more than funny (and sad) that Electron apps are so bloated now that they can’t even offer a proper universal binary. You have to pick the CPU family on download.
New Hookmark scripts for Reminders
I updated my Reminders/Hookmark integration script recently to make it faster on Sonoma. I also made sure that I have a “New Item” part too, so I can create reminders directly from Hookmark.
The “Get Address” script uses the backing SQLite database to find the ID of the selected reminder by title.
There are some caveats to keep in mind:
- We have to replace the
remindersDatabasePath
property with the proper database path which is different for everyone. - Reminders are matched by title, so if we have multiple reminders with the same title, the script may fail to link the proper one.
Here are the scripts updated for Sonoma:
Get Address
use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions -- Replace this with your Reminders database path. property remindersDatabasePath : "/Users/yourusername/Library/Group Containers/group.com.apple.reminders/Container_v1/Stores/Data-some-UUID.sqlite" tell application "System Events" tell its application process "Reminders" tell its window "Reminders" tell its splitter group 1 tell its UI element 3 tell its UI element 2 tell its UI element 1 set reminderOutline to first UI element whose selected of UI element 1 is true set theReminderName to value of UI element 2 of UI element 1 of UI element 1 of reminderOutline end tell end tell end tell end tell end tell end tell end tell set theSQLCommand to "/usr/bin/sqlite3 \"" & remindersDatabasePath & "\" \"SELECT ZCKIDENTIFIER from ZREMCDREMINDER WHERE ZTITLE = '" & theReminderName & "'\"" set theReminderIdentifier to do shell script theSQLCommand set theURL to "x-apple-reminderkit://REMCDReminder/" & theReminderIdentifier return "[" & theReminderName & "](" & theURL & ")"
New Item (this one can be a bit slow unfortunately)
tell application "Reminders" set theName to "$title" set theBody to "$user_link" set theReminder to make new reminder with properties {name:theName, body:theBody} set theReminderURL to the id of theReminder set theReminderURL to do shell script "echo \"" & theReminderURL & "\"|sed 's/x-apple-reminder:\\/\\//x-apple-reminderkit:\\/\\/REMCDReminder\\//g'" activate end tell theReminderURL
I haven’t tested these on earlier systems.
2023.12.17.
Bookmarked “Exporter”
Export all your notes from Apple Notes to Markdown/HTML with attachments.
I don’t have a need for this, but it’s good to know that it exists.
Bookmarked “Sonar – Native App for GitHub/GitLab Issues”
Sonar is a new native Mac app for viewing and editing GitHub/GitLab issues. It’s lightning fast and stores your tasks locally so viewing, searching, and editing is instant (even offline).
I was looking for something like this for a while now.
Bookmarked “Breaks – Focus timer for iOS”
After a stupid rejection from Apple, Breaks finally got released:
Breaks helps you do your best work. Breaks lets you easily timebox your work and ensure you’re taking adequate breaks, so you can focus better and be more productive. Oh, and it’s free.
2023.12.12.
Follow-up on Apple and journaling:
I like the Journal app, even if it’s barebones as all 1.0 apps usually are. Since I mostly use default Apple apps, the recommendation feature works well for me.
It is a good base for more advanced features in the future (I guess we see nothing new until the next WWDC).
I’m going to keep Everlog around as an archive though.
2023.12.09.
Birdhouse: A notepad for Twitter
Still the best app introduction video ever made.
Stickier
I don’t really have a need for a sticky notes app, but I like the design of this one. I have an affection for yellow notepad designs.
2023.12.08.
Read “Michael Tsai – Blog – Mac Menu Bar Icons and the Notch”
On my 13” Intel MacBook Pro, the icons reached to about halfway across the screen. On the 14” M3 MacBook Pro, ironically a machine with a larger display, at least 3 icons get hidden.
This “design” (or lack thereof) is so dumb. It is utterly ridiculous to me that this is still how it “works” two years after the introduction of the redesigned MacBook Pro with a notch. How hard could it be to add an overflow menu with a “«” (or should it be “»”?) button that shows the remaining apps and icons that can’t be displayed? This entire situation with the notch is ironic, because the iPhone notch and “dynamic island” are so thoughtfully designed with zero compromises regarding the functionality of iOS. In fact, they actually provide a better user experience. Yet on the Mac, how the notch interacts with macOS is laughably incompetent. It is shockingly lazy regarding attention to detail, and results in an outright disruptive and confusing user experience.
Here’s my current menubar:
I try to keep my less frequently used icons (like Hookmark) on the left because I mostly invoke them from the keyboard anyway. But I hate when Docker gets stuck behind the notch, and I have to quit other apps on the right to get Docker back to the screen.
Apple should do something about this behavior because it’s really annoying. And no, I’m not going to install a 3rd-party app to fix these issues, even if I love its icon.
Bookmarked “Plaintext GTD using Taskpaper Syntax – GTDist”
A nice tutorial on using GTD with TaskPaper.
2023.12.06.
Read “Web Apps Are Better Than No Apps”
Since web apps can’t just use the components provided by the operating system, they have to recreate everything from scratch. And this creates a lot of burden for developers and, I think, lowers the quality floor. Creating beautiful, compelling apps is possible, but it requires so much work. People building native apps get it all “for free”. In fact, this could be one of the reasons Apple still has such a vibrant ecosystem of great artisanal apps since developers can build most things out of nice ready-made components.
Well, yeah!
Bookmarked “TimeStory: Timeline creation app for Mac”
TimeStory is a Mac app for illustrating events on a timeline, designed to help you easily create plans and roadmaps, capture history, tell stories, and more.
Next to professional tools like OmniPlan or Aeon Timeline, this app seems simple and easy to use, made by one guy.
Follow-up on Setting up Type as a quick capture interface for my TaskPaper journal:
After using this setup for a few days, I just removed my running lists. I still like the idea, but I’m heavily invested time in my TaskPaper journal now, and I’m in the habit of using it, too, so I’ll directly capture there as before.
Running lists isn’t my thing.
2023.12.05.
Bookmarked “zenangst/KeyboardCowboy”
The missing keyboard shortcut utility for macOS
It’s like the free version of Keyboard Maestro.
2023.12.02.
Bookmarked “OPML-compatible apps”
These apps can edit OPML files, or import and export OPML.
Bookmarked “PayOnceApps.com – One-Time Purchase Web, Windows & Mac apps”
There are some cool Mac apps listed here with a one time price.
2023.12.01.
Bookmarked “Type – Take notes without interrupting your flow”
Take notes without interrupting your flow.
Type lets you quickly jot things down with the timestamp attached, without interrupting your flow.
Very interesting use of text files. I want to integrate this app into my workflow somehow.
2023.11.29.
Follow-up on Liked “MailMate”:
I just bought MailMate a couple of minutes ago. It turns out I love to use plain-text email for writing and reading. It’s just way easier to edit my emails in MacVim than to fuck around with the Mail.app compose window.
The Things integration is also pretty cool. I can get the complete plain-text email in the to-do note, which is way more excellent than the jumbled text-fest I had previously parsed by the Things mail service forwarded from Mail.
I’m still developing my workflow around the rule-based smart mailboxes, which are pretty powerful.
I’ll write more about this app in the future.
2023.11.27.
Read “Spreadsheets and Small Software – nilenso blog”
These sheets are like regular programs in many ways. Felienne Hermans, a veteran spreadsheet researcher, puts it very simply: Spreadsheets are code. She also goes on to show that they suffer from the same problems as real software.
2023.11.25.
Bookmarked “Marta”
File Manager for macOS.
Native. Extensible. Fast.
2023.11.23.
Publish bookmarks from DEVONthink
-
I’m messing with my bookmarks today.
-
I keep a lot of cool articles in DEVONthink as my central repository, but I also want to share some of these links here.
-
I’m testing a simple workflow for this using a DEVONthink smart group, which shows me all my bookmarks from my Decoding database that aren’t published yet.
-
I’m using DEVONthink custom metadata to mark a record “published”.
-
-
This workflow desperately needs automation, but I want to start as simple as possible and see how it works in practice.
Bookmarked “Ducklet.app”
The fast, native SQLite database editor for macOS.
Liked “MailMate”
MailMate is an IMAP email client for macOS featuring extensive keyboard control, Markdown integrated email composition, advanced search conditions and drill-down search links[…]
Sometimes, I wonder if I should try to use MailMate instead of Mail.app (at least for some specific tasks). It’s an app made for nerds.
I think it’s even have MacVim integration, and still makes emails available in the filesystem instead of closing them away for Spotlight only.