mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

> WITH deliveries AS (
SELECT
id, (updated_at - created_at) as delay,
text,
uri,
substring(uri from '.*://([^/]*)') as host
FROM statuses
WHERE
uri IS NOT NULL AND
updated_at > current_timestamp + '-1 hour'
)
SELECT delay, uri FROM deliveries WHERE host = 'mastodon.zunda.ninja'
ORDER BY delay DESC LIMIT 1;

delay | 00:38:30.788266
uri | https://mastodon.zunda.ninja/users/zundan/statuses/100404194581416397

ブーストとかファボかでupdated_atが更新されるんだな、きっと。