home

commonplace

miscellanea

To clear old Vercel deployments:

vercel rm {projectName} --safe --yes

Scale:

:root {
  --0: .79
  --1: 1
  --2: 1.27
  --3: 1.62
  --4: 2.06
  --5: 2.618
  --6: 3.33
  --7: 4.24
  --8: 5.388
}

pulse

In the homepage footer, I used to have a webring icon that slightly pulsated to subtly vie for the visitor’s attention, prior to replacing it with an 88×31 icon. Here it is archived; feel free to use it:

<svg id="webring" width="30" height="30" viewBox="20 25 250 250"
  fill="none" stroke="#000" stroke-linecap="square"
  stroke-width="32" xmlns="http://www.w3.org/2000/svg">
  <path d="M201.962 210a60 60 0 10-103.924-60l-50 86.603"/>
  <path d="M98.038 210a60 60 0 10103.924-60l-50-86.603"/>
  <path d="M150 120a60 60 0 100 120h100"/>
</svg>
@keyframes pulse{0%,to{stroke-width:8px}50%{stroke-width:16px}}
#webring{animation:pulse 6s ease-in-out infinite alternate}