Productive couple of days for my rather neglected Linode instance. Upgraded the distro from Ubuntu 14.04 to Debian 10. Moved DNS from Amazon to Google. Moved various static sites from S3 to Linode. Somehow it all still works.
Productive couple of days for my rather neglected Linode instance. Upgraded the distro from Ubuntu 14.04 to Debian 10. Moved DNS from Amazon to Google. Moved various static sites from S3 to Linode. Somehow it all still works.
I understand the popularity of email newsletters, especially for publishers. It’s a simple way to get paid content out, easier for users than a private RSS feed. But that doesn’t mean I want to read newsletters in my email app.
Feedbin, which I am already using for my regular RSS subscriptions, bridges the gap. As part of my Feedbin account, I get a secret email address, and anything sent to that address ends up in my RSS reader. Problem solved!
But it quickly gets annoying to sign up for newsletters (often creating an account) with an email address that is neither memorable nor truly mine. Fastmail, which I am already using for my regular email, makes it easy to find specified emails sent to my regular address, forward them to my feedbin address, and put the original in the trash.
In fact, Fastmail lets me use “from a member of a given contact group” as the trigger for this automatic rule, which makes the setup for a new newsletter very simple:
This is very convenient, for newsletters as well as other mail that is more of a notification than an email. Here are some of the emails that I now read as though they were feeds:
I installed homebridge on my Synology so that I could connect my thermostat with HomeKit. Surprisingly easy, minus a few rounds of trial and error on getting the configs right.
In the most recent iOS update, Files app can render html pages. (Before then, only iPadOS could do this.) So now I have an easy way to periodically generate a dashboard or report on my iMac and have it sync via iCloud to my mobile devices.
Maybe Washington Post should separate headlines more clearly; this one had me scratching my head for a while.
I literally bought new AirPods yesterday.
I highly recommend Footpath for planning a running route. Draw your route with your finger and you get mileage and elevation profile.
We have been having so much fun with Zelda at our house. I would usually consider myself a casual gamer, but I can’t put this down.
I really wanted to do a Route 1 road trip this summer, but it seems a shame to detour around Big Sur.
I accidentally called 911 while trying to change my watch band.
Tonight I went to “Into the Woods,” currently on tour in Los Angeles. I’m a fan since I saw the movie version, but it was way better on stage. Amazingly talented people, highly recommended.
This entirely serious LA Times piece could be an Onion article. “Our city depends on a Hispanic population to support our comfortable lifestyle.”
This is the fourth and last in a series of posts describing the system I built to monitor long-running commands.
The third post explained my mon
script, which together
with my twait
script from the second post,
lights up an LED when a command in a tmux pane or iTerm window completes.
If I want to monitor a command, I use mon twait ID
, where ID
is the pane or
window ID. Or I can run another command only if the first command is successful,
by writing twait ID && ./other_command
.
Of course it would be annoying to type the window ID manually, so I have two
keyboard shortcuts. One to start mon twait ID
in a separate window that closes
automatically when it is done. The other to open a new window with the text
twait ID &&
followed by a space.
Tmux can be scripted through the use of unix-like commands, with arguments and options. These can either be run from the command line or assigned keyboard shortcuts.
I use Ctrl-A plus uppercase E for the first.
bind E run "tmux split-window -l 5 \"mon twait #D\""
This splits to form a new window, 5 lines high, and runs mon twait
. The #D
parameter in a tmux run
command gets translated into the pane ID.
I use Ctrl-A plus lowercase E for the second.
bind e run "tmux split-window; tmux send-keys \"twait #D &&\""
You can do very similar things with iTerm using AppleScript.
To open the monitor in a temporary pane, I use this script. It is possible to control the height of the new pane, but I haven’t figured it out yet.
tell application "iTerm"
tell current session of current window
set session_id to id
split horizontally with default profile ¬
command "mon twait " & session_id
end tell
end tell
I prefer new windows over tabs or split windows, so I use this script to open a new window prepped to run a follow-up command.
|
|
This is the third in a series of posts describing the system I built to monitor long-running commands.
The second post explained my twait
script, which
waits for a command in a separate tmux pane or iTerm window to complete,
and then exits with the same code.
The easiest way to get notified when twait
finishes is to chain the commands:
twait %22; notify
But this ignores the return value, which is a useful part of the notification.
You could solve this by passing the return value as an argument:
twait %22; notify $?
The $?
variable contains the return code of the last command.
I mostly use a script called mon
that takes the other command as an argument:
mon twait %22
Since mon
is running the command, it has access to its exit code. It can also
do some prep work before running the command. The downside is that you have to
keep the command fairly simple; using pipes, multiple commands, or shell aliases
does not work properly.
Here is the code to my monitor script, which lights my blink LED and sends a Pushover notification.
|
|
This sets the LED to a dim white at the beginning of the command, prints a
message, and then runs the command. The $@
variable contains all of the
arguments to the script, which should be the command to run, followed by its
arguments. When we are done with the command, we capture the return code.
Depending on the value of the return code, I turn the LED green, red, or blue, and send a message to my phone and watch.
The pushover
script uses curl
to send a request to the pushover servers.
|
|
Those are not my token or userid. You have to get your own from pushover.
The final post in this series will show some tmux and AppleScript integrations to make this monitoring easier to launch.
This is the second in a series of posts describing the system I built to monitor long-running commands.
The first post explained how I write a text file of the form
$HOME/.local/logs/return-$ID
every time a command finishes.
The ID
variable is the unique identifier for the tmux pane or iTerm window.
Each file contains a single line with the return code of the last command to
complete in that window.
Now that a file is being written every time a command finishes, it is not difficult to wait for a command from a given window to finish.
I call this script twait
, meaning “wait for terminal.”
It takes a window’s unique identifier as its only argument,
waits until the corresponding return file is modified,
then exits with the status read from that file.
#!/bin/bash
set -eu
returnfile="$HOME/.local/logs/return-$1"
inotifywait -qq -e close_write $returnfile && exit $(cat $returnfile)
This uses inotify (on my Linux machine at work) to wait until someone writes to the return file. Then it reads the entire contents of the return file (using cat) and uses that as the exit code for the script.
On MacOS, you can replace inotify with fswatch:
fswatch -1 $returnfile > /dev/null && exit $(cat $returnfile)
This is a suprisingly useful command. Although I originally built it with
only monitoring in mind, it serves as a useful way to queue up any follow-up
command. In one window I can write build
,
and in a separate window I can write twait %22 && ./run
. This will wait for
the build to finish, and as long as it is successful, run some other command.
It is not uncommon for me to have a chain of three or four tmux panes stacked vertically, each running one of a series of commands. It makes it very easy to quickly visualize the progress of the command sequence.
In the next post, I will show how I use twait
to do the monitoring,
and in the final post of the series I will share some tmux/iTerm integrations
that make it easier to use both twait
and my monitoring script.