neilsardesai/Manila: A Finder extension for changing folder colors:
Manila is a Finder extension that lets you change the colors of your folders from the context menu.
neilsardesai/Manila: A Finder extension for changing folder colors:
Manila is a Finder extension that lets you change the colors of your folders from the context menu.
I was in a Tinderbox Meetup last week, which was more about Hook than Tinderbox. I’m not a Tinderbox user, but I’m interested in how other people use their tools.
In the middle of the call, somebody had a question about Hook bookmarks. More specifically, can Hook archive its bookmarks as archive.org does with websites in general? Well there is no feature like that in Hook, and to be honest, doesn’t even need to be, because Hook has great Apple Script integration, so we can query bookmarks from its database.
In conjunction with DEVONthink, we can archive our bookmarks from Hook and save them as Pinboard does. I made a script for this a while back and it’s really helpful. It runs once a week, archives all websites from my Hook database into DEVONthink.
First, download the script from here.
The scripts collect everything into one group in DEVONthink, so you have to create one where the archive can be stored. I would advise a new database even if you don’t have something similar already.
Open the script you downloaded. You’ll see two lines at the top of the file.
set webArchiveDatabaseUUID to "databaseUUID" set hookedWebsitesGroupUUID to "groupdUUID"
You have to replace the databaseUUID
and the groupdUUID
part with the UUID of the database and group from DEVONthink. To do this, open DEVONthink, ⌃click on the database in the sidebar, and pick “Copy Item Link”.
Now, replace databaseUUID
, with the link you copied. You’ll see something like this.
set webArchiveDatabaseUUID to "x-devonthink-item://CA3A9072-0650-4AF3-A608-1786F9D1A98D" set hookedWebsitesGroupUUID to "groupdUUID"
Now, remove the x-devonthink-item://
part, so the top of the script should look like this.
set webArchiveDatabaseUUID to "CA3A9072-0650-4AF3-A608-1786F9D1A98D" set hookedWebsitesGroupUUID to "groupdUUID"
Go back to DEVONthink and copy the group’s link from the same database (it is important to keep the group in the same database) by ⌃clicking on it and picking “Copy Item Link” again.
Replace groupdUUID
with the copied link in the script again.
set webArchiveDatabaseUUID to "CA3A9072-0650-4AF3-A608-1786F9D1A98D" set hookedWebsitesGroupUUID to "x-devonthink-item://B6C2C659-5682-45B5-8D59-107A641F8C2D"
Remove the x-devonthink-item://
part and then save your changes. The top of the script should look something like this now.
set webArchiveDatabaseUUID to "CA3A9072-0650-4AF3-A608-1786F9D1A98D" set hookedWebsitesGroupUUID to "B6C2C659-5682-45B5-8D59-107A641F8C2D"
Now comes the fun part. You can run the script and DEVONthink will start downloading your Hook bookmarks into the group you choose.
The first run can take a while depending on the size of your Hook database. Subsequent runs should be faster since the script downloads only newly added bookmarks.
It is important to know that the script doesn’t sync Hook and DEVONthink, deleted bookmarks from Hook will still be present in DEVONthink.
Also good to know, if you want to archive sites behind a login, you have to sign-in in DEVONthink before you run the script.
I keep this script in the ~/Libary/Scripts/Applications/DEVONthink 3
folder, so it’s available from the script menu in macOS – or in my case, from FastScripts. This way, you can run the script manually from DEVONthink.
You can even make it run automatically. If you use FastScripts, you can create a new DEVONthink reminder on the group you created to store Hook’s bookmarks and set it to run an Apple Script like this every week.
on performReminder(theRecord) tell application "FastScripts" set scriptItem to first script item whose name is "Archive Hook Bookmarks" tell scriptItem to invoke end tell end performReminder
If you want to run it outside of DEVONthink, you can use for example Lingon, which makes it possible to run any Apple Script in the background daily, weekly, monthly, or whatever interval you want.
Tot for iOS is on sale, so I bought it, but I’m not sure if I need it when I’m already using Drafts. Tot almost does the same thing, but I like that is very fast. I used it multiple times today to draft Slack messages, store random pieces of information, keep a bunch of temporary links around for a coding session.
It is a better version of Stickies which syncs with my iPhone and my iPad.
I assigned ⌃⇧T as a global keyboard shortcut for Tot, which opens it from my menubar. Speaking of keyboard shortcuts, I like that I can open each slot via ⌘ paired with its corresponding number key; ⌘1 opens the first slot, ⌘2 opens the second one, etcetera.
Right now, I’m tinkering with Tot. I have Drafts running next to it, and I feel like they overlap too much, but Tot is just better for storing random pieces of bits and blobs.
Maybe at the end each of them will have its place in my tool chain.
So this is my workflow for blogging from Craft at the moment. It is fine, but I’m eager to write an extension that does this automatically, maybe with post formats and image uploads too.
I should try to create a Craft extension to post stuff here directly. They have some examples which can post to Medium or Ghost, no WordPress though… Although the best would be to have real-time sync of an outline, something similar to Dave Winer’s workflow. I almost automated this for OmniOutliner once before.
After this week’s news on 1Password forcing users to the crappy experience of being an Electron app, I started to look for alternatives. I haven’t decided yet, but I’m considering the following options.
I’m leaning toward iCloud Keychain because, nowadays, I like to use the built-in tools of the Apple ecosystem.
The only question I have with iCloud Keychain is where to store passwords of my servers and a couple of app licenses? I think the built-in Keychain app on macOS will be OK for this. It can store arbitrary username/password pairs (great for servers), and it has secure notes which can hold the small number of serial numbers I have.
Right now, the next step is to clean out my old passwords from my 1Password and iCloud Keychain databases before starting the migration process.
Apparently you can safely use Typinator with iCloud Drive as well. I’m syncing snippets for about a year now without any issues.
I’m tinkering with Craft, using it as a daily running journal. The outline-like logging format grouped by dates feels natural because I can write things out without much organization. The freeform nature of Craft makes this process relatively quick and easy.
It just occurred to me that I could also publish posts started as a block in my journal. I started writing this post’s idea, then turned it into a subpage inline and fleshed out more; finally, it was published via Ulysses.
Having this freeform block-level editing in Craft makes it an all-in-one tool for drafting out ideas into whatever I want.
I just want to share a script which syncs due reminders to the Calendar app and it also links back to the original reminder. So it contains a way to link to specific reminders.
This undocumented
x-apple-reminderkit://REMCDReminder/${UUID}
URL scheme works on the latest version of iOS and macOS. The${UUID}
part can be found via AppleScript.The only problem remaining for Hook right now that there no scripting API that I’m aware of to get the currently selected reminder.
I’m using paper based material in my GTD system too, linking to that is really hard.
- Hook could generate a QR code to any link, so I can print and attach it to paper based folders for example.
- Later Hook could scan QR codes by the Mac’s camera and bring up OmniFocus projects, Pages files, whatever we need.
Maybe it sounds dumb and not something I consider high priority, but I wanted to leave the idea here for consideration.
Three was a topic I saw a couple of days ago on /gtd, where redditors discussed which GTD app is the most good looking. It reminded me of a problem I wanted to write about for a while now: their list design’s readability. I know OmniFocus, Things, and Reminders well, so I concluded my experience about their typography below:
A lot of people would say it’s Things. It has a friendly UI, but from a readability point of view, it is one of the worst.
In my daily work, I have two problems with Things:
- It only displays one line per task, which means, if you have longer task titles, you’ll end with a bunch of text clipped out, which is annoying on an iPhone. You have to open each task to see the full title, which is no fun when you quickly want to review your errands list.
- Things displays every task list grouped by project. If you like me, you’ll usually have one next action per project, so having each project being this prominent is making your lists very noisy.
I stopped using Things because of these issues, and I switched back to OmniFocus, which displays full task titles, and has nicer list readability overall. Apple Reminder is also good at showing lists, which matters the most at the end, so I would go with OmniFocus and Reminders.
Let’s see these apps next to each other. From left to right are OmniFocus, Reminders, and Things.
As you can see, Things overflows the text and group actions by projects which makes the readability of a typical next actions list much worse. It was the main reason I left Things after using it for two years and switched back to OmniFocus.
I also made a switch from OmniFocus to Reminders in December, but that’s a topic of another post.
Jason Fried wrote a post about doing remote work, with the expectations of local employment. This post resonated with me very well since I had a couple of weird interviews lately. Just a side note: yes, I quit my current job as a Ruby backend developer at TerraCycle about three weeks ago, and I’ll start working as a frontend developer/product designer at Nearcut on March 10th.
There are still companies that refuse to accept that remote work is a viable alternative. They want you to be in the office because “this is what we did before the pandemic, and everything should be back to normal soon.” No, nothing will be like before, and companies should embrace that, not deny it.
Not everyone’s like that. Even big ones consider remote work a viable alternative but don’t have the hiring process and experience to work like that, so they’re relying on old habits.
The enlightened companies coming out of this pandemic will be the ones that figured out the right way to work remotely. They’ll have stopped trying to make remote look like local. They’ll have discovered that remote work means more autonomy, more trust, more uninterrupted stretches of time, smaller teams, more independent, concurrent work (and less dependent, sequenced work).
I’m interested in what COVID-19 will do to remote work because, seriously considering remote work is one of the positive changes of the pandemic that happened in many workplaces. People were forced to work from home. Many companies figured out how to do this successfully, and they don’t want to throw out this knowledge because “everything will be back to normal.”
Jason also writes about native platforms:
Porting things between platforms is common, especially when the new thing is truly brand new (or trying to gain traction). As the Mac gained steam in the late 80s and early 90s, and Windows 3 came out in 1990, a large numbers of Windows/PC developers began to port their software to the Mac. They didn’t write Mac software, they ported Windows software. And you could tell – it was pretty shit. It was nice to have at a time when the Mac wasn’t widely developed, but, it was clearly ported.
When something’s ported, it’s obvious. Obviously not right.
Stuff that’s ported lacks the native sensibilities of the receiving platform. It doesn’t celebrate the advantages, it only meets the lowest possible bar. Everyone knows it. Sometimes we’re simply glad to have it because it’s either that or nothing, but there’s rarely a ringing endorsement of something that’s so obviously moved from A to B without consideration for what makes B, B.
Maybe Basecamp should create a Catalyst version of HEY for Mac from their iOS app, which is quite nice, instead of having a cross-platform Electron thing on the desktop called a “native Mac app.”
Yesterday I installed the latest version of Craft. I waited for iCloud sync because I’m very conservative about where I sync my stuff, and Craft only had its sync server.
The update released yesterday makes it possible to add external folders from iCloud Drive or even offline folders. It is a start, although I was expecting full CloudKit sync, not just an external folder.
It still has some issues and bugs related to syncing. I migrated my Zettelkasten from DEVONthink to Craft; it has about 150 notes right now. I installed Craft on all of my devices, and I’m still experiencing sync errors.
It seems like Craft is stuck in a state where it stops updating files from the iCloud Drive folder I set as a space. I have to reload the folder every time I change something, which is annoying.
The app itself is lovely, way better to use for Zettelkastens than DEVONthink on iOS. I like the initial experience, but syncing problems doesn’t make me trust in the app. I saw the developers are responsive and fix stuff quickly, so I’m hopeful. Until then, I keep testing Craft and see how it will change my habit of writing into my Zettelkasten.
The icon transformation process has started.
Siri’s suggestions are starting to get better on my iPhone. Let’s see the following screenshot from yesterday.
I usually write entries to my food log via Drafts and check my sleep patterns in the Health app around noon. These recommendations are spot-on. But I love how Siri recommends Handoff as well.
I was in the middle of reviewing a next action list yesterday in OmniFocus on my iMac, and I had to leave for a couple of minutes. I grabbed my iPhone to continue, and even before starting to search for that specific next action list via Spotlight, my iPhone was already recommending what I wanted to do.
I love small UX surprises like this.
Nekem alapvetően nincs problémám a Safari tabkezelésével, nem úgy mint a linkelt posztban Dan Morennek, de a Debug menü engedélyezése önmagában is érdekes lehet. Van jópár olyan opció ebben a menüben, amit mi nördök valószínűleg tweakelni fogunk.
Miután az új csapatban Slacket használunk kommunikációra, így megint felmerült a hivatalos Electronos kliens, amit nem vagyok hajlandó használni – akkor inkább megnyitom Safariban. Szerencsére most jött velem szembe a Shrugs app, ami egy egész pofás natív Slack kliens Macre.
Ezt a screenshotot pedig csak itt hagyom a poszt végén.
Replying to
:It’s too bad that Black Pixel got bought by another company. No updates come to their apps since then.
Although I still want to buy OmniGraffle sooner than later, which is also an excellent diagramming app on its own, having a dedicated app to create flowcharts is very appealing. I just found Diagrams for macOS, that just does that.
And the best, it’s a beautiful native Mac app, not the usual Electron crap.