
The ¥100 store by our place has a party section. There are really small air pumps that people buy for filling balloons. They make perfect keyboard dust cleaners. Sure beats compressed air cans.
The ¥100 store by our place has a party section. There are really small air pumps that people buy for filling balloons. They make perfect keyboard dust cleaners. Sure beats compressed air cans.
Ten years ago macbooks were perfect for winter because they heated up. Summer was kinda rough. Tokyo apartments have no central heat.
Now this laptop is like resting my hands on an icey piece of metal in winter. Summer is nice.
My note using voice dictation in at a noisy show says "Make candles out of old bananas". Took me a minute or two to remember that I wanted to make handles out of old bandanas last night.
The end of year in Japan means it is (大掃除)time at our place (and everyone elses too). The big clean to refresh the place for the new year. My plan is to set a timer for 20 minute intervals. Twenty minutes computer time and then twenty minutes clean time. Makes it a little more fun. Throw on some music and get things in order. My mantra for the day is "what is it? where does it go?" then wipe and put it in its spot. We have a small place so it isn't so daunting.
At the end of the year, I think back on what was a work thing that could be down easier/lazier for the next year. Then I get the fancy app that solves the problem as a self present. The rules are it need to be/feel like an Apple app and can't have a monthly subscription. Past examples are apps like MindNode for mind mapping, Text Sniper for copying text, and Name Mangler for bulk file editing. Each one makes getting things done less of a chore.
This year I got Retrobatch for bulk image editing. Stoked to play with it and get some workflows happening. Just typing this has my mind planning one for responsive images. Stoked!
It's weird how janky Shortcuts is at getting what you are currently listening to. I've never gotten the actual Music shortcuts to work on desktop. There is an option for getting what is currently playing with a Shazam shortcut but that doesn't give you the album name.
Shortcuts does run Applescript though. I did a little searching and found the script for getting what you are listening to. Very cool how quickly it grabs the result.
tell application "Music"
if player state is playing then
set currentTrack to current track
set albumName to album of currentTrack
set artistName to artist of currentTrack
set albumYear to year of currentTrack
set albumGenre to genre of currentTrack
return "Currently listening to: \"" & albumName & "\" by " & artistName & " (" & albumYear & ", " & albumGenre & ")"
else
return "Music is not currently playing."
end if
end tell
Getting this working is inspiring me to use Applescript more with Shortcuts in the future.
I have an Apple Shortcut I run every morning cleverly named "Morning". When it is clicked, it sets me up for a new day. It chooses random dumbbell exercises. It chooses a random drum rudiment to focus on for the day. It chooses a random grammar pattern to study in Japanese for the day. It also prompts me to write one sentence for a One Sentence Journal.
Everyone's routine is different, so yours will be different. The shortcut recipe I lean on for this is this:
The text files are so light and easy to mess around with. You can create an infinite amount of them. I use this pattern a lot to randomize daily things so notifications don't become monotonous.
Set up a Pomodoro timer called “Mini-Tomato" that is 10 minutes cleaning up files on the laptop and 10 minutes cleaning up the place.
Unnecessary, inefficient, and fun.
The experiment for the day is to use the Reminders app to remind me of random stuff in the future. When I stumble across some quote or cool thought, I am scheduling them in Reminders for random dates in the future.
The best time to plant a tree is 20 years ago.
The other thing I am scheduling are things like "One year ago you were thinking [thought here]" or "One year ago you wanted to ". It maybe cool to get reminded of where I was at a year ago to see how far I've moved pieces.
When I am out and about, I get ideas for drum patterns. Sometimes I am without pen(cil) and paper, but I always have a device (phone, watch, etc.).
I could draw music notation in a sketch app; I can't do that on the watch. I could record the beat doing some sort of beatbox with a voice memo app, but I am not going to be doing that on a crowded train.
This means I need some way to get drum ideas out of the brain and into the inbox with plain text. Using R's and L's and any other characters to get them somewhere.
The patterns will live on their own page and there might be an RSS feed in the future. I am still trying to decide how to handle that.
My watch has an action button. You can set it to do things like "turn on the flashlight" and many other things. One of them is to "run a shortcut".
I finally got around to making a shortcut where I can dictate (or type) into Drafts and make a quick note. I set the action button to run that shortcut.
It rules. I can get a thought out my head and captured in seconds. I can do it on a crowded train without pulling out a phone. I can whisper the idea and it can still understand me.
The only way I could get it to work was by using a variable. I tried to create a a Draft by accepting the dictated text directly and nothing would happen. Adding the variable step made it work. ¯\_(ツ)_/¯