=== ANCHOR POEM ===
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 so what you're saying is I need to come up with an easier way to
 change bases? Or at least a way to digit shift in a different base than what
 you currently have. Sounds complicated.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

=== SIMILARITY RANKED ===

--- #1 fediverse/44 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 So, you're saying the tally system doesn't make sense, and instead
 what I suggested for base zero is instead base 1?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

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

--- #3 fediverse/5544 ---
════════════════════════════════════════════════════════════════════════───────────
 when people need you but don't believe in you, it's easy to find it difficult
 to get out of bed.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #4 fediverse/1109 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌─────────────────────────────────────────────────┐
 │ CW: re: death mentioned, nazi germany reference │
 └─────────────────────────────────────────────────┘


 @user-815 
 
 Agreed, and if you leave then you are needed elsewhere. Listen to your heart.
 That's what I did.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #6 fediverse_boost/5196 ---
◀─[BOOST]
  
  Everyone needs to learn the difference between going through something with someone, and someone putting you through something.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #7 fediverse/1986 ---
══════════════════════════════════════════════════════─────────────────────────────
 when cornered, is it your instinct to escape? or to take one of them down with
 you?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #8 fediverse/2480 ---
═══════════════════════════════════════════════════════────────────────────────────
 so what if people want to sit on the couch eating cheetos? they're more than
 capable of something far greater, but of course they are allowed to spend as
 they like their life.
 
 their ONLY life.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #9 fediverse_boost/5566 ---
◀─[BOOST]
  
  We have to figure out how to take care of each other and fight alongside one another which means we have to actually, like, listen to each other.  
  
                                                            
 similar                        chronological                        different 
─▶

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

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

--- #12 fediverse/946 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-661 
 
 so, you should strive to be compassionate and honest, in order to keep fear
 from ruling your life?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #13 fediverse/5167 ---
════════════════════════════════════════════════════════════════════───────────────
 @user-1074 
 
 so, you're saying we should select for good people, rather than loyal people?
 
 If so, I tend to agree.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #14 messages/727 ---
════════════════════════════════════════════════════════════════───────────────────
 Can you imagine 
 
 Going to your tribal shaman 
 
 Saying "hey you gotta pay rent"
 
 ... Shamans are fine on the street. I should learn. >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #15 fediverse/5195 ---
═════════════════════════════════════════════════════════════════════──────────────
 whenever you test one extreme, you must also test it's opposite, just for the
 extra information.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #16 messages/373 ---
═════════════════════════════════════════════════════──────────────────────────────
 that moment when you swear you see your messages changing under your
 fingertips, long after you've written them
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #17 fediverse/2363 ---
═══════════════════════════════════════════════════════────────────────────────────
 Don't know what to do? Do anything at all, and odds are you'll either see an
 opportunity to do something better or you'll have an idea.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #19 fediverse/3118 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: politics         │
 └──────────────────────┘


 they want your stuff breaking after 5 years so that you always need them.
 
 if you have everything you need, there's nothing stopping us from revolt
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #21 fediverse/2516 ---
═══════════════════════════════════════════════════════────────────────────────────
 According to a sign that I passed just four days ago, I have one day left.
 Whatever that means.
 
 so next week better be good.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #22 fediverse/2713 ---
═══════════════════════════════════════════════════════────────────────────────────
 if you aren't organized enough to protect your commanders, then you don't
 deserve leaders.
 
 build the structure first. build it on honesty and trust and dedication toward
 a goal. then build the necessary adaptations as you encounter problems, trying
 vaguely to head in a particular direction, and eventually you'll become
 self-sustaining.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #23 notes/dear-me ---
═════════════════════════════════════════════════════════════════════════════──────
 dear me: 
 
           DO SOMETHING USEFUL FOR ONCE
 
 that's all, fuck off and be helpful
 
 ... wow, rude.
 
 yeah I mean, I do helpful things. useful things, somethings.
 
 helpful.
 useful.
 
 many such cases, she says, with ultimate certainty, as if narrative could be
 prologued. but pronounced prolonged.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

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

--- #25 fediverse/498 ---
══════════════════════════════════════════════─────────────────────────────────────
 Wikipedia would make a lot more sense to me if they included pictures next to
 the names of every proper noun so that my pictorally oriented primate brain
 might pattern match meaning onto the visual understandings gleaned from the
 perceptual conceiving which were arrayed within and alongside the textual
 information presented to me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #26 fediverse/4758 ---
════════════════════════════════════════════════════════════════───────────────────
 I'm gonna go psycherwaul into my journals for a bit, if I come back today
 it'll be extra waul-y so, idk, beware I guess
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #27 fediverse/4480 ---
═════════════════════════════════════════════════════════════──────────────────────
 what, you're telling me you don't constantly have the voices of the past
 whispering words into your ear like "FACE THEM" or whatever? Huh must suck to
 be you
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #29 messages/685 ---
══════════════════════════════════════════════════════════════─────────────────────
 If someone calls you in the middle of the night asking to be let in because
 they need a place to sleep, don't let them in! Unless you know them obvi but
 someone you don't know trying to manipulate you like "please I need some
 shelter" like, babe no, we need to know each other first, it's dark, I'm in my
 pajamas, c'mon.
 
 If it's below freezing then okay, maybe, but... They got themselves into that
 situation
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #30 fediverse/5246 ---
══════════════════════════════════════════════════════════════════════─────────────
 lol I spent half an hour holding a trowel and then I designed a new type of
 digging instrument
 
 and they want me to work a job /eyeroll
 /stickey-outey-tonguey-face/pics/all/total/* -ffvagrnbeexey --no-menus 14
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

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


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

--- #32 fediverse_boost/2965 ---
◀─[BOOST]
  
  i will use CW for #USpol if computer people start using CW for tech computer boring linux software posting. i said what i said  
  
                                                            
 similar                        chronological                        different 
─▶

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

--- #34 fediverse/1266 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: weed - ama   │
 └──────────────────────┘


 @user-907 
 
 how does the music sound? want me to help you setup a visualizer?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #35 fediverse/1310 ---
═════════════════════════════════════════════════──────────────────────────────────
 that feeling when you type your password so fast that one hand is faster than
 the other and the letters get all jumbled and now you have to remake your ssh
 key -.-
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #36 messages/930 ---
═════════════════════════════════════════════════════════════════════════──────────
 <bang slam kerblam> there goes another line into ram. wonder what it's
 used for.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

--- #38 fediverse/1325 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌─────────────────────────┐
 │ CW: kicks-down-the-door │
 └─────────────────────────┘


 PROCRASTINATING, AGAIN ARE YE? AWAY WITH YE WENCH
 
 no! please! I haven't finished shitposting!
 
 GO DO YOUR STUDIES YOU LOAF OF BUTTER AND PEAS
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #40 fediverse/2072 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌───────────────────────┐
 │ CW: re: Uspol, Debate │
 └───────────────────────┘


 @user-367 
 
 I figured, based on what you said : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

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

--- #45 fediverse/1143 ---
════════════════════════════════════════════════───────────────────────────────────
 ah, but my dear... your "wisdom" has side effects.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #46 messages/181 ---
═══════════════════════════════════════════════────────────────────────────────────
 I know you don't want to hear this, but there is a chance that there will come
 a time where your life depends on your ability to debug a computer without the
 internet. To set up an SSH server. To install Linux. To program in C. To do
 something else that I'm not prepared for... If StackOverflow didn't exist
 because network connectivity has been lost, could you remember syntax? Maybe
 it's a good idea to set up a local LLM that can answer basic questions about
 technology. Maybe it's a good idea to set up on your parents computer, just in
 case you have to hide out there for a couple months. Maybe it's a good idea to
 download wikipedia, just in case.
 
 If I need to use a mac, I'm screwed
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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


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

--- #48 fediverse/1089 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌────────────────────────┐
 │ CW: spirituality-scary │
 └────────────────────────┘


 to those who guide our fate
 
 choose paradise
 
 make eden
 
 ======================= stack overflow =====================
 
 clouds of carbon are an affront to the sun god
 
 just as they are an affront to mine lungs
 
 or mine body temperature
 
 [acid oceans are toxic to the plane of water]
 
 [you think that would go unnoticed?]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #49 fediverse/36 ---
══════════════════════════════════════─────────────────────────────────────────────
 consider:
 
 x = 13 / 3, what is x?
 
 step 1: translate 13 into base 3
 step 2: digit shift once to the right
 step 3: store underflow as remainder
 step 3: translate back to base 10
 
 x is 4 remainder 1
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

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

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

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

--- #53 fediverse/2487 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────────┐
 │ CW: situational-awareness │
 └───────────────────────────┘


 do you know where the closest hospital is? grocery store? gas station? ATM?
 
 can you find one in an unfamiliar area based on the patterns that cities are
 typically laid out as?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #55 fediverse/4715 ---
════════════════════════════════════════════════════════════════───────────────────
 @user-1728 
 
 "oh, the bad guys are coming to hurt you?? just fuckin' run away"
 
 yeah. real helpful. how about you fuck off to canada or whatever and give away
 all your possessions. Maybe they'll train you and teach you how to help in
 some way and you can come back later when the time is right.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #56 messages/255 ---
═════════════════════════════════════════════════──────────────────────────────────
 Has that tree always been there? How is it so tall with such a thin trunk?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #58 messages/747 ---
═════════════════════════════════════════════════════════════════──────────────────
 if you don't want to be hunted, then give "evil" it's own queer culture
 
 what's that? they don't like what you offered? they want it to be *their* kind
 of "evil"?
 
 fine, do it themselves and then leave us alone, jeez -.-
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

--- #60 fediverse/1487 ---
═════════════════════════════════════════════════──────────────────────────────────
 social media clients that don't return you to the same spot you were at when
 you hit the back button -.-
 
 but then also make it needlessly complicated to open links in a new tab, like
 obfuscating the location you need to cast "middle click" on
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #61 fediverse/5016 ---
════════════════════════════════════════════════════════════════════───────────────
 @user-1201 
 
 perpetual summer vacation? with a side of "from each to their yaddah yaddah"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

--- #63 fediverse/2292 ---
═══════════════════════════════════════════════════════────────────────────────────
 I don't know who needs to hear this after staying up all night driving, but
 it's ideal to get where you're going with at least a day to rest. The body can
 only do so much, and isn't it better to be fresh?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #64 fediverse/4036 ---
═══════════════════════════════════════════════════════════────────────────────────
 everyone's paying attention to you Ritz, why are you self destructing?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

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

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

--- #68 messages/416 ---
═════════════════════════════════════════════════════──────────────────────────────
 Do you ever wonder why you can't remember anything after being stoned? Why the
 words you write down, oh so profound in the moment, turn to silliness and
 illusion upon coming off your high mont-vantage? Of course, dear reader,
 because all things are defined in waves.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

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

--- #71 fediverse/1810 ---
══════════════════════════════════════════════════════─────────────────────────────
 some people hear words like "datastructures" and "object-oriented programming"
 and think they're made up terms that don't mean anything important.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

--- #75 fediverse/3514 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-579 
 
 maybe if you pitch it to them with a presentation and offer to set up the
 infrastructure they would give you extra credit or an award or maybe just
 brownie points
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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


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

--- #77 fediverse/4770 ---
═════════════════════════════════════════════════════════════════──────────────────
 @user-1201 
 
 and yet you have to answer or suspicious you do appear.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #78 fediverse/4012 ---
═══════════════════════════════════════════════════════════────────────────────────
 you can't just tell people you're enlightened. You gotta trick them, and
 convince them you're sane first.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #79 fediverse/3633 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-999 
 
 what's a fool to do these days but babble? maybe they'd be better as an
 acolyte in the temple but hey, ya'll are the ones that are building it so
 don't blame the fool for residing there.
 
 non-foolish people for leaders only, please
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #80 fediverse/5047 ---
════════════════════════════════════════════════════════════════════───────────────
 food should be free.
 
 it grows on trees.
 
 who pays the trees?
 
 something-something-transportation-and-processing-and-packaging-infrastructure-
 mentioned
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #81 fediverse/297 ---
═════════════════════════════════════════════──────────────────────────────────────
 @user-214 so you know where to find what you need to know
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #82 fediverse/3474 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-883 
 
 true, but much the same way people will rebel against inconvenience by writing
 passwords on sticky notes, so too might they put SSH keys onto the nearest
 flash drive without validating that it hasn't been compromised. There's
 tradeoffs everywhere I guess.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #83 fediverse/141 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-135 if you're cringing at past behavior, then you've learned and grown
 enough to see the mistakes of the past in sharp contrast to your temperament
 in the present.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

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

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

--- #87 fediverse/3407 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 there's only a password so that if the zip archive is displaced from it's
 context it's harder to read.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #88 fediverse/1713 ---
═════════════════════════════════════════════════════──────────────────────────────
 ┌───────────────────────────┐
 │ CW: re: divination, tarot │
 └───────────────────────────┘


 @user-1071 
 
 like a king who dictates on high, the taller the chair the farther the fall.
 
 how simple is it, when everyone trusts you, to betray the wishes for direction
 they grant upon you. By leveraging their direction to forward your own ends,
 you are depriving them of the liberty to choose their own ends.
 
 how cruel is it! to be the reason for distrust! alas, who can you go to for
 guidance if not anybody you trust?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #90 fediverse/3574 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1564 
 
 I love the concept of this! Maybe if HTTP is too complex, you could try
 another simpler server? I don't know the complexity of the programs I use
 every day, but I'm sure there's one that's very simple. Even just a simple IRC
 style chat server that just... sends text from person A to person B depending
 on their username (like a glorified Router or Switch)
 
 Reminded of this video tbh...:
 
 https://www.youtube.com/watch?v=gGfTjKwLQxY
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #91 fediverse/2441 ---
═══════════════════════════════════════════════════════────────────────────────────
 if someone on the street asked you, could you point to the nearest power
 station? wastewater treatment plant? hell even a gas-station
 
 if you live in a city, probably not. They put them in fake buildings with
 hollowed out exteriors in order to keep the city looking nice.
 
 these crucial pieces of infrastructure are important to defend. but if you
 don't know which street to turn down, then you might miss them.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #92 fediverse/4878 ---
═════════════════════════════════════════════════════════════════──────────────────
 OH NO costco changed their smoothies THAT WAS A COMFORT FOOD wahhhhhhh autism
 strikes back part twoooooo
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #93 fediverse/2912 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: re: politics     │
 └──────────────────────┘


 @user-1074 
 
 yeah he's... literally the commander in chief of all the feds. that's his job,
 among other things.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

--- #96 fediverse/4941 ---
══════════════════════════════════════════════════════════════════─────────────────
 everyone: "what are you doing"
 
 me: ba ba ba ba ba ba ba. wawawawa
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

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

--- #98 fediverse/1718 ---
═════════════════════════════════════════════════════──────────────────────────────
 dear old people - did you know computers don't need to have buttons? You can
 literally just type what you want to make happen (if you know the magic spell)
 and it'll just, do that thing
 
 how cool is that
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #99 fediverse/1313 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌────────────────────────┐
 │ CW: politics-economics │
 └────────────────────────┘


 if we had a universal basic income then we could pay each other to solve our
 problems and they just can't have that.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #100 fediverse/308 ---
═════════════════════════════════════════════──────────────────────────────────────
 when tech people are hurt by technology they say "how can I fix this? what do
 I need to install? what configuration should I use? is this company ethical,
 or are they going to hurt me in the future? could I make something that fixes
 this myself?"
 
 when non-tech people are hurt by technology they say "okay" because they don't
 have the bandwidth to figure it out.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #101 messages/701 ---
═══════════════════════════════════════════════════════════════────────────────────
 one sec  gotta send something else from my phone... now, what was it, hmmmmm
 lemme think
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

--- #102 fediverse/4568 ---
══════════════════════════════════════════════════════════════─────────────────────
 @user-192 
 
 ... and like. idk what do you do at that point
 
 say "fuck it" and live with imperfection? embrace anti-natural selection?
 valorize deviance and queerness in digitally appropriated artistic media
 collections?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #103 fediverse/2111 ---
══════════════════════════════════════════════════════─────────────────────────────
 when someone deletes what they were typing and starts over, that means they
 have something more to share and you should try and figure out what it is with
 questions.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

--- #107 fediverse/5839 ---
═══════════════════════════════════════════════════════════════════════════────────
 @user-1074 
 
 good code isn't always easily read. sometimes the architecture is more
 important.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

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

--- #110 fediverse/1746 ---
═════════════════════════════════════════════════════──────────────────────────────
 politics is easy, just show the opposite of what your constituents want to
 watch and put it next to your enemy's team-name.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #111 fediverse/6146 ---
═════════════════════════════════════════════════════════════════════════════──────
 so-and-so casts time-stop but during that time nothing can be learned as your
 brains can't change shape
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

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

--- #113 fediverse/2607 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────────────────────────────────┐
 │ CW: re: politics-fascism-sexual-assault-mentioned │
 └───────────────────────────────────────────────────┘


 @user-249 
 
 most people don't talk to me so either you're braver than most or I hit a
 common chord that you and I share
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #114 fediverse/5116 ---
════════════════════════════════════════════════════════════════════───────────────
 tape the first and last page of a zine to a telephone pole and write
 underneath it "tear out a page if you need it to explain an argument"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #115 fediverse/3113 ---
════════════════════════════════════════════════════════───────────────────────────
 working with java feels like reading 4 words per page in an anatomy textbook
 and somehow building a choose-your-own-adventure novel.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

--- #118 fediverse/5384 ---
═══════════════════════════════════════════════════════════════════════────────────
 before you go to a location, always ask yourself what you can bring to that
 location.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

--- #120 fediverse/5538 ---
════════════════════════════════════════════════════════════════════════───────────
 @user-1074 
 
 what do you do with the people who don't want to do that in particular and
 want to try a different sort of socialism?
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

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

--- #123 messages/488 ---
════════════════════════════════════════════════════════───────────────────────────
 Look at the unique patterns in a programming language, and you will find
 within them a usecase.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #124 fediverse/6077 ---
════════════════════════════════════════════════════════════════════════════───────
 ┌──────────────────────────┐
 │ CW: militaries-mentioned │
 └──────────────────────────┘


 the witch inside me hears they're sending 200 troops to my city and she's like
 "two HUNDRED SOLDIERS?" and freaks tf out because fighting two hundred men
 meant a lot more back in her day.
 
 it's still pretty hardcore but it's not the death stroke she thinks it is.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #125 fediverse/3073 ---
════════════════════════════════════════════════════════───────────────────────────
 "A witch is neither late, nor is she early. She intentionally arrives when you
 don't need her, so that you can learn what to do when you do need her instead
 of needing her."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #127 fediverse/3650 ---
═════════════════════════════════════════════════════════──────────────────────────
 anything with layers is an open-faced sandwich
 
 or a pizza in disguise
 
 rawr ex dee
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #128 messages/49 ---
═════──────────────────────────────────────────────────────────────────────────────
 [Audio: ramblings-of-a-whackadoodle.wav]
─────┐                                                           ┌───────────┐
 similarchronologicaldifferent════─────┴┴───────────────────────────────────────────────────────────────────────────┘

--- #129 fediverse/2837 ---
═══════════════════════════════════════════════════════────────────────────────────
 most people haven't heard of the "thanks for catching that, let's write it
 down" move and I really think it's underutilized
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #131 fediverse/3200 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1481 
 
 we endear
 
 @user-1074 
 
 yeah well maybe they should fear us.
 
 queers bash back and all that
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #132 fediverse/5201 ---
═════════════════════════════════════════════════════════════════════──────────────
 @user-192 
 
 is okay, girl
 
 time will be richer sooner
 
 don't poop your pants just yet
 
 remember, good is just a shade of gray away from silver which you can use to
 line your pockets with tinfoil hats
 
 beep boop computer touchers anonymous called they said they want their secret
 handshake back
 
 if you wanna diss your associates go ahead but I sure as heck love my rad-ical
 com-patriots just as much as I love my ice-cream salad friend witches
 
 ... whoops there I go being insane again, hope you feel better friend 
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

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

--- #134 fediverse/3721 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────┐
 │ CW: PSA-not-serious  │
 └──────────────────────┘


 1 2 3 - 1... 2... 3... - 1 2 3 means SOS, so if you hear it that means
 someone's in trouble.
 
 don't go about willy nilly saying it though.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #135 fediverse/5433 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌────────────────────────┐
 │ CW: violence-mentioned │
 └────────────────────────┘


 war is hell and should be avoided at all costs
 
 "does that mean we should do shadow conflicts and do spy-vs-spy shit all day
 every day?"
 
 no, that's a type of warfare too. and is also hell. no thank you.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #136 fediverse/3999 ---
═══════════════════════════════════════════════════════════────────────────────────
 ... most of what she says is nonsense, but that 20% that's right is like... SO
 right, y'know?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #137 fediverse/793 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-245
 
 the abstraction of modern high level languages makes my head spin
 :babaw_spin:​🌀​🥴​🌀​
 
 I feel like there's so many ways to trip yourself up! Consider me bewildered xD
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #138 fediverse/5380 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 dear right-wing converts to the cult of sanity:
 
 you don't have to be trans just to show [your devotion/you're sorry], we'll
 accept anyone who is cool and "gets it"
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #139 fediverse/1789 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-883 
 
 Ah, well, since you've worked with raspberry pi's before I am going to trust
 you on that. Perhaps a different system-on-a-chip could be used which has
 better network controllers.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #140 fediverse/206 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-174 so what you're saying is if we make it harder for companies to exist
 then the minimum threshold of quality will rise?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #141 fediverse/3874 ---
═══════════════════════════════════════════════════════════────────────────────────
 @user-1608 
 
 shhhhh you're not supposed to tell me what you voted for! Now I know you voted
 to have funky wunky widdle dweams 🥰
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #142 fediverse/4621 ---
═══════════════════════════════════════════════════════════════────────────────────
 @user-1716 
 
 there's already a web browser named surf 🙃 it's much more minimal than this
 one tho
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

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

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

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

--- #146 fediverse/3195 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: food-mentioned   │
 └──────────────────────┘


 I don't know who needs to hear this, but you don't need to like all kinds of
 jam equally.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #147 fediverse/5063 ---
════════════════════════════════════════════════════════════════════───────────────
 ┌──────────────────────┐
 │ CW: should-mentioned │
 └──────────────────────┘


 it should be free to get a hotel room
 
 all industries should have a littleleague, or else it'll be impossible to
 learn.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #148 fediverse/84 ---
═══════════════════════════════════════════────────────────────────────────────────
 Life is just a series of minigames for your primate brain to solve that are
 generated by an impossibly complex algorithm with a dash of ethical
 value-based choices thrown in.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #149 messages/891 ---
═════════════════════════════════════════════════════════════════════──────────────
 AI is worth less if it can't learn what a human can with the same amount of
 facts as a human.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #150 fediverse/2143 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1171 
 
 "gee I never hear from you how would I know that if people like you didn't say
 something valuable and important like this"an appreciative someone
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #151 fediverse/5141 ---
════════════════════════════════════════════════════════════════════───────────────
 all you have to do is include the current state of the LLMs registers in the
 output so that it can use them as a base next time it starts up.
 
 boom, infinite context width.
 
 like playing a video from the beginning as it's recording
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #152 messages/98 ---
═════════════════════════════════════════════──────────────────────────────────────
 Your job should be a descriptor of what you're currently doing with your life.
 They shouldn't be gatekept - if you want to be a detective right now, we
 should help you. If you constantly switch jobs or only pursue them for your
 own benefit (hard to describe, ask for clarification if needed) then you
 should be paid less.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

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

--- #154 messages/204 ---
════════════════════════════════════════════════───────────────────────────────────
 Don't be afraid. You will overcome every challenge that becomes you, it's just
 a question of how. That's up to your expression, so do as you will.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #155 fediverse/4900 ---
═════════════════════════════════════════════════════════════════──────────────────
 if you wanna trick systems administrators just put a bunch of sleeps in your
 code so your computer programs don't use up all the mainframe's resources all
 at once
 
 [statements dreamed up by the practically deranged]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #156 fediverse/1389 ---
═════════════════════════════════════════════════──────────────────────────────────
 my mom used to always say "the computer will always do exactly what you tell
 it to" and I've since learned that "the computer's obedience is why you make
 backups"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #158 messages/1188 ---
══════════════════════════════════════════════════════════════════════════════════─
 and then they'll let you into the gate. then you gotta figure out your way
 through the gate, where they close the doors on either end of you. "who goes
 there?" etcetera. they never invite in more than they can handle, and they
 never are assailable - not even with a pitched battle.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

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

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

--- #161 messages/904 ---
═════════════════════════════════════════════════════════════════════════──────────
 if the devil gave you false paradise since birth,
 why would you not seek to destroy it?
 
 if an angel gave you an easy hell on earth,
 why would you not seek to deface it?
 
 if your ancestors put you on the path to success,
 would you follow them and forever do the same?
 
 if your family urged you to study rocket science,
 would you bomb indescriminately?
 
 
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #162 messages/1204 ---
══════════════════════════════════════════════════════════════════════════════════─
 when people say they want a woman president what they want is not a woman
 president. what they want is a kind old lady.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #163 fediverse/3544 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌───────────────────────────┐
 │ CW: programming-mentioned │
 └───────────────────────────┘


 "I wish there was a language that was as simple as C but had [insert complex
 language feature here]"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #164 fediverse/949 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-664 
 
 yeah that's fair, depends on if he wanted them to be published or not.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #166 fediverse/675 ---
══════════════════════════════════════════════─────────────────────────────────────
 [says they're going to go to bed]
 
 [refuses to do so because power has gone to their head]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #168 fediverse/4697 ---
════════════════════════════════════════════════════════════════───────────────────
 I want to pee in your pants and throw javelins at visions of bad guys while
 climbing on boulders and gazing to the horizon
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

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

--- #170 fediverse/5662 ---
════════════════════════════════════════════════════════════════════════───────────
 don't work with me.
 
 work around me.
 
 don't talk to me.
 
 talk about me.
 
 don't share with me.
 
 I deserve nothing.
 
 don't take from me.
 
 I have nothing.
 
 -radio-radio-remedy-
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #171 fediverse_boost/5147 ---
◀─[BOOST]
  
  Need that E2EE fedi right now                                               
                                                                              
  i'd be at least 70% more feral                                              
                                                                              
  and feel cozier opening up and sharing                                      
  
                                                            
 similar                        chronological                        different 
─▶

--- #172 fediverse/2394 ---
═══════════════════════════════════════════════════════────────────────────────────
 folding tables in the park
 
 seated around which is a spark
 
 all we really need to do
 
 is talk about what we need to do
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #174 fediverse/3532 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 shallow conversations are hardly effective, I find. Unless they're logistical,
 and then they're just passing information - they're hardly conversational.
 
 To me, a conversation is a back-and-forth. It needs to have change, people
 need to consider, to argue their ideas, to wander through thoughts, to share
 emotions, and / or to resolve conflict, whether internal or external. It can
 have some of those, all of those, or none of those, but that's what comes to
 my mind.
 
 So a shallow conversation wouldn't really count as "effective" for the
 purposes of the original toot : )
 
 ... hehe toot
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #175 messages/626 ---
═════════════════════════════════════════════════════════════──────────────────────
 Talk to veterans for tactics and discipline.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #176 fediverse/4787 ---
═════════════════════════════════════════════════════════════════──────────────────
 don't take on more than you can handle. if your plate is full, don't check out
 the notes by the roadside. Doing so tells all the nearby drivers "hey I need a
 job, anyone got anything for me?" which they'll then drop off further along
 the route to your house.
 
 if you just walk on by then nobody will notice as you head home.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

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

--- #179 messages/262 ---
═════════════════════════════════════════════════──────────────────────────────────
 "come home" and "don't go" sound the same. Same for "kill yourself" and "save
 yourself". If only there was a universal language that we could speak to our
 refridgerator (or other parts of the world prone to tapping) where positive
 messages would have a different amount of syllables from negative ones. Ah
 well I guess that's why they call it an angel *and* devil tapping on your
 shoulder.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #181 fediverse/4025 ---
═══════════════════════════════════════════════════════════────────────────────────
 the "village idiot" doesn't need to lack smarts, so long as everyone else is
 in on it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #182 messages/1116 ---
════════════════════════════════════════════════════════════════════════════════───
 What works for me might not work for another,
 
 But 
 
 What works for me might work for another.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #183 fediverse/2717 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌─────────────────────────┐
 │ CW: re: USpol; shooting │
 └─────────────────────────┘


 @user-1328 
 
 the only method that needs to fail for them to realize what you're saying as
 truth is their method to vote.
 
 they will quickly grasp for power they once held and realize it was little
 more than an "I OWE YOU"
 
 Then, they might listen. Then, they might hear.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #185 messages/546 ---
══════════════════════════════════════════════════════════─────────────────────────
 I always disappear right when you need me the most because you're supposed to
 take the next step.
 
 The reason I do that is because...? You fill in the blanks. Tell me why I do
 that. I know, and I want you to know, but I can't say it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #187 fediverse/3194 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1218 
 
 emotional labor is labor
 
 rest when you're tired. eat when you're hungry. drink when you're thirsty, and
 laugh when it bubbles up within you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #188 fediverse/4939 ---
══════════════════════════════════════════════════════════════════─────────────────
 ┌───────────────────────────────────────┐
 │ CW: personal-medical-health-mentioned │
 └───────────────────────────────────────┘


 me - "I have to wear diapers and it sucks because I hate them"
 
 my girlfriend - "okay but what if you didn't"
 
 me - ":O"
 
 she/her - "how did you make that sound with your mouth"
 
 the it - a-wawaWAwa
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #189 fediverse/718 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-547 
 
 That feeling when you get to the end of a paragraph and think "why do I have
 this extra parenthesis )? Oh yeah I opened it up waaaaay up here" and then you
 reread what you wrote and think
 
 perfect, no notes
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #190 fediverse/2620 ---
═══════════════════════════════════════════════════════────────────────────────────
 I am not asleep. But you cannot expect a strategist to act based on
 information she doesn't have.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #191 fediverse/5287 ---
══════════════════════════════════════════════════════════════════════─────────────
 we all need each other, no matter how much we don't want to need.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #192 messages/404 ---
═════════════════════════════════════════════════════──────────────────────────────
 They don't build toll roads to abstract taxes. They build them to keep track
 of where you're going.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #193 fediverse/3766 ---
══════════════════════════════════════════════════════════─────────────────────────
 ┌───────────────────────────────────────┐
 │ CW: personal-medical-health-mentioned │
 └───────────────────────────────────────┘


 gonna ask my doctor for ADHD meds so I can hopefully jump-skip framebuffer
 divebomb spinadoodle half A press my way over the fucking labyrinth that is my
 weird and jank af mind
 
 and no I don't watch speedruns but my social group hears me a lot of them.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #195 fediverse/6342 ---
═══════════════════════════════════════════════════════════════════════════════────
 revolution
 doesn't
 have
 to be
 about
 them
 .
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #197 fediverse/252 ---
════════════════════════════════════════════───────────────────────────────────────
 I'm convinced that the best and most simple advances in technology comes from
 accurately graphing your system and saying "well why don't we just..."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #198 fediverse/3653 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────────┐
 │ CW: nsfw-topic-mentioned │
 └──────────────────────────┘


 if your affection toward someone is based on whether or not they pay you (and
 how much), then you are a prostitute.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #199 fediverse/3484 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────┐
 │ CW: music            │
 └──────────────────────┘


 haunting melodies of charm and grace, tempered rhythms of battle and chase -
 
 songs to call forth to the gods, songs to effulge from our hearts, songs of
 witness and primacy and birth and decay
 
 https://www.youtube.com/watch?v=V5KqRRt2bj0
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #200 fediverse/898 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────┐
 │ CW: scary            │
 └──────────────────────┘


 if you set up a local LLM with the capability to explain basic coding syntax
 and logic, then your parents computer suddenly becomes much more useful to the
 nephew that's been forced to hide out there for a couple weeks until this all
 blows over.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘