When you wash copper pennies with vinegar, the pennies react with the vinegar to form a blue compound called copper (II) acetate. Now, if you let that vinegar dry, small, black crystals will be left behind in the dish. Those are copper acetate crystals.
It turns out you can grow much bigger copper acetate crystals. They are sleek, shiny, and look like pieces of polished obsidian.
Note, the site uses lazy-loading images, if you browse with Javascript off (and you should) then this incantation, in the browser console for the page, will convert the lazy-load images into normal image tags that are fetched and displayed as they should be:
var list = document.getElementsByTagName("img"); for (var i = 0; i<list.length; i++) { list[i].setAttribute("src",list[i].getAttribute("data-src")); }