Lobsters: Rename vibecoding to llms (Greasemonkey script)

66 points by joshka


abhin4v

In the same vein, I have written this small Stylus CSS that moves the posts tagged videcoding to the bottom of the page, and colours the tag red:

.story .tag.tag_vibecoding {
    color: var(--color-fg-accent);
}

.stories.list {
  display: flex;
  flex-direction: column;
}

.stories .story:has(.tag.tag_vibecoding) {
  order: 1;
}