Vlad's Roam Garden

Powered by 🌱Roam Garden

December 24th, 2019

This is an "Orphan" page. Its core content has not been shared: what you see below is a loose collection of pages and page snippets that mention this page, as well as snippets of this page that were quoted elsewhere.

I needed to convert webp images to png (for OkCupid)

`ls`.split.filter{|it| it.end_with? ".webp"}.each {|it| `dwebp #{it} -o #{it}.png`}` 

was really easy to write