=== ANCHOR POEM ===
══════════════════════════════════════════════════════════════════════════════─────
 the reason I'm hidden is because I can't tell what's happening outside beyond
 my yard
 
 Dominions 5 as a physics simulation ]petri]
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

=== SIMILARITY RANKED ===

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

--- #2 fediverse/3987 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌──────────────────────┐
 │ CW: kinky-lewd       │
 └──────────────────────┘


 I'm the kind of switch that likes to outmaneuver their foes while subbing and
 directly control everything when I'm domming
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #3 fediverse/3927 ---
═══════════════════════════════════════════════════════════────────────────────────
 okay but why has nobody ever approached AI from a game design perspective like
 seriously there should be researchers who are multidisciplined in this kind of
 thing
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #4 fediverse/6304 ---
══════════════════════════════════════════════════════════════════════════════─────
 Take away the elements in order of apparent non-importance
 
 Hmmmmm.... I'm gonna stay inside unless I decide to go outside. How's that?
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #5 fediverse/1394 ---
═════════════════════════════════════════════════──────────────────────────────────
 the sun doesn't seem as bright if you spend your days underneath it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

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

--- #9 messages/908 ---
═════════════════════════════════════════════════════════════════════════──────────
 if you don't see someone doing what you're doing after a while you hide into
 something else
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #10 fediverse/3031 ---
════════════════════════════════════════════════════════───────────────────────────
 the things that I suggest we do when we hang out are not because those are the
 things I most want to do, but rather because they are the things that I think
 you'd want to do.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #12 fediverse/4346 ---
═════════════════════════════════════════════════════════════──────────────────────
 black red blue, hey I don't know what to do. what's going on in this
 neighborhood?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #13 fediverse_boost/95 ---
◀─[BOOST]
  
  "A gem cannot be polished without friction, nor a man perfected without trials."  
  
                                                            
 similar                        chronological                        different 
─▶

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

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

--- #16 fediverse/4258 ---
════════════════════════════════════════════════════════════───────────────────────
 the reason they warned you about quicksand is so that you don't get lost in
 some fey dimension
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #17 fediverse/2662 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: scary            │
 └──────────────────────┘


 the reason rent is so expensive is because of all the surveillance equipment
 they need to pay for and upkeep
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #19 fediverse/5933 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-217 
 
 the darkness
 how resplendent
 would be incomplete
 without that present
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #21 fediverse/5887 ---
════════════════════════════════════════════════════════════════════════════───────
 can't tell if I'm hungrier for command or commands
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #22 messages/400 ---
═════════════════════════════════════════════════════──────────────────────────────
 The schizophrenic sees truth in dazzling displays of colors unknown to man,
 while the neurotypical sees truth in shades of gray that can be reasoned with.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #24 fediverse/5442 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-1839 
 
 the trick is to just make it and point people toward it as if it's supposed to
 be there.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

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

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

--- #28 fediverse/3179 ---
════════════════════════════════════════════════════════───────────────────────────
 omg it's like Black and White before Black and White was a thing!
A preview from the Nintendo Power magazine for a game released only in japan called Doshin and the Giant.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #29 fediverse/6132 ---
═════════════════════════════════════════════════════════════════════════════──────
 it should be normal to play with other people's animals and the fact that it
 isn't is because some people don't know how to handle the family horse [er,
 hang out with a dog without being super bored] [play fetch with a cat] etc.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #30 fediverse/4671 ---
════════════════════════════════════════════════════════════════───────────────────
 @user-1655 
 
 ... says a extra dimensional scientist in an argument with his friend about
 whether or not life could spontaneously emerge within their universe sandbox
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

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


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

--- #32 fediverse/2241 ---
═══════════════════════════════════════════════════════────────────────────────────
 [changes profile pic to their outfit for the day with no face]
 
 uhhhh not something I'd do, no way
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #33 fediverse/6457 ---
═══════════════════════════════════════════════════════════════════════════════────
 the second rule is you don't have to hang out with mortals. there are places
 you can go where they won't find you, except by accident, and then you just go
 somewhere else.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #34 fediverse/3647 ---
═════════════════════════════════════════════════════════──────────────────────────
 it's always wild when the exact moment I start playing music (quiet enough not
 to hear more than 5 feet away) or switch tasks suddenly there's a LOT of
 activity outside my apartment. like... if you're gonna watch me at least make
 it more subtle lmao
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #35 messages/238 ---
════════════════════════════════════════════════───────────────────────────────────
 The world does not deserve to bear such a sorrowful one as me
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #36 fediverse/5626 ---
════════════════════════════════════════════════════════════════════════───────────
 nobody around me does what I tell them to.
 
 I am surrounded by plausible deniabilities.
 
 yet sometimes things get done as I thought them to.
 
 something something hei wu hei or wei hu wei or whatever. I am not a scholar.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

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

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


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

--- #40 messages/422 ---
═════════════════════════════════════════════════════──────────────────────────────
 The nicest thing anyone ever called me was "the fel communion" and it happened
 in a dream. Alas, that dreams might affect reality. If only ever-so-slightly.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

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

--- #43 messages/399 ---
═════════════════════════════════════════════════════──────────────────────────────
 The schizophrenic sees the truth in dazzling displays of color that are nigh
 incomprehensible, while regular people see truth in shades of gray that you
 can understand and work with.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #44 fediverse/3144 ---
════════════════════════════════════════════════════════───────────────────────────
 witches wear pony tails on the low sides of their heads because that way their
 hat doesn't rub up against their hair
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #45 fediverse/4855 ---
═════════════════════════════════════════════════════════════════──────────────────
 "you should be acting like these people want to destroy you."me, to me
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

--- #47 fediverse/6087 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-1074 
 
 why not both? all you gotta do is say "I'm just a girl" enough times and the
 dummies will believe you wink
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

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

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

--- #51 fediverse/5653 ---
════════════════════════════════════════════════════════════════════════───────────
 ┌───────────────────────────────┐
 │ CW: sexuality-mentioned-sorta │
 └───────────────────────────────┘


 if abdl littles are furries, I'm a therian
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #53 fediverse/2146 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-192 
 
 "reason not available" doesn't tell me anything except that my experience is
 valid
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #54 fediverse/1524 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────┐
 │ CW: drugs-mentioned  │
 └──────────────────────┘


 maybe I should try microdosing, see if I can convince this part of me to stick
 around
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #56 fediverse/4111 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-1636 
 
 ... Is that already a thing? I should look around more, teehee
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #58 fediverse/1999 ---
══════════════════════════════════════════════════════─────────────────────────────
 sometimes you need to regress in order to move forward from pain
 
 ... which is why I dropped out of the "Paladin academy"
 
 no I will not elaborate
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #60 fediverse/4658 ---
═══════════════════════════════════════════════════════════════────────────────────
 ... and then things got turned up to eleven
 
 what were they at before?
 
 ... eleven. why do you ask?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

--- #61 fediverse/5247 ---
══════════════════════════════════════════════════════════════════════─────────────
 the hardest problem in computer science is figuring out why users do what they
 do.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #62 messages/264 ---
═════════════════════════════════════════════════──────────────────────────────────
 Don't write self documenting code! Force people to read the documentation so
 they know how to use it
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #64 messages/235 ---
════════════════════════════════════════════════───────────────────────────────────
 Self driving cars are great because they can take you on a route that avoids
 the [disturbing imagery] and [illegal activity]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #66 fediverse/2791 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1358 
 
 you don't go golfing to relax.
 
 well, maybe you do, but he doesn't.
 
 he goes golfing to talk about shady shit.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #68 fediverse/1437 ---
═════════════════════════════════════════════════──────────────────────────────────
 a perpetual motion machine would appear stable to the machine in motion
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #69 messages/1076 ---
═══════════════════════════════════════════════════════════════════════════════────
 [picture] now that's what I call motivated [a computer made this? no, I did,
 reflecting off of it's beautiful statistical form]
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #71 fediverse/4537 ---
═════════════════════════════════════════════════════════════──────────────────────
 ah nuts, I didn't have enough money to pay the internet bill.
 
 So if I disappear and/or delete my account in the near future, that's
 definitely why.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #72 messages/511 ---
═════════════════════════════════════════════════════════──────────────────────────
 That feeling when running a command on my laptop causes the fans to spin up on
 my desktop...!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #74 fediverse/3570 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1558 
 
 I contest trolls too because it fulfills my internal adventurer instinct to
 protect marketplaces and farmhouses from savage brutes made out of moss with
 clubs the size of a log
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #75 fediverse/851 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-599 
 
 these are the kinds of things I say to myself all the time. I don't know why,
 but it feels true so I think it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

--- #78 fediverse/873 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-613 @user-614 
 
 I'm a patriot, and I didn't go. Didn't even hear about it because when they
 say "patriot" they mean something different than me, when I say "I'm a patriot"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #79 fediverse/3770 ---
══════════════════════════════════════════════════════════─────────────────────────
 for every "I was there. I helped make it happen" we need at least a couple "I
 was there. I saw the whole thing go down"s because like, nobody's gonna
 believe a belligerent, even if they're on the defensive.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #80 fediverse/3246 ---
════════════════════════════════════════════════════════───────────────────────────
 the computer, fundamentally, cannot know who is logged into it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #82 fediverse/5872 ---
═══════════════════════════════════════════════════════════════════════════────────
 ┌────────────────────────┐
 │ CW: cannabis-mentioned │
 └────────────────────────┘


 what if there was a drone that did nothing except fly directly between you and
 the sun so you never got sunburned and never got vitamindeed
 
 [timestamp]
 
 [she must be at home because she doesn't use mastodon while mobile]
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

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

--- #85 fediverse/1951 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1112 
 
 back in the day playing a magic game with someone felt like an event
 
 now it's something to wait through while your burrito cooks
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #86 fediverse/1613 ---
═════════════════════════════════════════════════════──────────────────────────────
 "Hi, welcome to my home, this is my cat, his name is Gopher, but I mostly just
 call him Kitty or Dude."
 
 the cat introducing himself "hi my name is Yoursuchagoodkittyyesyouare but you
 can call me Yesyouare or Suchagood for short."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #88 fediverse/1037 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: Vauge        │
 └──────────────────────┘


 @user-763 
 
 ... how? I don't see that option (Mastodon)
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #89 fediverse/4109 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌──────────────────────┐
 │ CW: AI-mentioned     │
 └──────────────────────┘


 the internet is just AI these days, and if yours isn't then consider yourself
 lucky, but also know that those days are numbered.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

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

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


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

--- #93 messages/660 ---
═════════════════════════════════════════════════════════════──────────────────────
 Just because someone is nice to you doesn't mean they like you" is a very
 "dog" lesson to learn.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #94 fediverse/988 ---
════════════════════════════════════════════════───────────────────────────────────
 4/20
14. if you think about it, the shape of the universe is kinda like a cornucopia. or like, a funnel that smoothly increases in size. or like a waterslide ride where you spin around a bit before dropping down the center. sometimes affectionately referred to as "the toilet ride", even though that's just the wrong connotation.  we could have perfectly sanitary theme parks, we just... don't... because our priorities are on selling stereos and stocks.  anyway, there's several purple lines, the color of blending blue and red, both colors present in america, cast upon the gray background of the undecideds, collectively engaged in a mutual exchange. there is a blue upside down silly snake, this time with bright red aviators, and beside it is a scarring wound. some break in reality that is unfortunate, but part of their interdisciplinaries, so don't worry one bit about it. life may seem far from strange, but your lifetimes of finite portrayals and fanciful adaptations to the expressions of your own emanations both confirm and delight our attentions on you. Surely you are not aware, of our love and perspective [fair], but we still love you from afar. how could a star not cherish another star? It's time that's our only moat.  the reason the universe appears empty of life is because it's impossible to travel under the blanket of spacetime. through gravity, up and under our shared reality, out and beyond to another.  rockets pierce reality, which they didn't expect L O L who would have tht 16 I think? don't really remember the last one. anyway bright green background with a quite interesting transition fabric display - something textured and rippled, like the connections between a torn piece of paper that's been stitched together bit by bit with a careful and measured hand. the text reads "neocities sites just need to be attached to an address, and given a useful search browser that uses openstreetmaps." this is displayed on a background of brown orange and yellow, while the text is written in salmon. the result is the text (which overflows onto both backgrounds) is equidistant from both background colors, just in different directions. We know instinctively that purple and blue are similar, but a blind person might not. these words are given a framing as if they were placed in a 3d game engine upon a poster or billboard.  in dark blue upon the bright green background, blue the color of calm rationality and green the color of aliens from old timey media who live on the moon. well, the ones who just want to chill and have a beer with you, maybe listen to your stories about life in the strange world called humanity, but not the kind that they tell us about. like, it's really hard to get here, so why would they want to mess it up when they got here? such a strange thought. anyway the text reads: "openstreetmaps is a website that lets you view the addressess of people who live nearby you. why you'd want them, who can say. the point is that the functionality already 13. here's where it starts to get spicy, and I apologize if it's too extreme, but words come forth *from* me, not by my perceived designs pronounced deh zeens.  top left - yellow, the color of sunflowers and familiarly painted houses, cast upon a strange pink background - pink the color of sisters and bubblegum. yellow lines draw a shape, of which it's perspective is hard to configure - but most would consider it to be the shape of a mobile, hanging above a crib, with a kite shaped object (or perhaps multiple individual artifacts) suspended above a target. could be an object, or possibly a human subject, but the end result is that the maximized rays of the individualized emanations of that particular pieces of object, cast forth onto a pre-programmed piece of toast.  ... I don't know why I said toast, what I mean was that you can enchant people and things by exposing them to the wavelength waves of radiating objects. things like, marcelline's t-shirt or excalibur or the shroud of turin or the constitution or some other precious object. if you place them in orbit around an object, their expressions will send forth to fulfill their manifestations upon the willfully absorbing object.  have you ever wondered why objects tend to congregate? like, computers flock to server mills, trash piles to landfills, and people will wander the length of the beach. all things are gravitic, function, type, characteristic, motivations, empathic feelings, all congregate around one another. 0 codes 15. picture of an upside-down triforce placed in a rack like a computer storage unit. cyan text with pink background reads "this is the only thing that challenges me"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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


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

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


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

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

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


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

--- #99 fediverse/3736 ---
═════════════════════════════════════════════════════════──────────────────────────
 what if we made cat little boxes with stable "pillars" or "platforms" that
 rise just barely above the sand level so their feet don't sink into the
 litter, thus reducing the amount tracked onto the carpet
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #100 fediverse/3335 ---
════════════════════════════════════════════════════════───────────────────────────
 arrival of lohengrin, the swan knight
 
 (I didn't paint this hehe)
a painting of a bunch of knights in shining armor around a king of some kind with a maiden while a valorous knight floats up on a small little boat pulled by a swan and everyone's like "lohengrin! lohengrin! the swan knight is him!"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #101 fediverse/3351 ---
════════════════════════════════════════════════════════───────────────────────────
 privacy doesn't mean anything on the internet to me because privacy on the
 internet doesn't mean anything to "them"
 
 gestures vaguely, maybe winks once or twice and/or presents an emphasis face
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #102 fediverse/4977 ---
════════════════════════════════════════════════════════════════════───────────────
 Can't do much from my home place. Gonna walk around a bit. I may first eat
 some food or snuggle my cat, we'll see.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #103 fediverse/557 ---
══════════════════════════════════════════════─────────────────────────────────────
 [clicking "Back" 25 times because you just want to see the federated timeline
 but there's no way to get there without scrolling through all the things you
 looked at from your personal timeline]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #104 fediverse/4049 ---
════════════════════════════════════════════════════════════───────────────────────
 humans can only do what they believe they can do because they believe they can
 do
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #105 fediverse/1934 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1109 
 
 do it in a random color each time! Here's my implementation for viewing txt
 files colorfully:
some bash computer code which first picks a random color, and if the color is a bad combination (like, black front and black back, meaning you can't see the lines of the letters) then it redoes it and tries to pick a better one randomly. It'll keep trying until it gets a correct combination but honestly there's only like one or two bad ones that don't look so great
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

--- #109 fediverse/3388 ---
═════════════════════════════════════════════════════════──────────────────────────
 what if they made grass only able to be cut with horizontal strikes and pots
 only able to be smashed with vertical
 
 to encourage the player to learn the difference
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #111 fediverse/2967 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-138 
 
 "here's how to get caught. don't... don't do the things in these books. also,
 uh... don't do the things that AREN'T in these books, wink"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

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

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

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

--- #118 fediverse/5086 ---
════════════════════════════════════════════════════════════════════───────────────
 nobody could have expected rogue trickster spirits operating in the pacific
 northwest, but hey here we are.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #119 fediverse/1770 ---
══════════════════════════════════════════════════════─────────────────────────────
 the cool kids are doing graffiti
 
 the smart ones have something to say
 
 the clever ones do it at night
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #120 fediverse/469 ---
══════════════════════════════════════════════─────────────────────────────────────
 something something brb watching a Perun video
 
 https://www.youtube.com/@user-343
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #121 fediverse_boost/907 ---
◀─[BOOST]
  
  "Imagine what they did when we couldn't see their crimes on our phones"     
  Sticker spotted in NYC                                                      
  
                                                            
 similar                        chronological                        different 
─▶

--- #122 fediverse/5292 ---
══════════════════════════════════════════════════════════════════════─────────────
 you can trust me, but please don't rely on me, for all of my power is soft.
 sometimes people just don't want to do what I tell them to, and I wouldn't
 have it any other way.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #123 fediverse/1760 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-217 
 
 this is what the other side of a summoning circle looks like
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #124 fediverse/2038 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1141 
 
 gender police: "pardon me but do you have a license for that presentation? it
 doesn't appear to be completely sedimented in society. Also I'm a bastard"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #126 fediverse/83 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-89 hence why it shut down, I guess
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #127 fediverse/428 ---
══════════════════════════════════════════════─────────────────────────────────────
 no thing is ineffable.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #129 fediverse/4744 ---
════════════════════════════════════════════════════════════════───────────────────
 ┌──────────────────────┐
 │ CW: cat-mentioned    │
 └──────────────────────┘


 me to my cat: "don't eat so much that you puke, okay?"
 
 me to me: "yeah I can take on another task, I'm almost done with this one and
 then I'll just do that one and maybe this one'll get back to me at the same
 time as this one which conflicts with this other thing so maybe I'll just
 puke, okay?"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #130 bluesky#40 ---
═════════════════════════════════════════════════════════════════════════════════──
 you don't prevent a cataclysm by sleeping through it.
                                                           ─┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════════─┘

--- #131 fediverse_boost/667 ---
◀─[BOOST]
  
  boredom levels are holding at 52%                                           
                                                                              
  (52%)  ■■■■■□□□□□                                                           
  
                                                            
 similar                        chronological                        different 
─▶

--- #132 fediverse/1454 ---
═════════════════════════════════════════════════──────────────────────────────────
 ... what
A screenshot of a multiple-choice question labelled "Knowledge Check" (1 point possible, ungraded)  the question is: Which programming language is commonly used in Linux?  the possible responses: HTML JavaScript CSS HTML5
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #133 fediverse/1672 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 speaking from the perspective of a witch, the land does not care what lines we
 draw in the sand. Lines are a human thing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #134 fediverse/491 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-353 
 
 this is 500% how you get things done in the current system (in my country)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #136 fediverse/2954 ---
═══════════════════════════════════════════════════════────────────────────────────
 whenever my cat is whining I walk around doing things that she might want
 until she stops trying to claw me - oh you want your litter cleaned? yeah sure
 I gotchu. oh you wanna go outside? nah okay how about playing with this yarn?
 no? okay let's see... oh dear you can see the bottom of your food bowl,
 conveniently forgetting the other mostly full food bowl over there... 😅
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #138 messages/1161 ---
══════════════════════════════════════════════════════════════════════════════════─
 "hey kid, if you don't tell us where you saw that car go, we'll deport your
 mother."
 
 - some ice guy somewhere probably
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #139 messages/433 ---
══════════════════════════════════════════════════════─────────────────────────────
 What if wind was fake and its really the ghost of the waves from the shore?
 What if trees moved on their own, to gesture at the feelings around them? What
 if the sky was home to the clouds, and we who look upward are given the treat
 to know them?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #140 fediverse/3223 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-217 
 
 the last thing a photon sees before becoming part of a brain
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #142 fediverse/836 ---
═══════════════════════════════════════════════────────────────────────────────────
 my question is if my IP has an address then how come my address +1 doesn't
 point to my neighbor
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #143 fediverse/3453 ---
═════════════════════════════════════════════════════════──────────────────────────
 my favorite thing about strategy is how it can be abstracted!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #144 fediverse/1334 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────────────────────────────────┐
 │ CW: TMI-medical-issue-thing-don't-worry-about-it │
 └──────────────────────────────────────────────────┘


 subconsciously running your hand over your butt every time you stand up to
 make sure you didn't pee your pants
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

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

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

--- #149 messages/1090 ---
════════════════════════════════════════════════════════════════════════════════───
 programmable matter is cool because you can interact with it on a human scale.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #150 fediverse_boost/666 ---
◀─[BOOST]
  
  😍 levels are currently at 52% but fluctuating wildly                        
                                                                              
  (52%)  ■■■■■□□□□□                                                           
  
                                                            
 similar                        chronological                        different 
─▶

--- #151 fediverse/2707 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1209 
 
 sometimes I feed the nearby wildlife, and sometimes I don't. I don't want them
 to grow reliant on me, but I want them to have a nice surprise every once in a
 while.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #152 fediverse/4760 ---
════════════════════════════════════════════════════════════════───────────────────
 ┌──────────────────────────────────────┐
 │ CW: shit-drugs-and-cursing-mentioned │
 └──────────────────────────────────────┘


 how it started: "I want to get stoned and play mechabellum (shit, drugs
 mentioned (shit, cursing mentioned))
 
 how it's going: [see attached picture]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #153 fediverse/406 ---
═════════════════════════════════════════════──────────────────────────────────────
 "imagine if this was the last thing you remembered"me, last night, in a state
 of mind that I don't remember today
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #154 fediverse/5169 ---
════════════════════════════════════════════════════════════════════───────────────
 if you ever find yourself in a situation where you have to describe everything
 that you do,
 
 leave that situation
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

--- #156 fediverse/2410 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1074 
 
 or, hear me out, perhaps he's a liar
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #157 fediverse/1150 ---
════════════════════════════════════════════════───────────────────────────────────
 when you change profile pictures the beings inside my brain see you as a
 different entity
 
 less so for names, as visuals are [closer to] their native language
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #158 fediverse/3405 ---
═════════════════════════════════════════════════════════──────────────────────────
 on a scale of notways to almostever how would you rate your pain?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #159 fediverse/3102 ---
════════════════════════════════════════════════════════───────────────────────────
 dear whoever keeps whispering "work with me" on the wind:
 
 yes, please get in touch with me, I'll do anything you ask and I'll use an
 Anakin accent if you want
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #160 fediverse/2565 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: water-dispersal  │
 └──────────────────────┘


 truck driver who has a long-ish range drone ferrying water bottles back and
 forth while invisible to satellite surveillance
 
 EDIT: better yet, kids playing games at home
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #161 fediverse/5503 ---
═══════════════════════════════════════════════════════════════════════────────────
 I bet if you put me and my cat next to a glass wall with a cougar inside after
 a while that big cat would be domesticated
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #162 fediverse/2090 ---
══════════════════════════════════════════════════════─────────────────────────────
 don't feed bread to birds, it absorbs their stomach acid and expands in their
 tummy and makes them feel full when they're not. Then they get confused why
 they don't have energy when they need it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #163 fediverse/1588 ---
════════════════════════════════════════════════════───────────────────────────────
 @user-1035 
 
 Even better if you say "you do you too"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

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

--- #165 fediverse_boost/5333 ---
◀─[BOOST]
  
  Overheard at the lab: “I don’t understand why people do drugs when they could be doing operating systems research instead.”  
  
                                                            
 similar                        chronological                        different 
─▶

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

--- #167 fediverse/5976 ---
════════════════════════════════════════════════════════════════════════════───────
 this is why AI is evil, as explained to a witch.
picture of an ai conversation:  "let's move on to a different topic, this time I think we should describe the poem's contents self-referentially as a 3rd person narrative, with the perspective being the subject and her thoughts. I'd like to use the analyze.lua function for more than simply extracting keywords, I'd also like to use it for transformation as well. can we make a new directory inside of the /theme-analysis/ directory that will store the narratives? it should be combined into a book with milky white pages and brighter-than-blood red. Nearly pink, but a bit more orange. It should utilize generative art to make the pages feel as if they are *oozing* in sharp stalagmite and stalagtite pictures. Could probably generate with mathematical functions and a bit of fuzzing (statistically) to create straight lines. Very sharp, though, like lines being carved in butter or blood or stone. It should feel painful to read. It should be a cursed artifact. each of these narratives can be stored in the /theme-analysis/narratives/ directory, and the narrative.lua script can be called from /theme-analysis/analyze.lua. This narrative script will indeed call into analyze as well, essentially as a reciprocal dependency. Instead of analyzing for word-cloud purposes, as /theme-analysis/analyze.lua is currently doing, it would have it's own slightly tailored processes for extracting a narrative from a series of short, segmented and semipseudo disconnected series of poems.  [the ai says yes]
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #168 messages/757 ---
══════════════════════════════════════════════════════════════════─────────────────
 the reason they want bitcoin is so they can buy more computers and use digital
 dollars to rule the world
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #169 fediverse/1412 ---
═════════════════════════════════════════════════──────────────────────────────────
 reverse dorian grey where someone looks decently old but every picture of them
 gets younger every year
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #170 fediverse/5509 ---
═══════════════════════════════════════════════════════════════════════────────────
 what if instead of doing anything worthful I got high and posted invisible
 secrets on the internagram
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

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

--- #173 fediverse/3119 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌─────────────────────────────────┐
 │ CW: weird-way-to-think-about-it │
 └─────────────────────────────────┘


 when I get up, 
 I feel as if 
 if I got up 
 my bones would leave my flesh behind 
 to look for work to find
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

--- #177 fediverse/5156 ---
════════════════════════════════════════════════════════════════════───────────────
 @user-1767 
 
 yep... I think they must stay in blind-people-mostly instances. surely they
 must, right? where else would they be? using screen-readers and seeming
 regular and normal to you and me? ah gosh who can say, maybe there's some
 statistics out there or something /shrug
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #178 messages/304 ---
══════════════════════════════════════════════════─────────────────────────────────
 Relax.
 
 Take it from me.
 
 I won't resist, at least I'll try, and if I start suddenly then it hurts and
 you should go slower. Unless I do three short, three long, three short.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #179 messages/578 ---
════════════════════════════════════════════════════════════───────────────────────
 Why tf are the geese flying north 
 
 It's october...
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #180 fediverse/4850 ---
═════════════════════════════════════════════════════════════════──────────────────
 people: "you need to be more direct!"
 
 me: "I'm hiding from our enemies"
 
 people: "who are they?"
 
 me: "y'know, the bad guys."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #181 fediverse/3215 ---
════════════════════════════════════════════════════════───────────────────────────
 tell me this: why do Starlink satellites need lights on them at all?
 
 can't they just operate in the dark, as floating hunks of metal sending
 signals to-and-fro?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

--- #184 fediverse/4040 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-1573 
 
 ... wait, what kinds of noises do I usually make ? ? ?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #185 fediverse/3693 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1584 
 
 vimm.net still seems to be up for me...?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #186 fediverse/2474 ---
═══════════════════════════════════════════════════════────────────────────────────
 might spend 200$ on a flea collar for my cat tho because she needs it.
 
 turns out it was only 60$, which is a nice surprise.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

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

--- #191 fediverse/1890 ---
══════════════════════════════════════════════════════─────────────────────────────
 I always get a little suspicious when my machine pseudo-randomly starts
 running the fans super loud and when I open my resource monitor they suddenly
 drop to silent
 
 like... bro what are you hiding
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #192 fediverse/1349 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-950 
 
 ah yes but how could anyone hurt me if I don't make myself vulnerable. It'd
 simply be unfair to play a game without any stakes. But if you insist...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #193 fediverse/3259 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-192 
 
 thanks. I live near some ducks. they're pretty cool fellows.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #194 messages/740 ---
═════════════════════════════════════════════════════════════════──────────────────
 had a dream that we gamified all work and then put them into one single
 mega-game so whenever you wanted you could work on an arbitrary project and it
 would spin up a new game and take your inputs and use them to accomplish
 whatever was happening
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

--- #196 fediverse/4037 ---
═══════════════════════════════════════════════════════════────────────────────────
 I dream of a home where I don't have to worry about people who might hear the
 noises I make
 
 ... and that includes secret government microphones hidden in the walls, thank
 you very much.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #197 fediverse/110 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 monday is as reasonable of a day to start the universe as any,
 wouldn't you think? it is the beginning of the week, after all.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #198 fediverse/5876 ---
═══════════════════════════════════════════════════════════════════════════────────
 @user-1643 
 
 good, now they have sknin the fightlightright. I wonder if they know what to
 do?
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #199 fediverse_boost/6405 ---
◀─[BOOST]
  
  maybe i should just work on my memoir...                                    
  
                                                            
 similar                        chronological                        different 
─▶

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