StrandedKitty's comments

StrandedKitty | 1 year ago | on: University of Alabama Engineer Pioneers New Process for Recycling Plastics

This problem is noticeable here in Amsterdam too -- homeless people tend to just take the whole garbage bag out of the can, and empty it on the sidewalk so that it's easy to spot and collect all statiegeld (deposit) cans and bottles.

It looks like the best solution the municipality has managed to come up with so far is to attach metal cupholder-like thingies to new trash cans, and people are expected to put statiegeld bottles and cans there, so that others can take them later and get a refund. Though I don't know how a regular uninformed person is supposed to figure out what these cupholders are for -- it's not intuitive at all.

StrandedKitty | 1 year ago | on: Show HN: Simplify Tailwindcss with This Library

What makes it better compared to de-facto standard `classnames` library?

  const styles = tw({
      base: "p-4 rounded-lg shadow-md",
      dark: { if: isDarkMode, classes: "bg-gray-800 text-white" },
      light: { if: !isDarkMode, classes: "bg-white text-black" },
  });
can be written as

  const styles = classNames("p-4 rounded-lg shadow-md", {
      "bg-gray-800 text-white": isDarkMode,
      "bg-white text-black": !isDarkMode,
  });
which requires less boilerplate and arguably looks a bit cleaner.

StrandedKitty | 2 years ago | on: 3D OpenStreetMap

It was never really meant to work on mobile. Honestly, this is more of a personal playground to try out different graphics algorithms, above anything. But the mobile version is requested a lot, so I will try finding time to work on it.
page 2