=== ANCHOR POEM ===
════════════════════════════════════════════───────────────────────────────────────
 @user-281 
 
 I'm just a rando but my understanding is that posting on the fediverse is
 sorta like writing on the sky, and anyone that wants can read it. I could be
 wrong though
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

=== SIMILARITY RANKED ===

--- #1 fediverse/3856 ---
═════════════════════════════════════════════════════════──────────────────────────
 I'm tired of working as hard as I can and still ending up wrong
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #2 fediverse/676 ---
═════════════════════════════════════════════──────────────────────────────────────
 would be nice if the Fediverse wouldn't let you post something on Mastodon
 unless you filled out a content warning for it.
 
 sorta like a post title on Reddit, allowing people to say "nah I don't feel
 like reading something from X perspective right now"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #3 fediverse/108 ---
══════════════════════════════════════════─────────────────────────────────────────
 @user-95 I'm also fond of "I can't know", for things that exist beyond our
 finite existence. For example, the perspective of another, for all it's
 intrinsic value. Being too quick to trust, though, is an easy path to follow.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════────────────────────────────────────────┘

--- #4 messages/483 ---
═══════════════════════════════════════════════════════────────────────────────────
 "hey listen! Do this thing to hurt me! Build the infrastructure to do it so
 that you can use it on people who deserve it!"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #5 fediverse/1906 ---
═════════════════════════════════════════════════════──────────────────────────────
 I like Mastodon because it feels like I'm contributing to something larger
 than myself even though like, 30 people read each of my posts
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #6 fediverse/5782 ---
════════════════════════════════════════════════════════════════════════───────────
 sometimes I post random silly [scary] things to pad out the serious things and
 I hope that's okay
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #7 fediverse/2510 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1074 
 
 if I wanted to accomplish this goal, I would host a fediverse server on a
 raspberry pi and post the link around the building (the owners will remove it
 so you gotta keep posting them)
 
 then, potlucks.
 
 then, friendships.
 
 then, organization.
 
 be patient with them. people are slow to be constructive.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #8 messages/566 ---
══════════════════════════════════════════════════════════─────────────────────────
 I feel like I'm standing underneath a blanket of spacetime and someone has
 grasped me firmly and shifted me this way or that, like a gear shift as you
 ascend and descend mountainous rolling hills.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #9 fediverse/572 ---
═════════════════════════════════════════════──────────────────────────────────────
 Hi, I'm learning about semaphores right now and trying to explain them to a
 friend. But I only sorta understand how they work - can anyone look at this
 pseudocode and tell me if I'm on the right track?
Some C pseudocode working through the semaphore design pattern. Here's the text of the pseudocode:  /* no lock example */  void start_thread(int* x) {   *x += 1; }  int main() {   int x = 0;   for (1000 times){     start_thread(&x);   }   print(x); }  /* in this case you have no idea what will print because thread A will take x and be like "ah yes it's 423" and then in the next instruction it'll be like "I'll increment this to be 424" and in the next one it'll say "okay now it's time to store 424 in the variable X" but like... there's a thousand threads all doing that at the same time, so odds are you'll have 5 that are like "ah yes this is 423 I'll set it to 424" */  /* not a good plan. Need a lock, so only one thread can use it at once. */ /* mutex example: */  void start_thread(int* x, int* x_mutex) {   *x += 1;   *x_mutex = 0; }  int main() {   int x = 0;   int x_mutex = 0;   for (1000 times){     while (x_mutex != 0){ } /* do nothing */     x_mutex = thread_id;     start_thread(&x, &x_mutex);   }   print(x); }  /* this should print 1000, but it's basically as slow as doing it single threaded. */  #define MAX 10  void start_thread(int* x, int* x_semaphore) {   *x += 1;   *x_semaphore += 1; }  int main() {   int x[MAX];   int x_semaphore = MAX;   for (1000 times) {     for (int i = 0; i < MAX; i++) {       x_semaphore -= 1;       start_thread(&x[i], &x_semaphore);     }     while (x_semaphore != MAX) { } /* do nothing */   }   int value = sum(x, MAX);   print(value); }
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #10 messages/392 ---
════════════════════════════════════════════════════───────────────────────────────
 Hey, can someone please accomplish my dreams for me? I'm too busy being a
 waste of potential!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #11 messages/1177 ---
════════════════════════════════════════════════════════════════════════════════───
 it's more than a community if only one person asks where you've been.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #12 fediverse/1472 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 my streaming is broken and I can't figure out why : (
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #13 fediverse/3180 ---
═══════════════════════════════════════════════════════────────────────────────────
 I love skywriting. it's so cool to see your words fade into dust after being
 seen by everyone around.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #14 fediverse/3833 ---
═════════════════════════════════════════════════════════──────────────────────────
 there's no such thing as me
 
 all I am is where the wind takes me
 
 I am just a person, and I do all that I can
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #15 messages/765 ---
═════════════════════════════════════════════════════════════════──────────────────
 you don't have to write poetry to write notes. The poetics are just practice
 for when secrecy is intended.
 
 OR IS IT THE REAL THING? who can say.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #16 fediverse/5350 ---
═════════════════════════════════════════════════════════════════════──────────────
 honestly we should be building cities in the most boring locations, not the
 most beautiful.
 
 like below the crust.
 
 or space.
 
 the surface is a pleasuredome, why waste it on scrubland and turf?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #17 fediverse/6418 ---
══════════════════════════════════════════════════════════════════════════════─────
 great discoveries are just rants that end with something unknown or an
 unsolved question [breakthrough]
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #18 messages/426 ---
═════════════════════════════════════════════════════──────────────────────────────
 How many of me are there? There are as many of me as there are of thee, dear
 reader.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #19 fediverse/5790 ---
════════════════════════════════════════════════════════════════════════───────────
 ┌──────────────────────────────────┐
 │ CW: political-violence-mentioned │
 └──────────────────────────────────┘


 ha this is what's on my mind. I'm on /home/ritz/words//fediverse/5688.txt by
 now though! It's always fun when an old one pops up. anyway gtg ttyl
CW: unreasonable-violence    if I was a far right militia, a pride parade would be a tempting target.  hence why they must be defended with riflemen placed just out of sight, clustered away, ready to spring into the fight.  spread out, hit from the flanks, keep them pinned down, and occupy space.   file: /home/ritz/words/fediverse/2564.txt [ritz@kuvalu mysql-9.4.0]$ goodnight Password:
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #20 fediverse/1145 ---
═══════════════════════════════════════════════────────────────────────────────────
 I just wanted to be a silly girl who climbs trees and roasts marshmallows on
 campfires why did I end up like lain in bed listening to thunder T.T T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘