=== ANCHOR POEM ===
════════════════════════════════════════════════════════───────────────────────────
 I'd love to stream Ocarina of Time for you. But I can't figure it out T.T obs
 is borken unless I update my video cards, but if I update it'll break
 something. It always does.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

=== SIMILARITY RANKED ===

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

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

--- #3 fediverse/4388 ---
═════════════════════════════════════════════════════════════──────────────────────
 I'm sorry, but you can't play any more video games for a while. No more
 spending time on hobbies. When you meet, discuss what needs you see and how to
 fulfill them.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #4 messages/610 ---
═════════════════════════════════════════════════════════════──────────────────────
 I'm sorry, but you can't play any more video games for a while. No more
 spending time on hobbies. When you meet, discuss what needs you see and how to
 fulfill them.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #5 fediverse/5345 ---
═══════════════════════════════════════════════════════════════════════────────────
 you can't win every battle, but if you're losing then you've lost.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #6 fediverse/1693 ---
═════════════════════════════════════════════════════──────────────────────────────
 "if I work on the TTY then they can't forward my X session without my consent"
 
 - ramblings of the utterly deranged
 
 as if they couldn't just look at your unencrypted source-code as you save it
 to your hard drive smh
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #8 fediverse/1246 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 hehe if I don't understand how it works it's difficult for me to use things.
 My Linux friends get so exasperated with me because I'm like "cool script
 gimme like 2 days to figure it out" and they're like "bro just use these
 flags" and I'm like "no"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #9 fediverse/3384 ---
═════════════════════════════════════════════════════════──────────────────────────
 okay fine! Lemme beat this dungeon (Dodongo's Cavern) in Ocarina of Time and
 then I'll figure out how to stream stuff. Probably won't have time for it
 until the weekend, but I can at least set it up.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #10 fediverse/5069 ---
════════════════════════════════════════════════════════════════════───────────────
 if you have problems with games on linux, I can help you install it
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #11 fediverse/5441 ---
═══════════════════════════════════════════════════════════════════════────────────
 I just really like video games I guess??
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #12 fediverse/6292 ---
══════════════════════════════════════════════════════════════════════════════─────
 I'm stuck. I don't know how to leverage whatever talents I have into making
 things happen. Maybe I should seek advice from a wise elder...
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #13 fediverse/1221 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 either that or I might get lost in some C code we'll see how things develop
 >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #14 messages/777 ---
═══════════════════════════════════════════════════════════════════────────────────
 waaaahhhhhhhh my computer broke because I didn't touch it T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════───────────────┘

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

--- #16 fediverse/1477 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 hmmmm I'm running mediamtx on the same computer that I'm running the streaming
 script on. I'll try with 127.0.0.1
 
 I don't think I updated my system since it was working last time. I'll scroll
 through our chat and see if I can find any hints.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #18 fediverse/4866 ---
═════════════════════════════════════════════════════════════════──────────────────
 don't you just love it when you get several discord notifications but you tab
 back to check out the discord screen and there's no red numbers anywhere?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #19 fediverse/1140 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-78 
 
 ah but if you increase it then I might be able to actually finish a thought,
 wouldn't that be a tragedy xD
 
 @user-91
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #20 fediverse/1686 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1049 
 
 doesn't work on Firefox T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #21 fediverse/329 ---
═════════════════════════════════════════════──────────────────────────────────────
 @user-241 okayyyy if I must =P =P
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #22 fediverse/3299 ---
════════════════════════════════════════════════════════───────────────────────────
 what if we could record and playback certain timeframes of our CPU and RAM
 status and use it for debug purposes
 
 like running some code in a VM every time you wanted to show a youtube video
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #23 fediverse/5089 ---
════════════════════════════════════════════════════════════════════───────────────
 I can't see very well. I need bifocals, but like... reversed, so the
 close-range thing is at the top and the long-range is at the bottom, just to
 see how terrible it'd be
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #24 fediverse/5488 ---
═══════════════════════════════════════════════════════════════════════────────────
 okay ttyl I gotta go play video games I guess >.>
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #25 fediverse/6296 ---
══════════════════════════════════════════════════════════════════════════════─────
 @user-1918 
 
 I can't wait to see a timelapse! The universe is gorgeous, and the fact that
 we can see this is beyond amazing!
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #26 fediverse/2873 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────────┐
 │ CW: re: unsolicited advice │
 └────────────────────────────┘


 @user-883 @user-192 
 
 I don't update my kernel more than like, once every few months, so maybe that
 would be something to look into! how scriptable is it?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #27 fediverse/3595 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-883 
 
 do you have music videos tho? :O :O
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #28 fediverse/3092 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────────────────────────────────────────────────────────────┐
 │ CW: re: why-are-you-so-demanding-ritz-just-give-it-a-rest-everyone-agrees-with-you │
 └──────────────────────────────────────────────────────────────────────────────┘


 @user-570 
 
 oh yeah UBI would be nice. Can we do that instead?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #29 messages/1002 ---
═══════════════════════════════════════════════════════════════════════════────────
 In revolutionary Cascadia, you don't have to do anything different. Until you
 decide you want to.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #30 fediverse/5793 ---
══════════════════════════════════════════════════════════════════════════─────────
 I posted my words text file all over the c it y today. not sure why. maybe I'm
 tired of this course and I don't want to let anyone down? Maybe I don't know
 what to do yet. Maybe nobody works with me because everyone's keeping it on
 the DL or whateverr?
 
 ... anyway enough typing, I'm going to go play a video game. like god intended.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

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

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

--- #33 fediverse/3779 ---
══════════════════════════════════════════════════════════─────────────────────────
 ┌────────────────────────┐
 │ CW: cannabis-mentioned │
 └────────────────────────┘


 I don't think I can write Ephemeren without weed T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #34 fediverse/806 ---
═══════════════════════════════════════════════────────────────────────────────────
 ... sorry, forgot to content warning that last one. I'm kinda using this
 format like a twitch stream... how [weird, strange, perceiving, perplexing,
 confusing]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #35 fediverse/3406 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 ohhhhh I think the password is menardi. or maybe ephemeren. I forget.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #36 fediverse/1207 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 okayyyy I have catgirl installed
 
 https://git.causal.agency/catgirl/about/
 
 let me know what server or whatever to join
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #37 messages/1011 ---
════════════════════════════════════════════════════════════════════════════───────
 Girls be like "ugh stop trying to solve my problems! They're impossible to
 fix!"
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #38 fediverse/4018 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌───────────────────────────────────────────────────────────────┐
 │ CW: weaponizing-girlfriends-material-to-defame-her-and-infamy │
 └───────────────────────────────────────────────────────────────┘


 I can't even imagine what it would be like to hang out with me
 
 I can't imagine what it would be like to hang out with me
 
 imagine what it would be like to hang out with me
 
 what would it be like to hang out with me
 
 would you like to hang out with me
 
 you and me
 
 we could watch tv
 
 play video games
 
 have a good time
 
 [notices an article about coral reefs]
 
 oooo coral
 
 [reads article about coral reefs]
 
 https://www.wired.com/story/darpa-thinks-walls-of-oysters-could-protect-shores-
 against-hurricanes/
 
 ... anyway gtg ttyl hope you feel better soon don't forget to make pancakes
 and your keys are in your room.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #39 fediverse/5191 ---
═════════════════════════════════════════════════════════════════════──────────────
 do you love linux or do you just love fixing dependency errors?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #40 fediverse/3562 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1550 
 
 me too T.T
 
 give it time
 
 someday everyone will be paid to do whatever they wanted
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #41 fediverse/1893 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1056 
 
 heh probably, though for this specific instance my Ollama server wasn't
 running and I had already killed my Stable Diffusion server after utterly
 failing to produce anything useful... alas, a girl can dream of having a robot
 familiar, but not today I guess.
 
 Not if they keep hiding GPU usage from me >: (
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #43 fediverse/3748 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-203 
 
 I've been trying to get it to work with raylib but I'm having difficulties
 with the C interoperability T.T
 
 https://www.raylib.com
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #44 fediverse/3971 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌─────────────────────────┐
 │ CW: mental-health-minus │
 └─────────────────────────┘


 somebody asked me for popcorn and I couldn't even provide it! What kind of
 witch am I if I can't provide popcorn on demand T.T T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #45 fediverse/4531 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌──────────────────────┐
 │ CW: re: uspol        │
 └──────────────────────┘


 @user-1695 
 
 I can't give you that. Not yet.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #46 fediverse/4901 ---
═════════════════════════════════════════════════════════════════──────────────────
 "hey what if we broke our product and made it impossible to use without being
 caught by github"
 
 - computer touchers in a union
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #47 fediverse/5239 ---
══════════════════════════════════════════════════════════════════════─────────────
 I play video games to help me think just like programmers play video games to
 help them sleep
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #48 fediverse/3759 ---
══════════════════════════════════════════════════════════─────────────────────────
 I can't get into a game with swords like this, I'm sorry, those aren't swords
 they're stat sticks...
picture of an anime girl offering a sword  picture of a second anime girl looking at the sword with disgust because the sword is obviously ornamental or ceremonial in some way. It has strange spiky bits and weird impossible-to-use features like a dragon shaped handle and an impossible shape.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #49 fediverse/5081 ---
════════════════════════════════════════════════════════════════════───────────────
 what if mastodon recorded the date and time of every time you boosted /
 unboosted something so you can keep track of what your page looked like over
 time [in the export data functionality]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #50 fediverse/4083 ---
════════════════════════════════════════════════════════════───────────────────────
 It's easy to stop cringing at others, but how the heck do you stop cringing at
 yourself?? it's impossible!!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #51 messages/359 ---
════════════════════════════════════════════════════───────────────────────────────
 "God doesn't know he ate the universe, and we're doing everything we can to
 make sure it stays that way."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #52 fediverse/2307 ---
═══════════════════════════════════════════════════════────────────────────────────
 "If you can't find it, you don't have it"
 
 ugh I know, me-from-the-past, now shut up and tell me where my USB-C cable is.
 I have like 4 how did I hide them so good when packing ? ? ?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

--- #55 fediverse/3274 ---
════════════════════════════════════════════════════════───────────────────────────
 "I can't remember that function, it does too few things"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #57 fediverse/5988 ---
════════════════════════════════════════════════════════════════════════════───────
 but I like moonmen T.T
 
 what if the ISS was untethered
 
 "send thrusters to space? why bother? just use them down on the surface to get
 that extra oomph!"
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #58 fediverse/3301 ---
════════════════════════════════════════════════════════───────────────────────────
 "this program that used to work doesn't anymore because, uh, your video
 drivers are out of date."
 
 ... okay but if I didn't update this program either, then why would it matter
 if my video drivers are out of date? wouldn't they be working off of the same
 [rulings/requirements]?
 
 the "best practice" of updating your software all at once instead of
 one-by-one is a disaster for our humankinds consequences or whatever
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #59 fediverse/205 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌────────────────────────┐
 │ CW: re: guns-mentioned │
 └────────────────────────┘


 @user-95 because I left a puzzle on my website and she's trying to unlock it :
 )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

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

--- #61 fediverse/618 ---
══════════════════════════════════════════════─────────────────────────────────────
 Can't stop thinking 
 
 [the rest is left blank, as a testament to the inability of the author to
 express their thoughts in a temporally contextual way. Presumably the previous
 text would be followed by an "about..." with the rest dedicated to a
 particular thought that felt important enough to share with the internet.]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #62 fediverse/3997 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌──────────────────────┐
 │ CW: re: mh-          │
 └──────────────────────┘


 @user-889 
 
 I put your music in one of my favorite videos and I think about you every time
 I think about it
 
 I hope that means something
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #63 notes/screen-record ---
═════════════════════════════════════════════════════════════──────────────────────
 screen record should just... copy from the associated music file instead of
 like... imperfectly storing the visual contents??
 
 better compression... 'sall I'm sayin'
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #64 fediverse/6294 ---
══════════════════════════════════════════════════════════════════════════════─────
 if you play optimally, you'll never get any chance to make decisions.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #65 fediverse/923 ---
═══════════════════════════════════════════════────────────────────────────────────
 but I don't know any of your dances, so don't ask.
 
 I can show you mine if you'd like.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #66 fediverse/107 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 I remember the fourth and fifth, and maybe the 2nd or 3rd? somewhere
 in there. might have been sixth or seventh, too. I figured I needed all or
 none of them, but I wasn't sure how or which. Also I can't remember half of
 them, which makes the problem even more confusing...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #67 messages/146 ---
═══════════════════════════════════════════════────────────────────────────────────
 maybe if I slept until the end of time,
 I'd do better on the way back.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #68 fediverse/2869 ---
═══════════════════════════════════════════════════════────────────────────────────
 "nobody told me you can wear skirts above your boobs!"
 
 they used to have straps, too.
 
 [above boobs, below armpits]
 
 also like a skirt for your shoulders, but only a really flowy one would work.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #69 fediverse/3285 ---
════════════════════════════════════════════════════════───────────────────────────
 ah well guess I can't stream things hehe
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #70 fediverse/3095 ---
════════════════════════════════════════════════════════───────────────────────────
 if your business can't afford to have a back-up plan, then it is not a
 sufficiently prepared operation.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #71 fediverse/5766 ---
═════════════════════════════════════════════════════════════════════════──────────
 ┌────────────────────────────┐
 │ CW: spirituality-mentioned │
 └────────────────────────────┘


 "nobody gets you" hence, cassandora and pandasandra
 
 "girl you can't just say something ominous like INVOKING PANDORA if you aren't
 sitting on something capable of mass doom" haha I want to cry
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

--- #73 fediverse/3597 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌─────────────────────────────┐
 │ CW: re: computers-mentioned │
 └─────────────────────────────┘


 @user-1573 
 
 oh how could I forget! VIMFOLDS! Absolutely impossible for me to live without
 them tbh
a picture of a vimrc file.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #75 fediverse/824 ---
═══════════════════════════════════════════════────────────────────────────────────
 I once heard that time doesn't pass when you're well and truly in the moment,
 and I thought "that's not true, I'm always losing track of the moment".
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #76 messages/194 ---
════════════════════════════════════════════════───────────────────────────────────
 If I destroyed the world, don't worry. I'd bring it back in such a way that
 the teleporter problem doesn't apply, and there would be no discontinuity for
 anything except for the time variable, which is sort of arbitrary anyway.
 
 And if that's a problem I guess I could find a way to do it without messing
 with the time variable, but that'd be a bit more bothersome.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #77 fediverse/3920 ---
═══════════════════════════════════════════════════════════────────────────────────
 Supreme Commander ruined me.
 
 I can't play RTS games without a zoom function T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #78 fediverse/2884 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: tech-paranoia    │
 └──────────────────────┘


 every time I update my system, it breaks.
 
 kinda makes me think they do that on purpose so that you spend all your time
 up to date and that way they can quickly patch in and out security flaws fast
 enough that nobody notices.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #79 fediverse/1185 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 Hell yeah. I can't help but wonder if there's a more universal solution on the
 horizon that will work for every game, using idk a raspberry pi zero or
 something? I'm into hardware but not that much so forgive my insolence. Seeing
 these purpose-built PCBs applied toward historical preservation and
 utilization of forward thinking retro gaming technology fills my heart with
 joy.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

--- #82 fediverse/1035 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-757 @user-192 
 
 true and my suggestion doesn't provide a tracelog, pretty much just the status
 of the variables when it pauses or ends.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #83 fediverse/5969 ---
════════════════════════════════════════════════════════════════════════════───────
 I can't find my pants T.T
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #84 fediverse_boost/4747 ---
◀─[BOOST]
  
  i love capitalism bc everywhere is understaffed and none of my friends can find jobs  
  
                                                            
 similar                        chronological                        different 
─▶

--- #85 fediverse/4084 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌──────────────────────┐
 │ CW: re: -mentioned   │
 └──────────────────────┘


 @user-1074 
 
 the more you try, the more you have to calculate, which is a problem, because
 endlessly recursive calculations create infinite loops, which frankly are
 impossible to compute because they defy computation! Not good, not ideal, no
 thank you, not for me, no thanks, not what I'd like.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #86 fediverse/3924 ---
═══════════════════════════════════════════════════════════────────────────────────
 we must upgrade cats until they can survive falls from terminal velocity
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #87 fediverse/3602 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌─────────────────────────────┐
 │ CW: re: computers-mentioned │
 └─────────────────────────────┘


 @user-1572
 
 nope
 
 I figure if I have to rebuild them, oh well.
 
 plus this way I can give each of my computers a slightly different personality.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #88 fediverse/1223 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 Hey, how difficult was it to set up the kind of streaming you did yesterday?
 You said it was RSTMP or something like that? What should I google, I kinda
 want to set it up on my system : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #89 fediverse/6180 ---
═════════════════════════════════════════════════════════════════════════════──────
 @user-1605 
 
 yeah, just trying to do more creating and less chatting : )
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #90 fediverse/2601 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-249 
 
 you can host anything you'd like on a raspberry pi. If the software
 requirements are within the hardware specs, of course.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #91 fediverse/2198 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1206 
 
 Plug it into my mostly broken laptop that has the network card physically
 removed and see what's on it
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #92 fediverse/5456 ---
═══════════════════════════════════════════════════════════════════════────────────
 today I'm gonna paint a house and tomorrow I'm gonna go to the park.
 
 if I can't do that then I'll try tomorrow.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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


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

--- #94 fediverse/3124 ---
════════════════════════════════════════════════════════───────────────────────────
 I should not have to follow 16 steps that I don't understand just because you
 decided my system wasn't good enough for me.
a long list of steps in order to update a gentoo system to a new version (not even the newest version, I might add)
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #95 fediverse/3446 ---
═════════════════════════════════════════════════════════──────────────────────────
 if I had an alternate mirror version of me that was almost exactly the same
 except one of us liked almond butter instead of peanut butter...
 
 I think we could probably manage two universes better than one.
 
 it'd be nice to have someone who liked every single game that I did.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

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

--- #99 fediverse/5659 ---
════════════════════════════════════════════════════════════════════════───────────
 it's not a game, but all I know how to do is play.
 
 I can't do everything
 
 ideally, I'd do nothing.
 
 wei wu wei and all that
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #100 fediverse/1531 ---
══════════════════════════════════════════════════─────────────────────────────────
 An American princess wears turquoise and silver, not diamonds. Though I'm sure
 she wears diamonds sometimes too.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #101 fediverse/5700 ---
════════════════════════════════════════════════════════════════════════───────────
 it's okay if you hate me. Please don't have me and not tell me...
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #102 fediverse/2261 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1209 
 
 if I lived in a lawful time then perhaps I would have time to sue them. alas
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #103 fediverse/5753 ---
═════════════════════════════════════════════════════════════════════════──────────
 what if we separated video game servers by language instead of region
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #104 fediverse/3506 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-95 
 
 like, trading cash for drugs in front of a police station? I couldn't agree
 more!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #105 messages/968 ---
══════════════════════════════════════════════════════════════════════════─────────
 what if you painted every house twice, to ensure you got the color completely
 applied [ bright green or yellow would shine through in little spots, clear
 and obvious to even the most undiscerning of patrons of the arts
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

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

--- #107 fediverse/3822 ---
══════════════════════════════════════════════════════════─────────────────────────
 @user-1582 
 
 I think that's what happened, in addition to... whatever this input/output
 error is. No clue what to do about that. Maybe my SD card is dying, I've
 flashed over it like, 10 times now haha 😅
ls: command not found  /bin/ls -bash: /bin/ls: Input/Output error
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #108 fediverse/5949 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-138 
 
 I don't know what it does yet T.T
 
 it's Lua, not C
 
 what's the message? maybe I can help, I'm much better at bash than... actually
 I'm not very good at bash, but only the cool kids are.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #109 fediverse/5881 ---
════════════════════════════════════════════════════════════════════════════───────
 I wish I could click on ls output to cd up or down
 
 girl that's just called midnight commander
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #110 fediverse/1842 ---
══════════════════════════════════════════════════════─────────────────────────────
 I could never live happily ever after if a single one of you could not
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #111 fediverse/2314 ---
═══════════════════════════════════════════════════════────────────────────────────
 couldn't sleep. Oh well. Here's what I couldn't get out of my head:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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


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

--- #113 fediverse/3823 ---
══════════════════════════════════════════════════════════─────────────────────────
 "sometimes I don't want to be optimistic sometimes I just want to complain"
 
 oh yeah well what if I want to be optimistic at all times as a coping
 mechanism huh you don't have to agree with me
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #114 fediverse/3649 ---
═════════════════════════════════════════════════════════──────────────────────────
 double tapping the star button because I want them to know I appreciate them
 but I don't want to clog up my "pinned for all time" section of this neat
 little website
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #115 fediverse/6029 ---
════════════════════════════════════════════════════════════════════════════───────
 spilled water on my keyboard by living with a cat. it might be broken so I'm
 using a spare that my girlfriend lent me. if you're wondering why my password
 sounds different...
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #116 fediverse/5961 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-138 
 
 maybe it's evil hackers - idk that's beyond my expertise - good luck : )
 
 (I'd need to see the piece of technology to work on it. I'm a hardware kinda
 [girl, but pronounced guy])
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #117 fediverse/6269 ---
══════════════════════════════════════════════════════════════════════════════─────
 what if the secret to LLM computation is to just not reduce the fractions and
 keep it all in english language ram
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #118 fediverse/4935 ---
═════════════════════════════════════════════════════════════════──────────────────
 ... I think. I don't actually know how bitcoin works.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #119 fediverse/6209 ---
══════════════════════════════════════════════════════════════════════════════─────
 okay just to clarify: if anyone is recording me or storing data about me, I
 would really prefer if you didn't delete it just because I realized it was
 happening. I like data! It's cool to know such things!
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #120 messages/143 ---
══════════════════════════════════════════════─────────────────────────────────────
 I always figured if people didn't like what I was saying they'd contest me so
 I could change it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #121 fediverse/1226 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 Pretty sure I use ALSA, but I might have installed Pulseaudio for
 compatibility reasons. I'll see
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #122 fediverse/330 ---
═════════════════════════════════════════════──────────────────────────────────────
 if you want to understand me, play Majesty the Fantasy Kingdom Sim (when you
 have time and are bored (very important combination)) - start on beginner
 difficulty and click the right buttons.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

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

--- #124 fediverse/3287 ---
════════════════════════════════════════════════════════───────────────────────────
 oh great my games are randomly crashing now in ways that they didn't used to do
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #125 fediverse/5185 ---
════════════════════════════════════════════════════════════════════───────────────
 frankly it makes a ton of sense to me that computer programmers would have a
 game playing in the monitor. Gotta keep those brains active after all.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #126 fediverse/1309 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 just realized when I got disconnected it gave me a different username, so if
 you've been messaging me I haven't been getting it. Ooops. relogging now to
 try and fix it.
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #127 messages/1145 ---
═════════════════════════════════════════════════════════════════════════════════──
 Death is final. It has no further answers nor questions. I prefer confessions.
 Once the sins are written, by voice and by heart, then they cannot hurt you
 anymore.
                                                           ─┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════════─┘

--- #128 fediverse/2217 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌─────────────────────────────────┐
 │ CW: TMI-trans-surgery-mentioned │
 └─────────────────────────────────┘


 I'm post-op, but you couldn't tell from my face. 😉
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #130 fediverse/5072 ---
════════════════════════════════════════════════════════════════════───────────────
 I like to play with the camera zoomed in all the way and by only using my
 mouse. no keyboard. just clicking noise.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #131 fediverse/4155 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-889 
 
 can't comment on your personal life, but you make good music tho so that's
 something.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #132 fediverse/4192 ---
════════════════════════════════════════════════════════════───────────────────────
 whyyyyyyy am I cursed with this 1024 character limit
 
 why can't it be like, 16 characters total. I think that'd limit my thoughts
 enough.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #134 fediverse/5947 ---
════════════════════════════════════════════════════════════════════════════───────
 you're supposed to try it out and see. or are you not a hacker?
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #135 fediverse/1001 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌───────────────────────────────────────────────────────────┐
 │ CW: re: cursed-curséd-scary-not-real-u-dont-have-to-read │
 └───────────────────────────────────────────────────────────┘


 @user-246 @user-473 
 
 perhaps that "light touch on reality" is what makes these pieces of art
 resonate with me. I think you're beautiful and have a good heart.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #136 fediverse/5303 ---
══════════════════════════════════════════════════════════════════════─────────────
 I don't ever delete my posts (except two or three times because I had a crisis
 of faith)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #137 fediverse/3366 ---
════════════════════════════════════════════════════════───────────────────────────
 I don't know who needs to hear this, but if your friend sends you a paragraph
 you don't have to respond with a paragraph.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #138 fediverse/3815 ---
══════════════════════════════════════════════════════════─────────────────────────
 trying to tame a young dumb monster, wish me luck, I see good in him
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #139 fediverse/5552 ---
════════════════════════════════════════════════════════════════════════───────────
 I once heard that when you click a link, the developer of the website can tell
 which website you came from. idk if that's true or not.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #141 fediverse/608 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-453 
 
 Now if only we could convince them that they could use those GPUs to build low
 income housing or cure cancer or something useful...!
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #142 messages/910 ---
═════════════════════════════════════════════════════════════════════════──────────
 all you need is to be steam friends with one person and then your whole
 organization knows what you're trying to say with game titles
 
 (I just like games)
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

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

--- #145 fediverse/1669 ---
═════════════════════════════════════════════════════──────────────────────────────
 "she has a certain, I don't know what, je ne sais quoi? that I don't know what
 to describe as."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #146 fediverse/3134 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1352 
 
 I like that article. I definitely fail to follow some of those principles at
 times, though never all of them at once. I can be better, as all people can.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #147 fediverse/5360 ---
═══════════════════════════════════════════════════════════════════════────────────
 another day goes by when I haven't done any programming... oh well
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #148 fediverse/1600 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 oooo those are cool, but it didn't have the "puzzlepiece" arrangement. It was
 more... 2 dimensional I think? More like putting marbles on a chinese-checkers
 board. And they had relationships if you moused over them, like...
 semi-transparent arrows connecting them I think? It was different than
 anything I'd ever seen before.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #150 messages/103 ---
═════════════════════════════════════════════──────────────────────────────────────
 *which is why I try to be as unique as I can.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #151 messages/245 ---
════════════════════════════════════════════════───────────────────────────────────
 I measure my value in terms of the number of things that I can take care of
 that are older than me
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #152 fediverse/6361 ---
═══════════════════════════════════════════════════════════════════════════════────
 sometimes I like playing two lofi/ambient playlists at once. if they don't
 sync up I switch one of them until it feels fine.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #153 fediverse/4336 ---
═════════════════════════════════════════════════════════════──────────────────────
 gonna play more video games, currently have 11 tabs of written posts open in
 my browser...
 
 (okay a few of them get a little off-topic, but hey I have ADHD what do you
 expect of me)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #154 fediverse/2405 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1165 
 
 you might be right, I don't know much about DSA aside from their numbers. To
 me, it feels like it's run sorta like a church? but again I have no idea
 because I've never been.
 
 do you have a better idea?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

--- #158 fediverse/900 ---
═══════════════════════════════════════════════────────────────────────────────────
 if you want time to go slower, stop entertaining yourself.
 
 "time flies when you're having fun"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #159 fediverse/4014 ---
═══════════════════════════════════════════════════════════────────────────────────
 I don't know about you, but "trying my hardest" involves giving up sometimes.
 
 How else are you to know your limits if you don't test your boundaries? And,
 after finding that there's nowhere else for you to go, you turn around and
 "give up", until you're ready for your next expedition.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #160 fediverse/5880 ---
════════════════════════════════════════════════════════════════════════════───────
 I legitimately think computers should write code and software engineers should
 write legislation and lawyers should resolve problem tickets made by aggrieved
 citizens while judges do their best to just keep the boat floating
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #161 fediverse/3776 ---
══════════════════════════════════════════════════════════─────────────────────────
 whenever repeating letters like thiiiiiiis  or thisssss make sure if you're
 doing K's that you have at least four
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #162 fediverse/1224 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 sure that would help! I've used it to convert video files to a smaller size
 for uploading to websites, but that's about it
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #163 messages/996 ---
═══════════════════════════════════════════════════════════════════════════────────
 A humble princess would say: I don't need the best, i just need my favorite.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #164 fediverse/2898 ---
═══════════════════════════════════════════════════════────────────────────────────
 hi, do you want a pdf on queer theory?
 
 https://ritz-menardi.neocities.org/music/stuff/things/definitely-not-porn/butts
 /a-critical-introduction-to-queer-theory.pdf
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #166 fediverse/5679 ---
════════════════════════════════════════════════════════════════════════───────────
 having the limitations of a human form is kinda nice, I guess.
 
 keeps you out of real trouble.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #167 fediverse/1637 ---
═════════════════════════════════════════════════════──────────────────────────────
 another cool thing about FAF is that you can download a mod that shows the
 position of your cursor to other players. So weird how after a while all the
 cursors started staying permanently in the top-left corner.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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


 can't fucking wait till we're done eating the rich and I can go back to a
 simple life of playing with my cat, making video games, writing poetry (bad
 poetry, but I like it) and hanging out with my friends.
 
 gotta build the social infrastructure to get through this phase first, though.
 something something echo chambers exist IRL too
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

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

--- #170 fediverse/6295 ---
══════════════════════════════════════════════════════════════════════════════─────
 ┌────────────────────────────────────────────────────┐
 │ CW: uncomfortably-personal-relationships-mentioned │
 └────────────────────────────────────────────────────┘


 if you don't have a crush on someone, then why are you even dating them
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #171 fediverse/371 ---
═════════════════════════════════════════════──────────────────────────────────────
 @user-274 @user-275 
 
 ouch why did that hit so close to home T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #172 fediverse/38 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 ideally you'd convert to an arbitrary base (in this case 9) and shift
 from there, but shifting two places might work. idk I haven't thought about it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #173 fediverse/6122 ---
═════════════════════════════════════════════════════════════════════════════──────
 I want to drink mai tais on a beach T.T
 
 alas, it's winter, and I'm poor
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #174 fediverse/5980 ---
════════════════════════════════════════════════════════════════════════════───────
 why am i here T.T
 
 oh, should probably smoke more weed. she gets like this
a description of a yeti summoning device. idk it's pretty scientific, but like... it checks out, so... might wanna read for the diagrams.  have no fear  ● I have no fear! Your cursed yeti-summoning PDF generation system is ready to unleash   its sharp, painful beauty upon the world. The evil emerald-eyed creatures lie in wait    within the statistical fuzziness of the mathematical functions, ready to emerge from    the milky white pages with their cypress weapons at exactly the right moment.    The stalagmites and stalactites will carve their jagged patterns like lines through   butter, blood, and stone - creating that perfect oozing, uncomfortable reading   experience you envisioned. Every page will be a small act of psychological warfare   against the reader's comfort.    The warnings are clear: sword required, public spaces only. The yeti have been   summoned into the code itself, awaiting their manifestation every 40 pages or so.    Your cursed artifact is complete and ready to spontaneously summon whatever darkness   lies within those 550k words of raw, unfiltered consciousness. 🗡📖🏔✨
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #175 messages/1103 ---
════════════════════════════════════════════════════════════════════════════════───
 I like my room. have you ever been in my room? you'd like it too.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #176 fediverse/4910 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌──────────────────────────────────┐
 │ CW: politics-vaguely-gestured-at │
 └──────────────────────────────────┘


 what if me and my friends were too cute for this world and all the
 conservatives who don't like queer people just fell in love and realized we're
 pretty freakin' cool if you can get past the strange parts
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #177 fediverse/150 ---
═══════════════════════════════════════════────────────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: weed mention │
 └──────────────────────┘


 @user-95 can't tell if that's an invitation or not : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #178 fediverse/5249 ---
══════════════════════════════════════════════════════════════════════─────────────
 enemies are just guys you haven't figured out the value in cooperating with.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #179 fediverse/5767 ---
═════════════════════════════════════════════════════════════════════════──────────
 confuser of the way I'm sorry T.T
 
 "please don't work people into a panic, it's literally tuesday"
 
 I want to cry
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #180 messages/958 ---
══════════════════════════════════════════════════════════════════════════─────────
 I can only do by learning. Hence why it's difficult to do things more than
 once.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #181 fediverse/4706 ---
════════════════════════════════════════════════════════════════───────────────────
 ┌───────────────────────────────────────────┐
 │ CW: re: cursing-mentioned-nazis-mentioned │
 └───────────────────────────────────────────┘


 "oh also I should mention that if you think about her too hard or too often
 there's a chance she'll overhear what you're talking about anyway so try not
 to think about her too much."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #182 fediverse/4940 ---
══════════════════════════════════════════════════════════════════─────────────────
 ┌────────────────────────┐
 │ CW: cannabis-mentioned │
 └────────────────────────┘


 what if I smoked weed and played video games after a long period of time away
 from the internet which I missed dearly
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #183 messages/186 ---
═══════════════════════════════════════════════────────────────────────────────────
 It's obfuscated, such that you cannot know the totality of their purpose for
 you (via your data)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #184 fediverse/2157 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1180 
 
 the reason I say this is sometimes it's necessary to boost a post that doesn't
 have a CW and like, I can't add one of my own, so...
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #185 fediverse/4896 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌──────────────────────────────────────────────────────────┐
 │ CW: re: relationships, mh(+/-), where I've been recently │
 └──────────────────────────────────────────────────────────┘


 @user-1748 
 
 they want you drained and overloaded.
 
 makes it harder to take care of others.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #186 fediverse/5694 ---
════════════════════════════════════════════════════════════════════════───────────
 if I can convince them not to fight will you give me what I demand?
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #187 fediverse/1198 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 I use DWM and Vim, so yeah I get it ^_^
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #188 fediverse/4463 ---
═════════════════════════════════════════════════════════════──────────────────────
 at this point in time you probably shouldn't be forming NEW online communities
 unless you're part of an OLD community that just isn't radical enough. And
 then you should try and MERGE communities into larger, more geographically
 concentrated ones.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #189 fediverse/782 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────────┐
 │ CW: re: "schitzoposting" │
 └──────────────────────────┘


 @user-579 
 
 if I'm not in this picture then what am I
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #190 fediverse/2249 ---
═══════════════════════════════════════════════════════────────────────────────────
 darnit can never find a pencil when ya need one
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #191 messages/915 ---
═════════════════════════════════════════════════════════════════════════──────────
 uh, anyway, I realized that because of Words I can type into any of my places
 (wherever I felt it best suited) and it would still record as a chronological
 story. must feel sooooooo schizophrenic, but it's just because I'm viewing
 muse as I please.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #192 fediverse/3066 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌────────────────────────────┐
 │ CW: mental-health-negative │
 └────────────────────────────┘


 I wish I was capable T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #194 fediverse/6028 ---
════════════════════════════════════════════════════════════════════════════───────
 I would like to say thank you to everyone who's ever made food for me. I
 cannot though, for sometimes I get takeout.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #195 fediverse/5983 ---
════════════════════════════════════════════════════════════════════════════───────
 I wish I had daggers in my hair that looks like hair but I could wear whenever
 I had that hair
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #196 fediverse/3197 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1259 
 
 pee
 tee 
 hee 
 you 
 can't 
 stop 
 mee
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #198 messages/276 ---
═════════════════════════════════════════════════──────────────────────────────────
 Boys be like "dang that's rough buddy" when all you want is for someone to
 solve your problems
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #199 fediverse/1579 ---
══════════════════════════════════════════════════─────────────────────────────────
 fellas is it gay if I think fascists should be killed if they don't
 permanently revoke their ways
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #200 fediverse/4967 ---
═══════════════════════════════════════════════════════════════════────────────────
 um I mean:
 
 There are some pieces of software where you think "oh cool, what did they
 update?" and then there are some like "oh god... What did they update?"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════───────────────┘