Others entangle
your life, freedom is at stake
don't let them restrain
#MastoPrompt
#garbled
#haiku
#senryu
#poetry
#SmallPoems
#writing
#music
Others entangle
your life, freedom is at stake
don't let them restrain
#MastoPrompt
#garbled
#haiku
#senryu
#poetry
#SmallPoems
#writing
#music
Her beauty between bluebells
almost distracted me from taking
a most perfectly picture
#dailyhaikuprompt
#hyacinth
#MastoPrompt
#garbled
#haiku 7/9/7
#senryu
#poetry
#SmallPoems
#writing
#photography
@dailyhaikuprompt
@stevencudahy
Bluebells Beauty - Aobram
we need more sunshine
the message is not garbled
our bodies listen
ART
https://fineartamerica.com/featured/she-rises-in-the-east-sharon-cummings.html
birds on the wing
garbled warbles as they sing
what does it all mean?
The #MastoPrompt for Monday 21 April 2025 is:
The poem or story can include the prompt word or be about the prompt word.
@ me, if you like, or just include the #MastoPrompt tag (to allow people to follow or filter their feeds), or keep your work to yourself - all the options are good as long as you're writing.
If you're including an image please do include alt-text if you’re able to.
MPEG Glitch
An edit of real glitch effects that I got from screencapping a webm that was glitching out and enhancing the image in GIMP.
@codehappy.bsky.social mostly complications in the compar function for qsort
1977 #clean
compar(c1, c2)
struct count *c1, *c2;
{ int i;
if ((i = c2->cnt - c1->cnt) != 0)
return i;
return c1->chr - c2->chr;
}
today #garbled
int compar(const void *c1, const void *c2)
{ int i;
if ((i = (((struct count *)c2)->cnt - ((struct count *)c1)->cnt)) != 0)
return i;
return ((struct count *)c1)->chr - ((struct count *)c2)->chr;
}