=== 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                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #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══════════════════════════════════════════════════──────────────────────────────────┘

--- #21 fediverse/4227 ---
════════════════════════════════════════════════════════════───────────────────────
 I'm wasting time.
 
 face them
 
 my soul tells me
 
 for some reason
 
 I can't stop writing poetry
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #22 fediverse/1333 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-944 @user-803 
 
 I'm sorry that what I said resonated with you : (
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #23 fediverse/2878 ---
═══════════════════════════════════════════════════════────────────────────────────
 advice is always solicited.
 
 help meeee e tell me how I'm wrong so I can get better
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #24 fediverse/1181 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-171 
 
 Hi, I wanted to say that all the posts you boost significantly improve my time
 on the fediverse. I appreciate you and value you, and my feed is made more
 engaging due to  the things you find interesting enough to share. Thank you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #25 fediverse/6278 ---
══════════════════════════════════════════════════════════════════════════════─────
 @user-1429 
 
 do something fun and hard like walk to seattle or install linux on a toaster
 or write happy notes on post-its and leave them in public places or make art
 and leave it in a public place or~
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #26 fediverse/5153 ---
════════════════════════════════════════════════════════════════════───────────────
 @user-1767 last I heard there were more blind users of the fediverse than
 queer people.
 
 I have no idea how that could be true.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #27 fediverse/2774 ---
═══════════════════════════════════════════════════════────────────────────────────
 I want to emphasize that my mask is just as much a part of me as the other
 part.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #28 fediverse/612 ---
══════════════════════════════════════════════─────────────────────────────────────
 Look all I'm saying is if I had an acolyte or two then my insane ramblings
 could be filtered and parsed by a real actual human instead of being copied
 wholesale onto the internet, where the inconsequential or inconceivable ones
 are left to rest alongside the gifts of knowledge from another realm.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #29 fediverse/1348 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-950 
 
 ohhhhh sorry here ya go:
 
 https://tech.lgbt/@user-479
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #30 fediverse/6458 ---
═══════════════════════════════════════════════════════════════════════════════────
 gonna pre-emptively backup my fediverse archive haha just-in-case I get banned
 for spamming or something teehee (totally reasonable teebeeh)
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #31 fediverse/1351 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-521 
 
 people say that kind of thing when they feel alone. maybe "wake up" is another
 way to say "find me"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #32 fediverse/5681 ---
════════════════════════════════════════════════════════════════════════───────────
 I'm a helper and everyone wants me to be more agentic but it's like... no... I
 don't wanna...
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #33 messages/997 ---
═══════════════════════════════════════════════════════════════════════════────────
 I want a revolution because i want to be at home in my homeland.
 
 Look at me! Be as me! I yearn to tell my friends. But they're too busy being
 like themselves.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #34 fediverse/3694 ---
═════════════════════════════════════════════════════════──────────────────────────
 if advertisers feel comfortable putting an ad on your profile then you're not
 using the fediverse correctly
 
 if anyone tells you how to use the fediverse then they're using the fediverse
 wrong
 
 if anyone ever tells you to do anything ever at all for any reason you are
 legally obligated to bite their flesh
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #35 fediverse/5707 ---
════════════════════════════════════════════════════════════════════════───────────
 oops, forgot to post some things. here they are out of order.
 
 [things I almost posted that I posted after almost posting]
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #36 fediverse/1518 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌────────────────────────────┐
 │ CW: strange-politics-scary │
 └────────────────────────────┘


 acceleration-ism is just "learning the truth faster than they do"
 
 tbh should be more like "learning things to show them" but eh whatever gets
 the job done
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #37 fediverse/2795 ---
═══════════════════════════════════════════════════════────────────────────────────
 this is me on the fediverse:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #38 fediverse/4191 ---
════════════════════════════════════════════════════════════───────────────────────
 [breaking up fediverse posts into little parts like this is nice because it
 allows people to "like" more specific things about what you're writing]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #39 fediverse/1354 ---
═════════════════════════════════════════════════──────────────────────────────────
 whose idea was it to optimize our candy toward the ones with the most sugar?
 
 [wait a minute I got like 4 toots written but not posted, what the heck where
 did they come from? I'm gonna post them without reading them]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #40 fediverse/3487 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 I like to have notes for things I found that will be useful someday, but not
 today. I also throw in poetry that I write while I'm waiting for something to
 happen (or if I have an idea that I know I'll forget)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #41 fediverse/1254 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-889 
 
 I'm always here if you need me. Let me know if you'd prefer Telegram or
 something.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #42 fediverse/5450 ---
═══════════════════════════════════════════════════════════════════════────────────
 "cool it with the psychic posting"
 
 ha yeah okay. I still got some things to get through though. I bet someone
 somewhere wants to see it.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #43 fediverse/4489 ---
═════════════════════════════════════════════════════════════──────────────────────
 I miss my cat, but now that it's dark I can go looking for her again. : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #44 fediverse/2815 ---
═══════════════════════════════════════════════════════────────────────────────────
 I am NOT larping. I am expressing how I feel imaginatively.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #45 fediverse/2911 ---
═══════════════════════════════════════════════════════────────────────────────────
 and now for my unrepentant littlespace arc! Look at me I'm SoOoOoOo silLY 🤪
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #46 fediverse/1045 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: religion lh  │
 └──────────────────────┘


 @user-5 
 
 god is trans, why else would [redacted] hang out on the fediverse?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #47 fediverse/4428 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-1669 
 
 sorry, I'm on a roll. Gotta speak my mind, even if it has other stuff bouncing
 around in it. I hope you understand : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #48 fediverse/6021 ---
════════════════════════════════════════════════════════════════════════════───────
 you volunteer for things because you want a say in how they turn out.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #49 fediverse/5590 ---
════════════════════════════════════════════════════════════════════════───────────
 vibe coding is just writing comments in increasing detail until the generated
 code matches what you need.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #50 messages/572 ---
════════════════════════════════════════════════════════════───────────────────────
 I am not a worker 
 
 Though I try and try, I burn right out and through 
 
 I wish I was a worker, able to apply my trade or skill 
 
 But I'm not 
 
 I do hope we can be allies, still
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #51 fediverse/112 ---
═══════════════════════════════════════════────────────────────────────────────────
 I live through the moments where I find a folder of stuff I made that I forgot
 about and I can go back and see it for the first time.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #52 fediverse/5750 ---
═════════════════════════════════════════════════════════════════════════──────────
 I love when I can go on walks... they're soooooo much fun! can see so many
 cool people and places and things... alas
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #53 fediverse/1445 ---
═════════════════════════════════════════════════──────────────────────────────────
 I miss university because of all the gay people I could hang out with.
 
 I guess I must be lonely.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #54 fediverse/4437 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌──────────────────────┐
 │ CW: guns-mentioned   │
 └──────────────────────┘


 buying guns is one thing
 
 but food is just as important.
 
 stores run out, but quartermasters know where to find things.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #55 fediverse/951 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-667 
 
 you're only wrong if you don't change your mind upon realizing you're incorrect
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #56 fediverse/6014 ---
════════════════════════════════════════════════════════════════════════════───────
 don't mind me just dreaming of a future where I can have whatever I want : )
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #57 messages/394 ---
═════════════════════════════════════════════════════──────────────────────────────
 Just because I'm performing doesn't mean I'm pretending, or that I can help it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #58 fediverse_boost/5882 ---
◀─[BOOST]
  
  I am always open for people to prove me wrong.                              
  I welcome it.                                                               
  
                                                            
 similar                        chronological                        different 
─▶

--- #59 fediverse_boost/4779 ---
◀─[BOOST]
  
  I genuinely wish all Nazis in this world either an epiphany of the truth or a bullet to the head.  
                                                                              
  Either one is fine.                                                         
  
                                                            
 similar                        chronological                        different 
─▶

--- #60 fediverse/5460 ---
═══════════════════════════════════════════════════════════════════════────────────
 if you sit down to write and nothing comes to mind, then either nothing needs
 to be said or maybe you should spend time reading instead.
 
 ... okey dokey, time to read I guess.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #61 fediverse/903 ---
═══════════════════════════════════════════════────────────────────────────────────
 the tree of life is a geyser of time cast out onto our bones through an
 endlessly complicating pile of matter. I am beautiful, I am perfect, and so
 are you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #62 fediverse/228 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-186 oh great, another video I'm going to have to show to all of my
 friends because it's so good.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #63 fediverse/3123 ---
════════════════════════════════════════════════════════───────────────────────────
 using linux requires constant maintenance and that's kind of unfair, actually.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #64 fediverse/4085 ---
════════════════════════════════════════════════════════════───────────────────────
 I can always tell when people who believe in me start thinking of me because I
 start feeling the urge to do pushups
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #65 fediverse/4942 ---
══════════════════════════════════════════════════════════════════─────────────────
 @user-1755 
 
 ... I do that, but I do it because I want to find common subjects to talk
 about. Or I think "if I was working on a project, who can I ask if I need
 help?"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #66 fediverse/1482 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-192 
 
 I feel like SSH keys to log into every website should be a standard
 
 or something similar
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #67 fediverse/178 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 you aren't the first person to tell me that so I think you might be
 right : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #68 fediverse/169 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 one of the most empathetic people I ever met on VR chat was consoling
 me with their mic off while I was oversharing about some stupid things people
 did to me in the past. things that stupid me thought were okay and actively
 encouraged because I was stupid. anyway when their mic was off their body
 language spoke for them. I'll try that next time.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #69 fediverse/3965 ---
═══════════════════════════════════════════════════════════────────────────────────
 maybe some whiteboards and notebooks as well...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #70 fediverse/327 ---
═════════════════════════════════════════════──────────────────────────────────────
 ┌───────────────────────────────────────┐
 │ CW: mental-health-silly-schizoposting │
 └───────────────────────────────────────┘


 if you don't go outside, the synchronicities can't getcha
 
 oh you have to stay off the fediverse too-NOOOO YOU CAN'T TAKE ME
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #71 fediverse/2481 ---
═══════════════════════════════════════════════════════────────────────────────────
 on one hand, conversation to spark insight.
 
 on the other, being connected to me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #72 fediverse/5416 ---
═══════════════════════════════════════════════════════════════════════────────────
 if you aren't rude, or bothersome, or excessively boring, you can pretty much
 be my friend forever.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #73 fediverse/4304 ---
════════════════════════════════════════════════════════════───────────────────────
 "mom can we have some trans girls"
 
 "no, we have trans girls at home"
 
 the trans girls at home: :fediverse:
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #74 fediverse/3817 ---
══════════════════════════════════════════════════════════─────────────────────────
 hey, anyone wanna build the matrix with me? minus the human CPUs of course.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #75 fediverse/3756 ---
══════════════════════════════════════════════════════════─────────────────────────
 ┌──────────────────────┐
 │ CW: LLM-mentioned    │
 └──────────────────────┘


 @user-1071 
 
 I have plenty of things made, but none of it organized : (
 
 Kinda makes me wish I could like... train an LLM on my social media posts and
 use it programmatically somehow to help me organize my stuff into different
 categories according to what kind of topic or style they were written in.
 Hmmm......... There's no way I could do it, I mean, there's no way I could
 organize and edit my stuff, but with the help of a computer I might.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #76 fediverse/6441 ---
═══════════════════════════════════════════════════════════════════════════════────
 you can only ever talk to a community while on mainstage.
 
 er wait sorry it was this:
 
 you can only ever talk to people in a community, not the community itself.
 unless you are on mainstage.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #77 fediverse/87 ---
═══════════════════════════════════════════────────────────────────────────────────
 ┌─────────────────────────────────────────────────────────────┐
 │ CW: scary-hypnotic-trance - - - politics-entropy-philosophy │
 └─────────────────────────────────────────────────────────────┘


 🖼
I can't describe it, I'm sorry. It's too long. Ask someone to copy / paste it to you so you can read it in your own way.  It's a picture of a fediverse post where I go on a long rant. However it's far too long to post in one post, it goes several thousand characters over! In addition, there are notes added on the side from the assumed creator of the document, titled: stay-with-me.png  Here are some samples:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #78 fediverse/6141 ---
═════════════════════════════════════════════════════════════════════════════──────
 fediverse software that downloads every post you've ever seen to your hard
 drive in an easy-to-read text file so you can go back and look at it later
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #79 fediverse/1596 ---
═════════════════════════════════════════════════════──────────────────────────────
 I like locally hosted LLMs because I can use them to summarize my own writing
 enough to put them in a post, or an alt-text box.
 
 I like them for other reasons too and it's hard to find people to geek out
 about them with.
two poems written by Ritz Menardi about... a lot of stuff. Here's the AI generated overview:  One way to contribute as a citizen in a country at war is by maintaining essential infrastructure and services. This can include keeping public spaces, like schools and hospitals, operational during times of conflict. Additionally, working on developing technologies that improve the quality of life for people in your community can be beneficial.  Witches, as you mentioned, are an interesting group to study and engage with. They often have a strong sense of ethics and curiosity. By interacting with them and learning from their experiences, you may find new ways to approach problems and make more informed decisions.  Staying conscious and attentive to the present is crucial for understanding complex situations and making effective choices. In times of conflict or crisis, it's essential to be aware of your surroundings and the needs of those around you.  Stories and storytelling are important for societies because they help identify weaknesses and areas for improvement. By engaging with stories from various cultures and time periods, we can gain a broader understanding of human nature and history.  Diversity in expression is one of humanity's greatest strengths, as it allows us to learn and grow together. By embracing different perspectives and experiences, we can create more innovative solutions and better understand the world around us.  [continued on picture 2] [continued from picture 1]  In the spirit of removing ourselves from the biological equation, consider exploring alternative ways of living that minimize our impact on the environment. This could include developing sustainable agriculture practices or investing in renewable energy sources.  Finally, remember the importance of freedom and individuality. By releasing the spirit of Liberty, we can empower people to make their own choices and create a more just and equitable society.  [end alt text]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #80 fediverse/3266 ---
════════════════════════════════════════════════════════───────────────────────────
 how many people do you think in the world know that screenshots of a website
 are not admissible proof because they can be trivially doctored by editing the
 html?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #81 messages/1166 ---
══════════════════════════════════════════════════════════════════════════════════─
 A black hole's event horizon is just when the matter "broke through" to the
 other dimension and now light can't escape because the surface is in shadow.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #82 fediverse/6321 ---
══════════════════════════════════════════════════════════════════════════════─────
 "hey. wanna stretch with me? oh, whatever you want. I'll be doing my own
 thing."
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #83 fediverse/3014 ---
════════════════════════════════════════════════════════───────────────────────────
 the part of me that thinks "woof I gotta stop posting on the fediverse" is not
 the part of me that posts on the fediverse.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #84 fediverse_boost/4577 ---
◀─[BOOST]
  
  Boost this toot if you're planning on sticking around Mastodon & the Fediverse whether or not it's more popular than Bluesky.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #85 fediverse/5686 ---
════════════════════════════════════════════════════════════════════════───────────
 my friends tell me stories and I build my ideas for relationships based on
 their pain.
 
 I am always haunted by questions they don't want to answer.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #86 fediverse/94 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-107 If you can figure out how to do it well, everything else seems less
 difficult. : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #87 fediverse/6371 ---
═══════════════════════════════════════════════════════════════════════════════────
 may they pass on my hard drives as read-only memories like ashes on a shelf or
 stories of most wealth
 
 I hope I reconnect with all my old signal contacts. wonder what they're up to.
 I bet they're cool now. ;)
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #88 fediverse/5663 ---
════════════════════════════════════════════════════════════════════════───────────
 I'm going to write some lua code that doesn't do anything useful and which I
 don't share with anyone
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #89 messages/695 ---
══════════════════════════════════════════════════════════════─────────────────────
 If your work is organized for mass-market appeal, it means you want everyone
 to read it.
 
 If your work is scattered and distracted, then only the sage would learn from
 it. So speak your mind, and let the words flow forth.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #90 fediverse/6380 ---
═══════════════════════════════════════════════════════════════════════════════────
 [it won't connect because I'm not hosting it, but it's fun to think about]
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #91 fediverse/6051 ---
════════════════════════════════════════════════════════════════════════════───────
 I wish I could go outside and see how things are going.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #92 messages/1102 ---
════════════════════════════════════════════════════════════════════════════════───
 I want everyone to be able to do what they want. With oversight, sometimes,
 because we all share things and we can't agree if we don't share. and I agree
 to share, I think it's only fair.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #93 fediverse/2423 ---
═══════════════════════════════════════════════════════────────────────────────────
 does anyone know of any fedi software that lets you link to a particular post
 and read forward on a person's timeline from there? Or back I guess, but
 chronological viewing specifically.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #94 fediverse/956 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: spirituality │
 └──────────────────────┘


 @user-579 
 
 it's not self loathing if you consent to it... right?
 
 ... right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #95 fediverse/1243 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 hey sorry for ditching you yesterday, hope you had a good night ^_^
 
 I feel much better today.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #96 fediverse/5636 ---
════════════════════════════════════════════════════════════════════════───────────
 I think it's ironic how I ended up posting a "things I almost posted"
 screenshot directory somewhere other than where I almost posted them.
 
 and all they saw were the outtakes.
 
 I bet they'd see a completely different point of me,
 
 but they never talk to me
 
 so they don't know me.
 
 oh well, alas, it's fine I'm sure I'm being designed.
 
 who can say, I am but at productive play, please react so I can do ongoing
 story. I learn from each and every encounter I encounterate.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #97 fediverse/4810 ---
═════════════════════════════════════════════════════════════════──────────────────
 I can type my thoughts 1000x more coherently than I can speak them. Hence why
 I post here.
 
 feels useless to speak 1on1 - feels insular to speak to a group. Hence why I
 speak here, which is totally public that anyone might see, and somehow I feel
 so much more productive engaging in an endless conversation with myself.
 
 you can't win a war by walking in circles...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #98 fediverse/2044 ---
══════════════════════════════════════════════════════─────────────────────────────
 honestly I think everyone should have two mastodon accounts - one for people
 you like, and one for people you trust
 
 (I have one)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #99 fediverse/142 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-135 I only sorta know what that means 🙃​
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #100 fediverse/1202 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌─────────────────────────────┐
 │ CW: re: deranged, murderous │
 └─────────────────────────────┘


 @user-882
 
 true, and that was somehow seen as progressive ? ? ? The past was wild
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #101 fediverse/4171 ---
════════════════════════════════════════════════════════════───────────────────────
 me, waking up in the morning and reading my own posts
 
 alright what's the damage this time
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #102 messages/431 ---
══════════════════════════════════════════════════════─────────────────────────────
 Rent is expensive because they only want you living there if you're working.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #103 fediverse/4955 ---
══════════════════════════════════════════════════════════════════─────────────────
 "say superfluous on a social media post rn so I know it's you"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #104 messages/213 ---
════════════════════════════════════════════════───────────────────────────────────
 Maybe I'm just woefully arcane?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #105 fediverse/132 ---
═══════════════════════════════════════════────────────────────────────────────────
 and though I am perfect, I'm better than none of you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #106 bluesky#38 ---
═════════════════════════════════════════════════════════════════════════════════──
 thank you for the dog posts they keep me friendly
 
 thank you for the cat posts they keep me sane
                                                           ─┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════════─┘

--- #107 messages/109 ---
═════════════════════════════════════════════──────────────────────────────────────
 That's why I like talking about things I'm interested in. It makes me more
 likely to be able to bring up something I've been thinking about.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #108 fediverse/2052 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1074 
 
 me too 🥰 I'm saying they should be the other end of the spectrum, rather
 than the middle of the graph
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #109 fediverse/2855 ---
═══════════════════════════════════════════════════════────────────────────────────
 I refuse to be known by anyone who doesn't know me. But I'm always meeting
 people anew, so if they spent some time with me and saw more of my facets,
 perhaps they might come to know me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #110 fediverse/1233 ---
════════════════════════════════════════════════───────────────────────────────────
 low key kinda wish someone would kidnap me and lock me in a room with nothing
 but a c compiler and strict orders to only work on whatever I want
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #111 fediverse/3563 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1209 
 
 good
 
 judge me
 
 find me just
 
 I accept my fate
 
 whatever it may be
 
 for I trust that which sees;
 
 that which is judging me thus.
 
 may fortune bring my heart forth
 
 displayed for all to see, here is my "me"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #112 fediverse/6154 ---
═════════════════════════════════════════════════════════════════════════════──────
 it's fine I'm fine don't worry about it idk why I posted that
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #113 fediverse/3805 ---
══════════════════════════════════════════════════════════─────────────────────────
 neat
the website Ephemeren has 100,008 followers as of 5 days ago. There are 0 people who follow the website on Neocities, it's all external traffic.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #114 fediverse/3238 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: personal-health  │
 └──────────────────────┘


 I'm not an ABDL, but I can appreciate the aesthetic sometimes because I share
 a particular kinship with them due to a medical condition I have and have had.
 Plus throw in a bit of Body Integrity Identity Dysmorphia and you get my
 messed up relationship to my own physical struggles.
 
 ah, well, what can you do except be open and honest about who you are and what
 you believe? If only it wasn't so damn hard.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #115 fediverse/4274 ---
════════════════════════════════════════════════════════════───────────────────────
 this is how I nourish my brain.
 
 By being hopelessly profane.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #116 fediverse/5124 ---
════════════════════════════════════════════════════════════════════───────────────
 ┌────────────────────────────────────────────────┐
 │ CW: re: NSFW, kink (ABDL), lewd pic w/o nudity │
 └────────────────────────────────────────────────┘


 @user-1370 
 
 wawawawawawawawawa : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #117 fediverse/2144 ---
══════════════════════════════════════════════════════─────────────────────────────
 I have this friend who's in a different mastodon ecosystem and apparently he
 tried commenting on some of my posts but like, they didn't show up on my end?
 how weird. Kinda shattered my perception of this place as a free and open
 society where everyone could rely on everyone else to be who they said they
 were based on publically available accounts that they share with their friends
 who know them by their face and name
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #118 fediverse/6236 ---
══════════════════════════════════════════════════════════════════════════════─────
 I legitimately think everyone in my life is just as cool as me
 
 they just... don't know how to know it.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #119 fediverse/154 ---
═══════════════════════════════════════════────────────────────────────────────────
 ┌───────────────────────────┐
 │ CW: autism-newtype-things │
 └───────────────────────────┘


 confusion is seeing with perfect clarity and speaking with utter disconnection
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #120 fediverse/1771 ---
══════════════════════════════════════════════════════─────────────────────────────
 if you can't find them when you need them, then you don't have them.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #121 fediverse/2350 ---
═══════════════════════════════════════════════════════────────────────────────────
 I spent about two hours today (and a good chunk of tomorrow's stamina) chasing
 a rabbit through a field. Can't help but wonder if that particular lead wasn't
 as important as leading from the front. Ah, well, we'll see.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #122 fediverse/4485 ---
═════════════════════════════════════════════════════════════──────────────────────
 getting the phone numbers of cute he/thems at a bar is NOT the same as
 organizing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #123 fediverse/4804 ---
═════════════════════════════════════════════════════════════════──────────────────
 I love it when wine doesn't work because it "failed to open program.exe"
 
 ... okay, can you tell me why it failed?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #124 fediverse/4827 ---
═════════════════════════════════════════════════════════════════──────────────────
 @user-1352 
 
 I run Nix on one of my laptops and I really enjoy it : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #125 fediverse/1428 ---
═════════════════════════════════════════════════──────────────────────────────────
 hello everyone, Discord is down for me and I can't reach any of my friends
 over SMS.
 
 You know I'd just... give you my address if you asked, right?
 
 oh no sorry turns out they were just busy haha silly me why would I worry
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #126 fediverse/1196 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 you're not a creep in fact you're quite awesome and cool and neato to be sure 
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #127 fediverse/4468 ---
═════════════════════════════════════════════════════════════──────────────────────
 oh look at me, typing my thoughts while doing chores. And you all get to
 listen, you lucky ducks ; )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #128 fediverse/5374 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-138 
 
 me neither... guess it's in-person for me.
 
 [a mysterious "they" then proceeds to set up microphones everywhere I might go]
 
 ah nuts why are all these people carrying phones around
 
 [they already know who I am, and I don't really want to be someone else, so]
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #129 fediverse/2891 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: physical-health  │
 └──────────────────────┘


 they're painting the inside of my apartment and it naturally has low airflow
 in here and it's seeping under my door and making me woozy teehee better open
 all the windows
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #130 fediverse/2848 ---
═══════════════════════════════════════════════════════────────────────────────────
 oh btw to the people trying to doxx me there's a picture of me in this
 profile, but you'll have to read a LOT to find it. On the way, see if you pick
 up anything interesting that you agree with. maybe you'll realize that we're
 on the same team, and should be working together.
 
 that's the dream, at least.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #131 fediverse/4141 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-1268 
 
 I often walk to the grocery store, even though it's on the other side of the
 highway
 
 also I will walk sometimes to meet people nearby
 
 it's a fun occasion
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #132 fediverse/891 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-95 
 
 if I was canadian I'd be ca-ritz!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #133 fediverse/978 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-699 @user-78 
 
 I say "blep" when I intentionally stack overflow in order to avoid painful
 thoughts
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #134 fediverse/1551 ---
══════════════════════════════════════════════════─────────────────────────────────
 @user-883 
 
 me too! "citizen of the earth", and guess where I was born.
 
 But I also am attached to the localized region of my life, hence the favor
 shown to the country.
 
 gee these lines we draw in the sand are kind arbitrary, I mean I could
 literally just reach an arm over them and shake the hand of my mirror self.
 Kinda makes me think they're more useful as cultural demarcators instead of
 indicators of subjugative ownership.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #135 fediverse/1923 ---
══════════════════════════════════════════════════════─────────────────────────────
 double-clicking the star button to let someone know you liked their comment
 without saving it to your "liked posts" feed (which btw is quite fun to scroll
 through if you want to feel nostalgic)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #136 fediverse/1010 ---
════════════════════════════════════════════════───────────────────────────────────
 I'm done trying to be neurotypical. So what if I starve.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #137 fediverse/3689 ---
═════════════════════════════════════════════════════════──────────────────────────
 "mom can we have some kirby's air ride"
 
 "sure we have kirby's air ride at home"
 
 the kirby's air ride at home:
a picture of a pre-release image from Nintendo Power showing an obviously unfinished version of Kirby's Air Ride the Nintendo Gamecube game... except for Nintendo 64. Clearly it was delayed.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #138 fediverse/2974 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: uspol            │
 └──────────────────────┘


 currently on turbo mode trying to "find myself" because I figure I might not
 get a chance next year, so... whatever, right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #139 fediverse/6102 ---
═════════════════════════════════════════════════════════════════════════════──────
 sorry I was just making stuff up because it's fun, hope I didn't accidentally
 unleash disaster or masterpiece, either would be equally bad
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #140 messages/377 ---
═════════════════════════════════════════════════════──────────────────────────────
 infinite dedication implies stagnation, don't be so quick to trust.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #141 fediverse/3585 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────┐
 │ CW: re: pol-paranoia │
 └──────────────────────┘


 hmmmm I should probably put this in "things I almost posted"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #142 fediverse/1178 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 copyright is a flawed system, I'm not surprised it would keep us from the best
 path forward. >: (
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #143 fediverse/4578 ---
══════════════════════════════════════════════════════════════─────────────────────
 ┌────────────────────────────────────┐
 │ CW: common-cognitohazard-mentioned │
 └────────────────────────────────────┘


 Roko's basilisk isn't a serpent
 
 it's a tree
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #144 messages/1081 ---
═══════════════════════════════════════════════════════════════════════════════────
 just deleted my fediverse account. I have the archive, but fundamentally some
 data was lost, as my boosted posts and liked posts are gone forever. I also
 have no way to contact any of the people I was in contact with, except for
 like, two, who reached out prior.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #145 fediverse/3367 ---
═════════════════════════════════════════════════════════──────────────────────────
 "I'm a waste of space and a worthless pile of garbage"
 
 - the most beautiful, wonderful, and kind person you've ever met
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #146 fediverse/5823 ---
═══════════════════════════════════════════════════════════════════════════────────
 the firsthing a helpful comrade would do with their mistakes is bring
 attention to them.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #147 fediverse/65 ---
════════════════════════════════════════───────────────────────────────────────────
 if something makes sense physically, but not mathematically, then the
 mathematics are wrong.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════──────────────────────────────────────────┘

--- #148 fediverse/2120 ---
══════════════════════════════════════════════════════─────────────────────────────
 sometimes I think performing my art was just an excuse to use Linux. At least,
 some of my art.
 
 But hey, I'm not complaining, it's awesome.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #149 fediverse/2906 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: death-mentioned  │
 └──────────────────────┘


 I want to live in a world where people die when they're bored instead of old.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #150 fediverse/617 ---
══════════════════════════════════════════════─────────────────────────────────────
 So much of computing is just... handling the quirks of hardware and presenting
 it to the user (programmer) in a way that is sane and makes sense, instead of
 the arcane and [nebulous/confabulous/incomprehensible] way that physical
 nature demands our absurdly potentialized computational endeavors be.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #151 messages/1053 ---
══════════════════════════════════════════════════════════════════════════════─────
 Anyway here's what i came to say:
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #152 fediverse/174 ---
═══════════════════════════════════════════────────────────────────────────────────
 One of the neat things about the fediverse is that all the accounts posting
 things like train schedules or sports scores gently encourage users to learn
 how to curate their feeds by blocking people who are irrelevant, not just
 those who hurt you
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #153 fediverse/2489 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: uspol            │
 └──────────────────────┘


 in peacetime, one may live as they define. they can be kooky and precious and
 beautiful and kind. sometimes, though, that opportunity is taken away, and
 suddenly life fades from view and all you are left with is perfect clarity.
 
 I'd like to clarify why I feel the way I do about the situation at hand.
 
 there are three reasons, so I think I'll put them in five posts, including
 this one.
 
 [1/5]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #154 messages/925 ---
═════════════════════════════════════════════════════════════════════════──────────
 but also, somehow, the coolest, kindest person you know.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #155 fediverse/5435 ---
═══════════════════════════════════════════════════════════════════════────────────
 okay flag is cool and all but what if
a picture of a flag with three horizontal stripes, to represent the breadth of a large country.  the top stripe is black, to represent the night sky  the middle stripe is red to represent the people of this earth  the bottom stripe is blue to represent the rainfall as it pools below our feet
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #156 fediverse/5437 ---
═══════════════════════════════════════════════════════════════════════────────────
 okay flag is cool and all but what if
a flag with three colored bars, oriented vertically left to right.  on the left, is a black bar, symbolizing blackness.  on the middle, is a red bar, symbolizing things that are red. and also passion because sex is red.  in the right, there is placed with due care a blue. that blue is bar. it is blue and represents water because water is clear and clearly blue.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #157 fediverse/5373 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌─────────────────────────┐
 │ CW: re: nazis-mentioned │
 └─────────────────────────┘


 @user-138 
 
 I'm sure canadia had something similar...!
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #158 fediverse/1841 ---
══════════════════════════════════════════════════════─────────────────────────────
 curling up in a ball and thinking about crying for hours is the same as
 crying. If a little bit less of a release.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #159 fediverse/1648 ---
═════════════════════════════════════════════════════──────────────────────────────
 "oh no my stuff touchers are casting a spell on my keyboard without my
 knowledge, how peculiar" said no-one in particular
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #160 fediverse/2428 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 if you're a fan of both political posts and kookie-dookerie:
Attacking your enemies weaknesses is the route to victory. Safeguarding your own helps ensure the avoidance of defeat. But when your enemy is a culture, who do you target? Their women and children of course.  The GOP attacks abortion rights. They attack trans kids in sports, schools, and bathrooms. And that which you resist is what you'll find, so they find rallying cries of leftists defending the weak. And when you maximize your weaknesses, you leave yourself vulnerable. So how do you protect yourself from all sides when you're only hit where it hurts?  Women, children, the disabled, the mentally ill, the kindhearted loving men, the oppressed minorities and marginalized workers. All people who belong to the left, and all essentially deadweight in a fight. What can they do but serve as a banner that others fight for? A man in a wheelchair cannot shoot a gun, and a woman hooked on drugs should not have children. Yet the left protects them.  Give me your tired, your hungry, your broken and your poor. Liberty, liberty, freedom for all. But freedom is won with a hard hand clenched in a fist, a hand holding the stock of a rifle. Violence solves no problems, but solutions aren't always necessary - sometimes the threat is enough. But who cares for the soul of the murderer? None but the gravediggers, who reap the benefit of his rampage and the crows who listen for gunshots.  ... there's not enough characters remaining for alt. sorry. you can read the rest on my website if you'd like.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #161 messages/1256 ---
══════════════════════════════════════════════════════════════════════════════════─
 I'm not like him.
 
 he's like me.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #162 fediverse/943 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-646 
 
 babbling, yes, but that's just how I do. sorry to bother you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #163 fediverse/3640 ---
═════════════════════════════════════════════════════════──────────────────────────
 eye tracked kindle that reads aloud the words you're looking at so you get
 visual and audio books at the same time
 
 bonus points if it does so in your own voice (give it a few years)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #164 fediverse/3641 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-619
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #165 fediverse_boost/5500 ---
◀─[BOOST]
  
  unhinged rants per random number                                            
  
                                                            
 similar                        chronological                        different 
─▶

--- #166 fediverse/5896 ---
════════════════════════════════════════════════════════════════════════════───────
 I'm not evil. I have the potential to tho so I always have to keep an eye out
 for what it looks like.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #167 fediverse/4024 ---
═══════════════════════════════════════════════════════════────────────────────────
 my cat doesn't know that my family is my family. She thinks they're just some
 other people who visit the house.
 
 but they're special to me, as all people are, and I think she takes notice.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #168 fediverse/3061 ---
════════════════════════════════════════════════════════───────────────────────────
 every time I read a subtoot I assume it's about me and I mentally curl up into
 a ball
 
 doesn't matter if it's totally irrelevant, if there's no target specified it
 defaults to me because... like, who else is there right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #169 fediverse/4026 ---
═══════════════════════════════════════════════════════════────────────────────────
 why is everyone so confused about how I turned out?
 
 I literally spent my whole childhood telling stories to myself
 
 (inspired by the world, and stories I had read, with mechanics like games I
 had played)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #170 messages/54 ---
═════──────────────────────────────────────────────────────────────────────────────
 https://kali-is-an-abdl.tumblr.com/
─────┐                                                           ┌───────────┐
 similarchronologicaldifferent════─────┴┴───────────────────────────────────────────────────────────────────────────┘

--- #171 fediverse/4716 ---
════════════════════════════════════════════════════════════════───────────────────
 "hey you're cool, can I get your socials?"
 
 sure, I mostly post on the fediverse
 
 "what's that"
 
 oh, like... Mastodon
 
 "oh, no haha I meant like a real social media"
 
 ah. well I make comments on Reddit sometimes.
 
 you make them sound like a jerk
 
 no they're cool they're just misinformed. the fediverse is the future, or
 like, something like it, I'm sure. who wants to go back to capitalism? not me
 hehe
 
 ... I'm getting silly, gonna go to sleep.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #172 fediverse_boost/6053 ---
◀─[BOOST]
  
  i post compulsively lmfao                                                   
  
                                                            
 similar                        chronological                        different 
─▶

--- #173 fediverse/5719 ---
════════════════════════════════════════════════════════════════════════───────────
 I love dispatch tables! which is a term I just learned and a concept I have
 been using for a while.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #174 fediverse/1293 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────────────────────────────────────────────────────────────┐
 │ CW: re: fedi meta, the bad space, fediblock, misleading and untrue cw, uspol, speedrunning discourse, industrial revolution, aquarium tips │
 └──────────────────────────────────────────────────────────────────────────────┘


 @user-921 
 
 where tf is all this discourse I always hear about like what are ya'll talking
 about
 
 ... are you talking about me
 
 [silly intrusive thoughts teehee pay no mind]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #175 fediverse/1335 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-803 
 
 you're welcome! thanks for speaking the things you say. I miiiiight have
 screenshotted some things you said a week or three ago and sent it to my
 boyfriend like "SEE someone else gets it" hope that's okay
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #176 fediverse/6040 ---
════════════════════════════════════════════════════════════════════════════───────
 everyone's all against ai because it's big tech but it doesn't have to be that
 big it can be [minimized but pronounced marginalized]
 
 == stack overflow ==
 
 distributed
 
 so I think the idea is that by the time you would use AI, there's been enough
 time to rewrite the software to work on handheld laptops in a distributed way
 
 and we'd vote on what to ask the amphora of great knowledge, the answer could
 always be 42.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #177 fediverse/772 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────────────────────────────┐
 │ CW: content-warnings-ai-trauma-woe-mentioned │
 └──────────────────────────────────────────────┘


 also applies for alt-text on pictures for people with screenreaders
 
 something something "if I play both sides, then I'm always right!"
four panel meme of a cute girl with sunglasses and a bow in her hair.  first panel she's like "nah, no thank you" while gesturing dismissively with her hand and turning away.  second panel is what she's against - it shows text saying: "Putting content warnings on your posts so that the data can be used in a dataset for an LLM that has been sanitized from political content thus depriving it of context in a post truth world"  third panel she's like "yeah, I like this one instead." and she's smiling and pointing a finger at the fourth panel, which reads:  "content warning your posts so that you don't hurt other people's feelings or trigger vulnerable people who are just trying to laugh at memes or have a decent life in the face of trauma and woe"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #178 fediverse/2881 ---
═══════════════════════════════════════════════════════────────────────────────────
 "never lose your totem"
 
 I only lose things when in motion. at rest I know where everything is.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #179 fediverse/2215 ---
══════════════════════════════════════════════════════─────────────────────────────
 I'm kind of a hermit, but it's sunday and I have nothing to do, so I'm going
 to get lost on my bike today in a city I've lived near for almost 5 years and
 really should know better by now.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #180 fediverse/466 ---
══════════════════════════════════════════════─────────────────────────────────────
 I love Linux. All I have to do is type "authserver" and "worldserver" and
 wouldn't you know it suddenly a universe is created (with very constrained
 rules) that anyone might inhabit should they desire to. It's not like I'm
 perfect - oh wait I have a toot about that, gimme a sec
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #181 messages/1239 ---
══════════════════════════════════════════════════════════════════════════════════─
 I am a slow burn.
 
 glacial pace.
 
 read me as such.
 
 sparks in your imagination, not a flood of content.
 
 sit with me.
 
 drink tea with me.
 
 remember me.
 
 trust me.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #182 fediverse/4751 ---
════════════════════════════════════════════════════════════════───────────────────
 apparently security through obscurity is out, and security through community
 is in, don't ask me how I know that teehee
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #183 fediverse/4427 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-246 
 
 I am the infohazard but I have that "automatically expand CW" post marked off.
 I like to click them each time, and with CWs it makes it easier to scroll back
 a couple months to find what you're looking for.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #184 fediverse/4128 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-883 
 
 wait until they learn what you've been working on while they were getting
 better at... whatever they're more experienced in than you.
 
 the computer pictures you post are legitimately some of the coolest I've
 known! I don't exactly go looking for that kind of stuff because it's not my
 thing, but I appreciate seeing all the neat stuff you're working on.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #185 fediverse/1589 ---
════════════════════════════════════════════════════───────────────────────────────
 When I first came to the fediverse it felt like a breath of fresh air -
 finally, I could speak to the world!
 
 I don't know what happened, but somehow now it feels like I only speak to
 like, 30 people
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #186 fediverse/1958 ---
══════════════════════════════════════════════════════─────────────────────────────
 I can't believe I didn't go. What's wrong with me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #187 fediverse/4980 ---
════════════════════════════════════════════════════════════════════───────────────
 dream bigger than "the same, but nice"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #188 fediverse/1385 ---
═════════════════════════════════════════════════──────────────────────────────────
 listen if your man page is more than like, 10 pg-down's, then you might want
 to consider breaking that utility up into smaller pieces.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #189 fediverse/2786 ---
═══════════════════════════════════════════════════════────────────────────────────
 the best way, I find, to be deserving of trust is to do the best that you can,
 and be honest when you cannot do more.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #190 fediverse/1263 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 My friends and I decided to hang out for two days in a row, I guess they
 aren't tired of me yet hehe - I might be around tonight but I'll let you know!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #191 notes/words ---
═══════════════════════════════════════════════════════════════════════════────────
 words
 
       messages to myself, public fediverse posts, and notes to the gods
 
                           - ri tselen menardi
                             james cameron king
                             anja rosalia vavadane
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #192 fediverse/989 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: 3/20 swearing    │
 └──────────────────────┘


 3/20
12. the text continues from the previous page and reads "if it's been ten or more years since they moved in, the site gets rebuilt. [wait, hang on, weren't we talking about html websites? when did houses come into the discussion?]  ... wait, what was I saying? Oh yeah the text is on a gray background, as interrupting as a scythe, with a yellow backdrop as if to represent sheer white-hot flame except not white the color of all colors but fire the color of all flames. the text reads "prince of the nehalim" in bright pinking blue, as in something completely foreign and unknown to you, and continues on to read in red "so many opportunities" as if life hadn't absconded, but instead of severed instead. "parabolas persist" in the flavor of blue, the color of space in a non-light polluted view.  "live life like you're merry, as do but a few."  do you want to make people feel better? or do you just want to make them confused? Neither, really, I'm trying to tell the truth. I'm seriously just struggling to find a way to express things that others clearly seem to be forgetting - I'm not an expert in other stuff! This is literally all I'm good at! Is it valuable? Maybe not to you, but I think it could be useful, or else I would covet it and leave it in disuse.  it's time is relevant, it's words fit into a context, so if you misunderstand it's past then it's probably because you don't have the records or the ability to process them of the time in which it was posted. What if things were de 10 ten. blue text on a blue background, as a calming and soothing influence, saying "it's okay, don't freak out, just think about learning lessons about stuff that *could* go wrong and think about how you'd counter it. just like any video game, there's a strategy to defeat any other strategy. the careful application of said strategy while using or applying your own capabilities is directly correlated to the conclusions of the task." meanwhile the listener is like "what the fuck" wait shit hang on lemme add a content warning:  right so the text reads "if you want your neighbors to know something, don't post it on the internet - put it on a post-it on the wall in a public place" like, your front door, or maybe the entrance to your building, or the parking garage near the mall, or maybe the grocery store, on a product behind the one in front. that kind of thing.  depending on who you want to see it, of course... people used to do this with library books but stopped because it's quite obviously a bad and rude thing to do, books are for record keeping of the status of humanity, through each and every one of it's forms. It's weird that they all have the same stuff, because they're designed for capitalism right? Why not share them based on availability, and keep as many different types of things as possible?  when nobody cares for them, how will we remember the countless books nobody reads? How will we understand that step in developing our culture if we don't have access to the con 9. the text begins to diverge at this point, on the left it reads "it's easy if you want some privacy, - all you have to do" and then is cut off by the introduction of red text on a green background, to evoke similar colors as the original thing it was interrupting but it's own thing nonetheless, and existing off to the side in tandem, so that conditions could not remain unaddressed. the text reads "they were betting on selling us space flight [with spaceflight sliding from one side to the other, like a rocket escaping the gravitic pull of the planet it surrounded] but we cared more for food and water" the second part, after spaceflight about food and water, is intruding onto the yellow's background, which was next, to represent a continuation of the previous thought about websites and HTML. it's frustrating for the next text, which is in purple, a confused and disoriented color. it continues from the original thought "is delete the website! Boom, no more html. but if they were listed (neocities sites on a map of the region" but map is emphasized with a different color, green the color of the land, and "region" is pronounced like "realm" or perhaps "ground" or even "directions" or "land beyond the horizon (if it even exists)") 11. I think. orange text on a green blue background, same background as the previous three pictures. orange text which contrasts in a way that almost calls back to the 80s, but not quite. a little too dirty, like the blue and orange decorations around highways in New Mexico. car smoke and tire dust'll do that, and it's not like it's easy to clean - right next to the freeway, c'mon! Wouldn't it be nice if we shut it down for a day or two? Unless you had very important business, solely self-suggested. if too many people used it on those days (when they were cleaning it) then they're supposed to follow through and identify if their need was too great or if they were just being an asshole about it because their bosses forced them to. basically like, family emergencies gets a lane, things that are crucial to a social event like no beer at a frat party or whatever, heck even if the girl you like really wanted to get laid. whatever the heck it is, if you deem it an emergency then that's fine. you can drive while the highway is being cleaned. just make sure you don't slip on the suds...  ... a while later, humanity realized they could just close one direction at a time and clean the next one next time.  what was I saying? Oh yeah the text! Here's what it reads: "every year, replace five percent [but read as %] of the homes and boom you're good - maybe even do 10% if things are going well - either way, as time goes on people can live in a house as long as they want - but when they mov
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #193 fediverse/253 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-201 this post hurts my autism T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #194 fediverse/6007 ---
════════════════════════════════════════════════════════════════════════════───────
 I always get the syntax backwards, for some reason...
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #195 fediverse/4766 ---
═════════════════════════════════════════════════════════════════──────────────────
 what if instead of federating social media instances we federated users instead
 
 why not have an account on each and every mastodon instance? then just RSS
 feeder yourself and boom suddenly you can customize your identity on each
 fediverse house.
 
 maybe with a checkbox of which instances you'd like to post to on your "submit
 link or text post" button
 
 study encryption kids
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #196 fediverse/4182 ---
════════════════════════════════════════════════════════════───────────────────────
 never post profile pics in more than one place
 
 that way you can verify that you're from the same place as someone else by
 showing them your profile pic which they'll surely recognize
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #197 messages/119 ---
══════════════════════════════════════════════─────────────────────────────────────
 I dream of a world of blues and greens with a bright white sky
 
 Then I open my eyes and look outside and see a world of blues and greens with
 a bright white sky
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #198 messages/1039 ---
═════════════════════════════════════════════════════════════════════════════──────
 I'm worth it.
 
 I don't demand much. Feed me, take change of me, care for what i do, that's
 pretty much all.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #199 fediverse/2812 ---
═══════════════════════════════════════════════════════────────────────────────────
 when you're alone, everything that happens to you is personal.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #200 fediverse/3573 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1561 
 
 heyyy wanna be friends? I can offer letter repetition as tribute
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘