this idea of posting [a NOW page](https://nownownow.com/about)  
came from the brilliant [Derek Sivers](https://sive.rs/)

last update: <span id="last-update"></span>

<script>
const lastUpdated = document.querySelector('meta[name="last-updated"]')?.content;
if (lastUpdated) {
  const date = new Date(lastUpdated);
  const formatted = date.toLocaleDateString('en-GB'); // 27/10/2025
  const el = document.getElementById('last-update');
  if (el) el.textContent = formatted;
}
</script>

<style>
  .item {
  max-width: 320px;
}
.item img, .item video, .md p, .md li {
  max-width: 320px !important;
}
pre {max-width: 320px;}
.plantbed {left:0!important;}
.recently-consumed {
  height: 400px;
  overflow: scroll;
}
</style>