Today the non-profit Fashion Revolution holds demonstrations calling for reforms of the fashion industry and supply chain, the date chose to memorialize the Rana Plaza disaster in 2013. You might remember Rana Plaza, because the media picked up on how it came almost exactly 102 years after the Triangle Shirtwaist fire, and had many similarities.

This applies more widely than clothing, but as a society, we definitely donā€™t question the origins of what we buy nearly enough, enabling entire industries to exploit people at almost every level. And we pay for that. Anybody who sews knows that we donā€™t pay nearly enough for clothing for the business to make sense without serious abuses.

And hey, if you donā€™t want to worry about your clothes, we also observe World Day for Laboratory Animals. All around, March 24th makes a great day to question your consumption habitsā€¦

Photograph displaying a diverse-looking group of people protesting fast fashion with Fashion Revolution's slogan of "Who Made My Clothes?"

My projects pale in comparison to fixing the fashion industry, but I try to do what I can.

Mastodon Tool Trunk

GitHub - jcolag/tool-trunkTools for (John's) Mastodon workflow. Contribute to jcolag/tool-trunk development by creating an account on GitHub.

As mentioned last time, displaying attached media became the highest priority for the Rummager. It now does that, including blurring out media marked as ā€œsensitiveā€ by the poster, using the same CSS that I use on the blog, plus presenting URLs as the CSS classes suggest.

Actually, that last bit warrants some explanation. You might never have noticed it on Mastodon, but toot statuses break URLs in the text into three pieces, including the protocol, the first bunch of characters, and the remainder. They slap a class of ellipsis onto the middle piece, and invisible on the first and last. I make use of those classes by applying the following styles.

.ellipsis:after {
  content: 'ā€¦';
}

.invisible {
  display: none;
}

As an example, this post has a URL of https://john.colagioia.net/blog/2023/04/24/fashion.html, but it will appear as john.colagioia.net/blog/2023/0ā€¦ when I toot out the announcement.

Making HTTP GET requests also now allows for an authorization token and a callback function to do something useful with the returned data. This allows a straightforward shiftā€”using the same access token as the other scriptsā€”to pull the user timeline.

It has even started laying out headers, to make it clear what the user sees on the timeline.

Next

I imagine that Iā€™ll continue with the Rummager, since it has gone fairly well so far.


Credits: The header image is Rana Plaza commemoration - Who Made My Clothes, April 22nd 2015 (faces blurred by me) by greensefa, made available under the terms of the Creative Commons Attribution 2.0 Generic license.