Tips & Tricks Tuesday: Find your focus with MilkScript

Bob holding a lens to his eye to get a narrow focus.

Sometimes you know what you want to work on and you just need a little nudge; other times you need to make sure you don’t forget about a few things before the end of the day.

This week’s tip comes from fabianhemmert, who shares a dual-purpose Smart List for Pro users: throughout the day it uses MilkScript and IFTTT to change the criteria to suit your intended focus.

(MilkScript and IFTTT require a Pro account.)

Extra tip: you can customize the criteria within the MilkScript to set up the Smart List you want to use. 😎

Today, I’d like to share how I use MilkScript to improve my focus.

During the day, I want to focus until the most important things on my to do list. However, during the last hour of the working day, I want to focus on different things: less important, more paperwork-style, things that, if they pile up, would become a stressor.

So, I developed a system of a Smart List that changes its contents over the course of a day.
To achieve this, I wrote two MilkScripts, which I trigger with a timer (in my case, with IFTTT, which has a simple ‘clock’ trigger. I trigger it at 0:05am, the daily reset, and at 3:00pm, to switch the focus to the lower-priority tasks). Here are my two scripts:

The Daily Reset (run at 0:05am):

const focusList = rtm.getSmartLists().find(smartList => smartList.getName() === ‘Focus’);

focusList.setFilter('dueBefore:tomorrow AND NOT list:WaitingFor AND NOT tag:afternoon AND NOT tag:evening AND NOT tag:mail AND NOT priority:none AND NOT priority:3’);

The Last Hour (run at 15:00):

const focusList = rtm.getSmartLists().find(smartList => smartList.getName() === 'Focus’);

focusList.setFilter('dueBefore:tomorrow’);

I also figured out that I’m an avid postponer of things: I want to see many tasks I could do today, but I often simply leave things for tomorrow.

To accomodate for that, and to avoid me having to postpone all things from yesterday to today, I wrote another MilkScript:

Bonus: Postpone everything to today that’s overdue:

const tasks = rtm.getTasks('status:incomplete and dueBefore:today’);
console.log('Incomplete tasks due today: %d’, tasks.length);

tasks.forEach(function(element, index) {
console.log('Element: ’ + element.getName() + ’ at Index: ’ + index);
element.postpone()
});

… it will take all overdue tasks and simply move them to today. (Of course, that means that I’ll have to know myself which one of them is *really* due today…)

Thanks for sharing your tip, fabianhemmert! You’re our Tips & Tricks Tuesday winner this week.

Do you have a suggestion for our weekly Tips & Tricks post? Got an interesting set-up or idea? Head over to the Tips & Tricks forum, add a new topic, and let us know how you use Remember The Milk. Each week we’ll give away a 1 year Pro account to the user whose idea inspires the Tips & Tricks Tuesday blog post for that week.

Read more

Bob and an elephant sitting side by side.

Tips & Tricks

Tips & Tricks Tuesday: Managing checklists with Evernote

Organizing your lists is an important step to keep your information ready when you want it. This week’s tip comes from gustavo.marins, who shares a simple way to keep a group of checklists within reach for reference. I use Remember The Milk together with Evernote to manage various

2 min read
Bob T. Monkey with 20 chocolate chip cookies.

Behind the Scenes

Birthday #20

This week, we celebrated Remember The Milk’s twentieth birthday! 🎉 Back in 2005, Remember The Milk was just a small idea shared by two humans and one enthusiastic stuffed monkey. It’s hard to believe we’re now celebrating two whole decades of helping people all around the world get

1 min read
Remember The Milk icon and widget on iOS 26.

Updates

iOS update: Now with support for iOS 26 and watchOS 26!

Our latest release updates the app to support iOS 26 and watchOS 26. If you’ve updated to the latest iOS or watchOS, you need to download this update! 😊 Here’s what you’ll find in version 10.0.1: * Improved: We’ve made a whole bunch of fixes to

1 min read
Bob enjoying an espresso and a treat.

Tips & Tricks

Request for your best Tips & Tricks ideas!

Just like a good coffee, we like enjoying our Tips & Tricks posts regularly. To that end, we need your help! We are requesting a fresh batch of your tips, whether you are using Remember The Milk in a unique way, have found something especially helpful, or have a fancy

1 min read