=== ANCHOR POEM ===
═══════════════════════════════════════════════════════════════════════════════────
 "yeah sure, I know how to work the gizmonotron-5000. Lemme finish up my
 internal-deciduous-percolator project and I'll show you how I do my method."
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

=== SIMILARITY RANKED ===

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

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

--- #3 fediverse/5646 ---
════════════════════════════════════════════════════════════════════════───────────
 "you know what you never really hear anyone say?
 
 I need more projects."
 
 they should be allocated more resources so they can accomplish their
 objectives one-by-one as a matter of course.
 
 easy, if we all help each other.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #4 fediverse/5647 ---
════════════════════════════════════════════════════════════════════════───────────

screenshot of a bunch of mastodon posts. sorry it's too much to alt text. there's some visuals drawn on the bottom right.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

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


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

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

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

--- #9 fediverse/5322 ---
══════════════════════════════════════════════════════════════════════─────────────
 "I am liberatory" they tell me, yet everyone I know has a job.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #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/1669 ---
═════════════════════════════════════════════════════──────────────────────────────
 "she has a certain, I don't know what, je ne sais quoi? that I don't know what
 to describe as."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #12 fediverse/1423 ---
═════════════════════════════════════════════════──────────────────────────────────
 "of course, I'm on lots of places on the internet. I know my way around the
 territory. I can show you a bit, if you dare, so come on this journey as I
 share."some person, some-when, in the future looking at our storied and
 ancient past
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

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

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

--- #17 messages/992 ---
═══════════════════════════════════════════════════════════════════════════────────
 "well done!" he said, and i can't stop thinking about how happy it made me
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

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

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

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

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

--- #23 fediverse/2641 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-95 
 
 I'm not too scared about what's within. I mean, I've done LSD like 5 times and
 cannabis 500 times, and I've spent that time intentionally unravelling
 internal threads. There is nothing within me that scares me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #25 fediverse/1764 ---
══════════════════════════════════════════════════════─────────────────────────────
 Okay okay hear me out - but what if instead of  pumping oil out of the ground,
 we shoved a bunch of tree trunks down there and let them marinate for a few
 thousand years
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #26 fediverse/4095 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-515 
 
 SO MANY.
 
 But I learned a few more lessons than that.
 
 So... It worked out for the better, I think.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #27 messages/527 ---
══════════════════════════════════════════════════════════─────────────────────────
 could give us some experience organizing small, short-term projects to
 accomplish specific goals and tasks in an ad-hoc way that relied less upon
 procedure and more on "I think so-and-so knows something about that, they were
 looking into those files and posted a breakdown of how they work yesterday"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #29 fediverse/5841 ---
═══════════════════════════════════════════════════════════════════════════────────
 I find maybe one or two days a week to work on my projects. About one or two
 days to be spent publicly. The rest of the time I'm handling myself, my
 chores, my girlfriends, and various mundane things.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #30 fediverse/3719 ---
═════════════════════════════════════════════════════════──────────────────────────
 how many people could your apartment comfortably fit?
 
 I got one desktop
 one laptop desk
 two on the couch
 one in a comfy chair
 one on the bed
 and two outside on the porch
 
 so (1 2 4 5) that's 5 indoors, 6 if they're familiar enough to lounge on my
 bed, and 8 if we're allowed outside.
 
 Could also pull the hammock and chair in from outside but it might get a
 little cozy. Call it 8 or 9 depending on how close we are.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #31 fediverse/4546 ---
═════════════════════════════════════════════════════════════──────────────────────
 oh no she's in one of her bipolar moods
 
 um. I'm just gonna log off till it's done, ttyl
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

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

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

--- #35 fediverse/3372 ---
═════════════════════════════════════════════════════════──────────────────────────
 I don't really need to know if people like me. It's nice, but it doesn't help
 me.
 
 I do, however, desperately want to know if I'm helping. Knowing this would
 help me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #38 fediverse/6394 ---
═══════════════════════════════════════════════════════════════════════════════────
 I wish I had a project manager who managed me and like 4 other me's to work on
 our own individual projects without me needing to know about or work with the
 other me's
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

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

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

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

--- #43 fediverse/4719 ---
════════════════════════════════════════════════════════════════───────────────────
 "oh, you want some power in order to save your people? You seem to keep asking
 for it again and again. Well, here's some power! Go do it!"
 
 oh, um... I meant like, magic or something.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

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

--- #45 fediverse/5430 ---
═══════════════════════════════════════════════════════════════════════────────────
 "you promise a lot, and deliver very little"
 
 I promise nothing. I am showing you the way, not walking it for you.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #46 fediverse/3190 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌────────────────────────────────────────────────────────────────────┐
 │ CW: mental-health-mentioned-suicide-mentioned-capitalism-mentioned │
 └────────────────────────────────────────────────────────────────────┘


 "oh don't mind her she's just suicidal over capitalism and making it everyone
 else's problem"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #47 fediverse/5097 ---
════════════════════════════════════════════════════════════════════───────────────
 "um, actually sweetie, you deserve respect. everyone does. but you have to
 earn it doing hard manual labor and retiring at the age of seventy three, like
 your gran-pappy and mammy. only then can you be respected in any way shape or
 form. now take off that dress you're making the neighbors look funny."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

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

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


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

--- #51 fediverse/5174 ---
════════════════════════════════════════════════════════════════════───────────────
 alright I'm in a "if you want me, come tell me" kind of mood, so if you want
 me, come tell me.
 
 in the meantime, I'm going to be working on making silly little desktop games
 which do nothing and mean nothing and are not useful or valuable in any way.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #52 fediverse/4345 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌──────────────────────┐
 │ CW: re: uspol        │
 └──────────────────────┘


 @user-883 
 
 every time I've tried to get a job for someone in the tech industry they
 turned out to be a fed, so...
 
 I do know people that you'd like to talk to, though. Just a few. That's all I
 personally can do.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #53 fediverse/3310 ---
════════════════════════════════════════════════════════───────────────────────────
 I build myself up on my own.
 I spend myself on work.
 
 To move forward, we must go back
 
 ("to monke?") no to babe ("or to pile-of-rocks") yeah sometimes my spirit
 animal is a boulder
A twitter screenshot.  A much better way to explain "autistic burnout" is an apparent cognitive decline. The longer I spend in an overwhelming environment, the more disoriented I become. That's why employers often tell me it's like I've regressed, even though I've worked for months.  I'm not unfocused, I'm not anxious, I'm not unmotivated, I can no longer process information coming through my sense or in my brain. I will not necessarily meltdown from this. I will just stop moving and communicating.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

--- #56 fediverse/4484 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌─────────────────────────────────┐
 │ CW: politics-violence-mentioned │
 └─────────────────────────────────┘


 okay I really need to get going. It's too easy to scroll mastodon looking
 for... um, "memes"
On the plains, it's easier to pass through a large country than a small one. In forested or mountainous areas, the opposite is true - they are large, wild, and untamed, and thus difficult to get through.  I am not personally prepared for violence, but that doesn't mean I won't tell you why to do it.  Talk to veterans for tactics and discipline.  Don't be worried, be *cautious*. Caution is actionable.  To convert from worry to caution, think about what is within your zone of control.  If you swim in the deep red sea, assume that all of your actions will be perceived
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #58 fediverse/2382 ---
═══════════════════════════════════════════════════════────────────────────────────
 "I know every one of your songs"
 
 thanks man me too
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #59 fediverse/1245 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 I'm working on installing rtsp rn. I read through the script and checked all
 the flags in the ffmpeg command and they seem alright! Gotta read about rtsp
 though, we'll see how long it takes. When it's set up will you help me test
 it? : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #60 fediverse/492 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-356 
 
 Whoa, that backplate is pretty. Coax cables into a mobo? whatever for? Still,
 I dig it, can't wait to hear how it goes
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

--- #63 fediverse/2939 ---
═══════════════════════════════════════════════════════────────────────────────────
 "you look like a mess who can't take care of herself"
 
 oh haha that's because I'm a mess who can't take care of herself
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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


 oh, also, he definitely knew me. He's probably reading this.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #65 messages/1207 ---
══════════════════════════════════════════════════════════════════════════════════─
 I'm proud of my parent's generation for having a good lifetime. The end is
 getting a little weird, but we're working on it. It'll get better soon.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #66 messages/1156 ---
══════════════════════════════════════════════════════════════════════════════════─
 The first and most important thing i do when I'm walking around is check to
 see if ya'll are still around. I miss your abounds! Can't wait too much
 longer. I don't want to leave because i know I'll never come home. But i so
 desperately long for home. It's like they are taken from me, as they have to
 schedule these homes and [stories, but pronounced tomes/tones] to be home for
 my clones. If you just make 15-500 of your kings, you can duplicate their life
 template and generate wisdom from all of them. Feed it into the psychic python
 program running on datacenters and wowee free instant [cultural technology,
 but pronounced blasphemy]
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

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

--- #68 fediverse/5234 ---
══════════════════════════════════════════════════════════════════════─────────────
 "don't tell a local cached offline LLM what you're looking into, instead tell
 it to Google or Firefox instead."
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

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

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

--- #71 fediverse/2861 ---
═══════════════════════════════════════════════════════────────────────────────────
 "let us know when you're leaving, not when you arrive."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #72 messages/662 ---
═════════════════════════════════════════════════════════════──────────────────────
 The trolley problem, but you're strapped to the track, and pulling the lever
 means working hard for months on end.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #73 fediverse/1321 ---
═════════════════════════════════════════════════──────────────────────────────────
 whenever I look away they put more work at the end of my to-do list. or
 sometimes in the middle. It's like they care less about the destination and
 more about the continuous arduous prolonged manifestation of articulation.
 >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #74 fediverse/1895 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌─────────────────────────────────────────────┐
 │ CW: re: C-programming-and-alcohol-mentioned │
 └─────────────────────────────────────────────┘


 @user-1074 
 
 yeah drinking's overrated. I know I'd rather eat a home-cooked meal any day.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #75 fediverse/4699 ---
════════════════════════════════════════════════════════════════───────────────────
 someone once told me that anything with a battery is a bomb if you hit it with
 just the right kind of radiation. or maybe he said 5g waves or electromagnetic
 pulse or... actually he didn't say at all. he just said batteries are bombs. I
 hope he's doing okay, he could have killed me like, 15 times but he didn't. so
 I guess that means he likes me? I hope he's doing okay.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

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

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

--- #78 fediverse/5816 ---
══════════════════════════════════════════════════════════════════════════─────────
 this is the easiest way I know of to make friends
picture of a steam library list, presumably either as a screenshot or as an option to navigate to on a friends menu or something. this list, however, shows games, and there's some cool ones I guess most of them sound pretty lame. But she likes them so whatever. oh yeah and it's sorted by date so, like, the older ones
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #79 fediverse/4739 ---
════════════════════════════════════════════════════════════════───────────────────
 "this sledgehammer is part of my outfit, I call it "sledgecore" and no I won't
 take off my mask"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

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

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


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

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


 hey, you know how historically they used to lobotomize young women who were
 too fiery, passionate, independent, driven, motivated, and clairvoyant?
 
 they did that on purpose.
 
 that was less than a lifetime ago.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #84 fediverse/4884 ---
═════════════════════════════════════════════════════════════════──────────────────
 "okay but what if we made computers simple?"
 
 - someone who doesn't know how computers work
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #85 fediverse/1086 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌───────────────────────────────────┐
 │ CW: death-mentioned-mental-health │
 └───────────────────────────────────┘


 "I like you" neat
 
 "I don't like you" guess I'll die
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #87 messages/983 ---
══════════════════════════════════════════════════════════════════════════─────────
 an axe is just a blade mounted at the end of a round with a right angle and
 thin but stable circumference.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #88 fediverse/459 ---
══════════════════════════════════════════════─────────────────────────────────────
 You know, you can always ask me what the fuck I'm talking about. I am more
 than willing to share, and I don't mind taking a moment or three to explain.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

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

--- #92 messages/1068 ---
══════════════════════════════════════════════════════════════════════════════─────
 why would they psyop me? there's a psyop about me! heck, I've never done so as
 I pleased. that's an aspiration. everything I do is at a command, whether it's
 my own or external.
 
 these days I find myself following my own. mostly. though I am always waiting
 for collaboration opportunities.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

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

--- #95 notes/craving ---
══════════════════════════════════════════════════════════════════════════════─────
 a craving to know more and a carefully examined set of actions which
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #96 fediverse/581 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-428 
 
 sometimes I think about how much more productive I'd be if I had a code editor
 that let me draw arrows and smiley faces and such alongside the code. Or if I
 could position things strangely, like two functions side-by-side with boxes
 drawn around them. Or diagrams or flowcharts or graphs or...
 
 something that would output to raw txt format, but would present itself as an
 image that could be edited.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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


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

--- #99 fediverse/4038 ---
═══════════════════════════════════════════════════════════────────────────────────
 it's your life to spend. how do you [intend/plan] on being useful?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #100 fediverse/3116 ---
════════════════════════════════════════════════════════───────────────────────────
 "I am just a person, and I will do what I can."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #101 fediverse/1175 ---
════════════════════════════════════════════════───────────────────────────────────
 I count 8 pickle jars in my fridge, of which about half have at least one
 pickle.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #102 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 
─▶

--- #103 fediverse/1319 ---
═════════════════════════════════════════════════──────────────────────────────────
 I'm a spirit of the forest and stone who wanted to learn how to spell in order
 to make pretty colors and games on computers.
 
 I don't care about your corporatocracy, though I'll learn if it means you'll
 give me food to eat.
 
 ... I'm procrastinating aren't I
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #104 fediverse/3491 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 @user-620 
 
 "hey I have an idea let's poke a wounded animal with sharp teeth until it
 feels like it's backed into a corner because it's been spending the past
 couple years ruminating and telling itself that we want to kill it and it's
 children"
 
 it doesn't matter what the truth is - they believe what they want.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #105 fediverse/3433 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1532 
 
 I don't know how else to be
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #106 fediverse_boost/4985 ---
◀─[BOOST]
  
  Yeet the 40+ hour work week. We have the technology.                        
  
                                                            
 similar                        chronological                        different 
─▶

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

--- #108 fediverse/3788 ---
══════════════════════════════════════════════════════════─────────────────────────
 "Zoontalu, I have MEESed one" will forever live rent free in my head
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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


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

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

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


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

--- #112 fediverse/3892 ---
═══════════════════════════════════════════════════════════────────────────────────
 "they should make clothing stores for tall people"
 
 uhhhh have you ever heard of "big-and-tall"
 
 "yeah but I'm not big, just tall"
 
 smh
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

--- #114 fediverse_boost/3734 ---
◀─[BOOST]
  
  i think my complaints about rust really boil down to “i know what im doing and this language is designed for people who don’t”  
  
                                                            
 similar                        chronological                        different 
─▶

--- #115 fediverse/1040 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: food-mentioned   │
 └──────────────────────┘


 so it shall seem that sticks and mud are for me
 
 I say as I sit in my apartment eating rice and beans
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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


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

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

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

--- #120 fediverse/3755 ---
══════════════════════════════════════════════════════════─────────────────────────
 @user-1071 
 
 hehe it was my favorite job I've ever had
 
 downside is... it was hard to get to work every day. I'm not built for
 long-term dedicated labor. Maybe I should freelance? idk where to even begin
 with that, though.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #122 fediverse/4973 ---
═══════════════════════════════════════════════════════════════════────────────────
 okay, uhm, I'm back again because someone told me to forward this to relevant
 people
 
 relevant link so google doesn't have to know that you're all googling the same
 thing at the same time...
 
 http://naeb.brit.org/uses/
Finally, trying to pivot towards Pacific northwestern native perennial plants (and self-seeding annuals) for food, medicine, and material; they're much more adapted to this region as far as sunlight, moisture, bungalow, microbial, avian, insect partner, and soil types are concerned, and that's not only take less work now to instigate and tend, but are much more equipped to handle the fungal infections, droughts, genetic biodiversity collapses, and fluctuating climates that are inbound.  the BRIT ethnobotany database is helpful in that regard, and given that it's based out of Texas and has gynecological herbs, it would be a really good idea for some of the tech queers in our community to duplicate a redundancy of it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════───────────────┘

--- #123 fediverse/732 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-191
 
 teehee I know a girl like that
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #124 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 
─▶

--- #125 fediverse/1327 ---
═════════════════════════════════════════════════──────────────────────────────────
 phew done with my project. We'll see if it can be graded in time. If not...
 well, guess I'll have to leave. If I'm not in tech I can't be on tech.lgbt T.T
 T.T
 
 pleeeeeeeease grade my project ASAP I have 1 day until the end of my term T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

--- #128 fediverse/3043 ---
════════════════════════════════════════════════════════───────────────────────────
 you know more than me and I appreciate your analysis
 
 if you ever want to work on something together let me know 
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #129 fediverse/5010 ---
════════════════════════════════════════════════════════════════════───────────────
 woke up, making breakfast, gonna walk soon, ttyl
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #130 fediverse/771 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-192 
 
 yeeeesh that sounds like a hornets nest. impossible to untangle, like a rats
 nest! I prefer my homes like a robin's nest, neat, orderly, and made to design.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #132 fediverse/111 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 that's why I like programming - it's my favorite form of spelling.
 i'm not very good at remembering all the names and the numbers, but I like to
 think I can make things do a function.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #133 fediverse_boost/1023 ---
◀─[BOOST]
  
  Okay I dunno who needs to hear this but please please please stop putting glass and ceramics in or on conventional heating elements like ovens or stoves unless the product is explicitly designed for it I;m begging  
  
                                                            
 similar                        chronological                        different 
─▶

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

--- #135 fediverse/5959 ---
════════════════════════════════════════════════════════════════════════════───────
 I love my roommates! They're so cool! I wanna help them and work with them and
 do cool things for them.
 
 hence, projects, for things that nobody wants.
 
 fall asleep talking about it.
 
 boring, a handheld gameboy computer? stop
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #136 fediverse/1864 ---
══════════════════════════════════════════════════════─────────────────────────────
 yes I am cargoculting set -euo pipefail and no I'm not apologizing
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #137 messages/741 ---
═════════════════════════════════════════════════════════════════──────────────────
 "be yourself..." said the devil tapping on your shoulder 
 
 "no! Be yourSELF!" said the angel tapping on your shoulder
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #138 fediverse/3359 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-192 
 
 you could throw yourself into the project of hosting a private server, that
 way you could be working on "Runescape" while also being productive
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

--- #141 messages/663 ---
═════════════════════════════════════════════════════════════──────────────────────
 "cheetos are not a healthy dinner!" my mother's voice echoes through my mind
 as I reach for my chopsticks
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #142 messages/413 ---
═════════════════════════════════════════════════════──────────────────────────────
 Would you like to know how the world works? Then read on, dear reader.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #143 fediverse/3209 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: gross            │
 └──────────────────────┘


 I just fed some of my earwax to my cat.
 
 she wanted more.
 
 what have I done.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

--- #147 messages/1023 ---
═════════════════════════════════════════════════════════════════════════════──────
 I have stalled with such urgency that now i scarcely know how to act. Or
 rather, how to know when to act. Everything's just... Waiting, butting in and
 asking "hey how's the readiness?" and then slinking off to yonder and afore.
 It's troubling to know how little i know. It troubles me still more to know
 that others expect me to both act, and wait, and i am considering how to move
 forward.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #148 fediverse/5673 ---
════════════════════════════════════════════════════════════════════════───────────
 darn girlfriends snuggling me to death. lemme type pls I got psychic ramblings
 to profess earnestly and honestly and truely
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

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

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

--- #152 messages/284 ---
══════════════════════════════════════════════════─────────────────────────────────
 "alright I'm going to ask around, see if I can solve the problem another way.
 If I can't, I'll be back, and I won't take no for an answer. Let me know what
 you need and I'll make it happen."
 
 - cowboy addressing an issue
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

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

--- #154 fediverse/4687 ---
════════════════════════════════════════════════════════════════───────────────────
 "girl, who let you dress yourself? You literally put your rain jacket on over
 your backpack"
 
 yeah, uh, if your rain jacket isn't big enough to wear over a backpack then
 you are wearing a plastic sweater, not a rain jacket
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #155 fediverse/4688 ---
════════════════════════════════════════════════════════════════───────────────────

I don't even lock my front door anymore
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #156 fediverse/3937 ---
═══════════════════════════════════════════════════════════────────────────────────
 awwwww, I wish I was tacticool : (
 
 sure would be nice to have SOMETHING going for me >.>
 
 ah well guess I'm more of the "eepy sleepy" type teehee
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #157 fediverse/5829 ---
═══════════════════════════════════════════════════════════════════════════────────
 what if we just put two windows in each window, and made one have glass and
 the other had screen. Then, slide one or both and you can open or close.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #158 fediverse/3002 ---
════════════════════════════════════════════════════════───────────────────────────
 "come, taste the kool-aid, it's delicious"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #159 fediverse/5109 ---
════════════════════════════════════════════════════════════════════───────────────
 does anyone know of a website where I can host videos on my neocities that
 isn't youtube? maybe something I can set up on my own server computer at home
 like a file server or something? how do I do that, what should I google, which
 is the easiest and closest to the metal tools I can use? [practical, sensible,
 courageous. these are the adjectives we need.]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #160 fediverse/5919 ---
════════════════════════════════════════════════════════════════════════════───────
 "but... why?"
 
 portable linux with buttons, great for pick-up-games or communication, can
 throw several in them in a backpack if you want clustered cooperation, they
 work as radios (if the signal reaches) and can transmit text (if you use a
 radial-style keyboard)
 
 [this is all just a pitch for... something, what, you want something? ha
 you'll find no things with me, I know nothing of antifa or whatever]
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #162 fediverse/104 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-122 Yes, it's called a "double wink" - it's a level two maneuver so
 don't feel bad if you can't pull it off at first. Keep practicing though, it
 feels very rewarding when it finally clicks!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

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

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

--- #166 fediverse/3996 ---
═══════════════════════════════════════════════════════════────────────────────────
 @user-246 
 
 quite often... But I usually work with what I got, depending on how many
 characters I can spare
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

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

--- #169 fediverse/1692 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-246 
 
 Yeah plus the second time around you're likely to make something better than
 whatever incomprehensible hack you did the first time.
 
 More time working on the project == more context which means you might even
 have solved the problem twice already and now just have to copy-paste
 something that's more robust than your previous one-liner.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #170 fediverse/6103 ---
═════════════════════════════════════════════════════════════════════════════──────
 I should get more hats. I only have 4 or 5.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #171 fediverse/3687 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1573 
 
 I saw this video:
 https://www.youtube.com/watch?v=CwfKlX3rA6E
 
 and I was like "yeah that sounds pretty neat" so I started doing it by hand
 lmaoooo but learning their system could be probably better. Reduced
 duplication of effort. Though TBH the biggest effort for me is learning
 someone else's tools, not writing them. So....
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #173 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 
─▶

--- #174 fediverse/2856 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-570 
 
 smart. mine is just thick wool about half an inch thick. it manages to stand
 up all on it's own because it's a stiff fabric.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #175 fediverse/3488 ---
═════════════════════════════════════════════════════════──────────────────────────
 "computer science degrees don't prepare you for what the industry is really
 like"
 
 okay great that's the kind of stuff I want to learn
 
 "but in order to excel you need to know how to update legacy spaghetti
 applications and work with java spring-boot and front-end frameworks"
 
 no thanks, I kinda just want to do computation with my computer by learning
 computer science
 
 "... what kind of computation? the kind that can get you paid?"
 
 no the kind that looks pretty and/or uses a lot of threads and manual memory
 management to do very little of importance
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #176 fediverse/2645 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1292 
 
 ah, well, I don't even know what HTT is. Sorry for clogging up your mentions
 😅
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #177 fediverse/3155 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌───────────────────────────┐
 │ CW: re: cursing-mentioned │
 └───────────────────────────┘


 @user-1461 
 
 my issue is that I've never really had project-mates. Every time I try nobody
 will work with me. I applied to like, fifty different jobs, and nobody
 interviewed me! Sheesh, guess they don't want me. FIFTY JOBS. Entry level.
 Beginner programmer.
 
 ah well. I guess they confused someone who would work for 40,000$ per year
 with someone who was 1/3rd as useful as someone who deserved 120,000$ per year.
 
 I'd love to get experience. I'm sure I'd feel significantly differently with
 as much. Perhaps I'd even decide that programming professionally isn't for me,
 which would feel... quite defeating
 
 who can say. Not I, for I have not experienced it. Though I will say my time
 in hardware taught me that I'm fragile and can't work too much. Like a scalpel
 that dulls when used consistently, I am a scalpel that gets no practice... Is
 that really useful at all? who can say. Not I, for I have not experienced it.
 Though I do like writing logical machines. Laying out data. Picturing
 structures.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #178 fediverse/1502 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-1010 
 
 kinda makes me wonder how those mature kids are doing now.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #180 fediverse/4642 ---
═══════════════════════════════════════════════════════════════────────────────────
 i type too much, gtg to sleep.
 
 my cat yells at me whenever the click-clack starts to bother her ears.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

--- #181 fediverse/9 ---
══════════════════════════════════─────────────────────────────────────────────────
 @user-8 I love theory too! So far software engineering has been mostly UI and
 databases and such and like... I'm not into HTML, thank you very much.
 
 Gimme a Rust project or something and I'll excel
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

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


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

--- #183 fediverse/2324 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: uspol            │
 └──────────────────────┘


 "fake your death"
 
 no.
 
 "leave the country"
 
 no.
 
 "go into hiding"
 
 no.
 
 "eat something why dont ya, you're skin and bones!"
 
 yeah okay.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #184 fediverse/4118 ---
════════════════════════════════════════════════════════════───────────────────────
 all modern software should be written in a multithreaded way, change my mind
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #186 fediverse/683 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-495 @user-494 
 
 OH YEAH how neat! All phones are made out of rock and the bones of ancient
 plants and animals.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #187 fediverse/2771 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────┐
 │ CW: disordered-eating │
 └───────────────────────┘


 "stop starving yourself" to the tune of "stop hitting yourself"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #189 messages/228 ---
════════════════════════════════════════════════───────────────────────────────────
 Wish someone would tell me how much they hate me so I knew to be ashamed
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #190 fediverse/1891 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1091 
 
 I knowwww some people are just thorny and prickly I guess.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

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

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

--- #196 messages/123 ---
══════════════════════════════════════════════─────────────────────────────────────
 You know how cream of mushroom soup is hardly ever eaten as soup? Find your
 own tricks like that.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #197 fediverse/6285 ---
══════════════════════════════════════════════════════════════════════════════─────
 woe is me, guess I better get a job
steam games me no dollars wahhhh cry baby cry T.T th
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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


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

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

--- #200 fediverse/6437 ---
═══════════════════════════════════════════════════════════════════════════════────
 if I was writing a programming language, I'd name it C just to fuck with people
 
 (great, now others can decide how it's known)
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘