=== ANCHOR POEM ===
═══════════════════════════════════════════────────────────────────────────────────
 @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═════════════════════════════════════════════───────────────────────────────────────┘

=== SIMILARITY RANKED ===

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

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

--- #3 fediverse/5454 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌─────────────────────────────────────────────────────────┐
 │ CW: fantasy-military-equipment-for-a-uh-game-I'm-making │
 └─────────────────────────────────────────────────────────┘


 yep that's definitely what I'm doing, because I'm a programmer and I like
 touching my computer
diagram of a theoretical technology called "truck with steel plate bolted to the side"  it's usage varies but is depicted as a portable shield to be used in urban warfare.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #4 fediverse/4072 ---
════════════════════════════════════════════════════════════───────────────────────
 I like games that test my reflexes
 
 I also like games that test my wit
 
 but most of all I like games that test my patience with strategy
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

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

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

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


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

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

--- #10 fediverse/1873 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌─────────────────────────────────────────────────────────────┐
 │ CW: cursing-mentioned-knots-mentioned-programming-mentioned │
 └─────────────────────────────────────────────────────────────┘


 I love making up my own knots!
 
 I don't like memorizing other people's knots >.>
 
 wait, shit this was supposed to be about programming
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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


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

--- #14 fediverse/1727 ---
═════════════════════════════════════════════════════──────────────────────────────
 a cool thing about my website is that you only have to remember my name, dot
 com.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

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

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

--- #18 fediverse/1503 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌─────────────────────────────────────────┐
 │ CW: vague-gesturing-at-paranoia-I-think │
 └─────────────────────────────────────────┘


 part of me kinda wants to be the kind of nerd that writes down the names of
 every file that's permanently stored on my computer so that I can verify in my
 own handwriting or perhaps using a type of code that the files on my computer
 were placed there intentionally and not used to discredit or implicate me in
 something I had no intentions of being associated with
 
 phew idk what that means but surely it's important
 
 something something "file creation dates are just bits to be flipped"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

--- #21 fediverse/3167 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1218 
 
 OOOO I like that, it's very pretty to see with my eyeballs! And it sounds cute
 too. 🥰
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #22 fediverse/5353 ---
═══════════════════════════════════════════════════════════════════════────────────
 some of my favorite games are behind me and I can't describe how happy I am to
 have known here
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

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

--- #25 fediverse/2853 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1370 
 
 that's okay, I'm interested in the same kind of stuff so if you ever wanted to
 talk about it let me know 🥰 🥰
 
 [this is how I make all my friends btw]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #26 fediverse/3165 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: re: cursing      │
 └──────────────────────┘


 @user-1218 
 
 Stuff like that made me want to become a lawyer.
 
 I didn't, because while I can memorize a D&D textbook I can't recall much
 about legal rulings unless it has something to do with swords.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

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

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

--- #32 fediverse/3463 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌─────────────────────────────┐
 │ CW: re: mental-health-minus │
 └─────────────────────────────┘


 @user-192 
 
 I can relate to that impulse, which is why I'm liking this reply
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #33 fediverse/5517 ---
═══════════════════════════════════════════════════════════════════════────────────
 ... what was I thinking about again? oh yes video games are fun because they
 are a form of play, and all humans love to play. it is natural to their forms,
 just like it is natural to the form of a slinky to slink down stairs.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #34 messages/215 ---
════════════════════════════════════════════════───────────────────────────────────
 Nobody tells me they like my artwork. No one! So why do I keep making it?
 What's wrong with me?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #35 fediverse/2041 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1049 
 
 I haven't heard of that but I'll look into it! Honestly I'm more likely to
 write my own script, it shouldn't be too hard just altering the /etc/hosts
 file and then changing it back in ~15 minutes with a cron-job, as Nikky says
 down below. I like things that I make myself because then if it breaks I know
 who to blame! And who to go to to fix it. >: )
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #36 messages/664 ---
═════════════════════════════════════════════════════════════──────────────────────
 Part of the reason I like Reddit is because you can have multiple different
 conversations about the same topic at once.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

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

--- #39 fediverse/2229 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1203 
 
 ah, like writing down a url on a note-card for a friend
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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


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

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

--- #44 fediverse/2879 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────┐
 │ CW: re: tech info-dump │
 └────────────────────────┘


 @user-1370 
 
 I love this a lot! I want to put function pointers in a "matrix architecture
 array" and make them point to different functions at different points in the
 program. I bet you could even point them at each other, so like if M and Y
 then point at N, A, Y or something.
 
 this is really cool I like stuff like this tomorrow I'll take pictures of
 something similar I'm working on! I abandoned it tho hehe anyway remind me if
 I forget!!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #45 fediverse/4543 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-1698 
 
 Ha that does sound pretty "fun" - I take it you aren't a pianist?
 
 I smell bad because... reasons... so I am always hyper-aware of myself when
 I'm in situations like that. The idea that I might ruin someone's day by being
 there terrifies me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

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

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

--- #49 fediverse/2 ---
══════════════════════════════════─────────────────────────────────────────────────
 hey I'm Ritz I'm a perpetual student studying computer programming and I like
 play Supreme Commander (Forged Alliance Forever!!) and Star Realms. I write
 "poetry" and make art and stuff about computers. Looking for people to follow
 I guess so hit me up if I sound cool.
 
 #Introduction
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

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

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

--- #52 fediverse/633 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-192 
 
 the neat thing about BASH is that it's the glue that holds all your other code
 together. Write libraries in C and call them with BASH - accomplish broader
 tasks that are easier to co-create. That's why I like it - it's not the most
 important, but it's quite beneficial I think _^
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #53 fediverse_boost/4925 ---
◀─[BOOST]
  
  still waiting to find the energy and headspace to write an irritated blog post about why the fact that most toolchains are like 80% of the learning curve for those who are just getting into programming (especially on windows)  
  
                                                            
 similar                        chronological                        different 
─▶

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

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

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

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

--- #58 messages/256 ---
═════════════════════════════════════════════════──────────────────────────────────
 I don't love nature because I want to be in it. I love nature because I
 believe it is important.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

--- #61 fediverse/1612 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1040 
 
 also, I miss most of the names and faces in this archive and I think it'd be
 neat to say "oh yeah I remember them because it wasn't so long ago and it's
 weird how they're not around these days but I forgot about them because their
 profile pic changed or maybe they stopped using mastodon or whatever" - idk it
 feels empty sometimes because your follow list is always growing, but the
 number of people who post seems to always go down. Or maybe I just read
 Mastodon at unfortunate times when there's nothing going on. Who can say
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #62 fediverse/1380 ---
═════════════════════════════════════════════════──────────────────────────────────
 sorry my english isn't very good teehee, I'm translating from my brain
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #64 fediverse/5189 ---
═════════════════════════════════════════════════════════════════════──────────────
 computer programming essentially boils down to putting the right values into
 the right datastructures at the right time and in the right order.
 
 If you count a function call as a datastructure, which I do, because I have
 opinions.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

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

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

--- #67 fediverse/1397 ---
═════════════════════════════════════════════════──────────────────────────────────
 why don't we teach git in high school?
 
 oh yeah, because microsoft word is not plain text.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #69 fediverse/1193 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 There are a lot of things in that picture and I like every single one of them
 :O :O
 
 I'd love to be a houseplant in the corner as you work on your mad scientist
 business
picture of my desk. It's rather unremarkable. I see it every day so it's difficult for me to understand what other people would find interesting about it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #70 fediverse/1194 ---
════════════════════════════════════════════════───────────────────────────────────

picture of a twitter post.  hot goth in the woods that keeps answering the door and sighing and going "no, I'm not the witch, he lives over there" and points across the street to a dazzling pretty boy wearing a gold waistcoat who's waving excitedly at them this happens 268 times a month
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

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

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

--- #75 fediverse/6075 ---
════════════════════════════════════════════════════════════════════════════───────
 I always go fast which is why I'm not doing anything
 
 she lapped you and is trying for another go
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #77 fediverse/2922 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-192 
 
 now I want to re-implement strings as structs in C! I don't know why I never
 thought of them that way.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

--- #80 messages/140 ---
══════════════════════════════════════════════─────────────────────────────────────
 Remind me again why we need computers that are so mind numbingly fast that we
 can't possibly hope to understand their entire stack?
 
 Oh yeah, so we aren't able to understand their stack. How could I forget.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #82 fediverse/5799 ---
══════════════════════════════════════════════════════════════════════════─────────
 all of my friends stopped liking my posts because they don't like me anymore
 T.T
 
 yep... that's DEFINITELY why
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

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

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

--- #85 fediverse/1225 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 don't worry I can sift through junk. I'll write my own using yours as a
 reference to debug why mine isn't working. "oh probably because I didn't do
 this part here"
 
 also, bad news. Guess I'm doing C programming. What should I make? I'm
 thinking Tic Tac Toe or maybe a really basic Asteroids or something
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

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

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

--- #90 fediverse/986 ---
════════════════════════════════════════════════───────────────────────────────────
 adding dashes to your text - like - this - is a punctuation choice, not
 formatting or grammar.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #91 fediverse/3673 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1582 
 
 that's so cool! I love little jobs like that. More dynamic and fun I think
 than implementing features hehe
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #94 fediverse/6319 ---
══════════════════════════════════════════════════════════════════════════════─────
 programming makes you smarter which is why we should teach it to everyone we
 can
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

--- #96 fediverse/5650 ---
════════════════════════════════════════════════════════════════════════───────────
 I exist now at the height of my gluttony.
 
 I need more to be demanded of me.
 
 I am not afraid to ask for help.
 
 I solve other people's problems before my own.
 
 I have very little insight into my habits and patterns.
 
 My memory isn't great, but I recall details that matter.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #98 messages/191 ---
═══════════════════════════════════════════════────────────────────────────────────
 Do you know why I like majesty? Because I'm fascinated by artificial life, and
 I like D&D. Not like anyone cares.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

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

--- #102 messages/1046 ---
═════════════════════════════════════════════════════════════════════════════──────
 I'm not here for fame. Or power. I'm here to make sure things get done. That
 they get better. When i am unneeded, i am home. If you want me, pull me forth.
 If you need me, I'm already there. Fate guides me, and i know i will be
 deployed when necessary. Compel me or dispel me, up to you. I personally just
 like being around. I like feeling my stuff, knowing it true. Trust me when i
 say, i am here for you.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #103 fediverse/4296 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-1655 
 
 why don't we just weaponize email and send json to each other that ends up
 parsed, interpreted, and presented on the end-user's computer using whatever
 client we want?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #104 messages/551 ---
═══════════════════════════════════════════════════════════────────────────────────
 This gun is my sword 
 This blade is my weapon 
 And my foes will lay before me
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

--- #106 fediverse/3531 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────┐
 │ CW: food-mentioned   │
 └──────────────────────┘


 I love ramen but I don't like how it makes me feel after eating it
 :ms_confused:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #107 fediverse/31 ---
════════════════════════════════════───────────────────────────────────────────────
 @user-33 i also like linux
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

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

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


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

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

--- #111 fediverse/3441 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────────┐
 │ CW: capitalism-mentioned │
 └──────────────────────────┘


 capitalism is non-consentual, which is... pretty much the main reason why I am
 against it.
 
 like, I don't really care about whether it's more or less efficient. the fact
 that you cannot opt out means it is unethical.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #114 fediverse/1614 ---
═════════════════════════════════════════════════════──────────────────────────────
 wondering if anyone's ever made a computer that could only run programs
 written in interpreted languages. Like, no binaries allowed. Would probably be
 slower, but if my iphone is good enough for NASA to get to the moon then odds
 are it's good enough for me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #115 fediverse/90 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 did you get the instructions? Mine came in a dream, which sucks
 because I only remember two or three of the rules. I think there were nine
 total, and now I'm afraid to practice my non-programming spelling because I
 don't want to violate causality or redefine temporality or something like
 that. I guess now is as good an hour as any... Dear other witches, hear my
 prayer, I'm kinda lonely and I only know a few spells, but I think that's good
 enough for now.
 
 Do you know any spells, prospective witch?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

--- #117 fediverse/3180 ---
════════════════════════════════════════════════════════───────────────────────────
 I love skywriting. it's so cool to see your words fade into dust after being
 seen by everyone around.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #118 fediverse/108 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 I'm also fond of "I can't know", for things that exist beyond our
 finite existence. For example, the perspective of another, for all it's
 intrinsic value. Being too quick to trust, though, is an easy path to follow.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #119 fediverse/2069 ---
══════════════════════════════════════════════════════─────────────────────────────
 I love the game Mechabellum! It's flexes the same parts of your brain as
 chess, while being SO much more fun to watch.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

--- #123 fediverse/775 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-192 
 
 It's totally simple! It's just structs, void pointers, function pointers,
 arrays, mallocs, and oh boy I think I see what you mean
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #125 fediverse/57 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-65 heck yeah! what kind of game? i love writing :)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

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

--- #127 fediverse/701 ---
══════════════════════════════════════════════─────────────────────────────────────
 ┌──────────────────────┐
 │ CW: computer-code    │
 └──────────────────────┘


 totally useless unless you're, I dunno, building a bytecode interpreter or
 something
 
 https://craftinginterpreters.com/contents.html
If you only have arithmetical expressions you can use some properties of arithmetic to compute branching computer code. E.G., if A is either zero or one depending on some previously computed condition, then A times B plus (1-A) times C computes the expression "if A then B else C"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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


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

--- #129 fediverse/5031 ---
════════════════════════════════════════════════════════════════════───────────────
 it blows my mind when I say things like "I can teach you magic" and people are
 like "meh, I'm not interested in learning"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

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

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

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

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

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

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

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

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

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

--- #140 fediverse/1892 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌─────────────────────────────────────────┐
 │ CW: C-programming-and-alcohol-mentioned │
 └─────────────────────────────────────────┘


 I want to write C programs with threads and manual memory management and
 function pointers and lots and lots of arrays and I'm not even kidding
 
 ... wait a minute I literally don't have a job, why am I not writing C
 programs right now?
 
 BRB I got something important to do, where's my vodka --> pkill firefox
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

--- #143 fediverse/2622 ---
═══════════════════════════════════════════════════════────────────────────────────
 what kind of linux user are you if you don't even like reading terminal
 output? it's USEFUL and INTERESTING information!
 
 WHY ELSE WOULD THE PROGRAMMER OUTPUT IT???
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

--- #147 fediverse/547 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-395 
 
 You are very welcome. I love putting additional context into places that
 people don't often look. I think it makes people feel special when they find
 it ^_^
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

--- #150 fediverse/3720 ---
═════════════════════════════════════════════════════════──────────────────────────
 beep-boop look at me, building up my computer and setting up a new TV
 
 I like making things work, I like making things turn on, I like the way they
 glitter when they light up the room at dark
 
 it feels good to build up
 this new functionality
 
 it feels good to make things work and go
 "beep"
 when they turn on
 
 ... I should get a buzzer for my motherboard. Like, a really quiet one, that's
 just louder than the fans.
 
 looks at dwindling bank account
 
 oh right, nobody will hire me, so.
 
 I wonder if they would if I could still pass for a man?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #152 bluesky#2 ---
══════════════════════════════════════════════════════════════════─────────────────
 I'm new here, hey what's going on what's up
 
 'd love to make friends, alas I'm too far away from the spark.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #153 fediverse/2297 ---
═══════════════════════════════════════════════════════────────────────────────────
 Lying wide awake at night with things that I want to say drifting through my
 mind one by one
 
 getting up to write them down? forgetting them all.
 
 I think I'm just gonna leave my computer online to reduce friction hehe.
 
 up and down, till everyone's in town, maybe I'll nap between tweets.
 
 [they're called toots here, dummy]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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


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

--- #156 fediverse/5698 ---
════════════════════════════════════════════════════════════════════════───────────
 you can't rely on me because I can't rely on a part of me being "out" at any
 particular moment-event-message.
 
 besides, I'm always tired, because I'm always trying as hard as I can.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #157 fediverse/1808 ---
══════════════════════════════════════════════════════─────────────────────────────
 I'm a computer programmer. Of course I make abstract art.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #158 messages/110 ---
═════════════════════════════════════════════──────────────────────────────────────
 The best way to program computers is to organize them according to their
 relations. Like, when x increases by 4 then y increases by 2 - basically, a
 math equation that you can continuously solve by calculating more and more
 comprehensively and deeply.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

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

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

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

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

--- #163 fediverse/2742 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1352 
 
 that's pretty cool. It kinda sounds like a local replacement for AWS / Azure?
 I don't fully get it but I haven't worked with web applications before ^_^
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #165 messages/212 ---
════════════════════════════════════════════════───────────────────────────────────
 Also she's just a person, a cursed person but hey she's just trying to do
 right. So am i. I believe in goodness, and so does she (even though she can be
 a bit evil about it) (without trying, I might add, it just comes naturally to
 her) (she's better now though)
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #166 fediverse/5732 ---
═════════════════════════════════════════════════════════════════════════──────────
 I am often disorganized.
 
 my effort is spent elsewhere.
 
 but I am good at organizing!
 
 when I find the time or place.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #167 fediverse/3088 ---
════════════════════════════════════════════════════════───────────────────────────
 growing up, I wasn't around kids my age. So my standards were "as good as an
 adult"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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


 @user-95 (My controller makes different expressions on my face depending on
 how my hands are holding them, and I've never bothered to learn how to control
 them - sorry if I was confusing =P)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

--- #171 fediverse/3060 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1441 @user-670 @user-113 
 
 thanks. something always does, much to the disdain of my loved ones who are
 forced to catch me before I fall. But I literally can't do anything else but
 fall. It's like my body is heavier than theirs.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

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

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

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

--- #178 fediverse/1115 ---
════════════════════════════════════════════════───────────────────────────────────
 huh that's weird I wonder why that's the case - ports are like, a networking
 thing right?
a screenshot of a web page describing which networking ports must be forwarded by the router to the correct application. essentially, taking information in a specifically defined format from the internet and applying it to the current state of the game. Like, a MUD where each player's experience updates according to the actions of others.  you know, I think people would enjoy MUDs a lot more if they played on a screenreader. Just a hunch.  Anyway  The ports needed to be forwarded in order for the multiplayer capabilities of the video game Unreal Tournament 2004 are: UDP 7777-7778, 7787, and 28902  the ports for the steam version of the game are those numbers, but in addition these: 27015, and the range between 27031 and 27036. The question is, if the versions of the game are the same, then why the requirement of additionally forwarded ports? Perhaps for the game servers, which are run on the steam website. [computing infrastructure, servers and the like]  or perhaps [scary] they're harvesting your data, or farming bitcoins or something. it's difficult to tell except through careful analysis of the power draw requirements of the original game when compared to the Steam version (which came later.) In doing so they could isolate the amount of differential in the computing requirements of the application (Unreal Tournament 2004), or [interruption]  perhaps they'll go down a different path. Who can say. IT's a detective story, for someone far more equipped than me. I am just a tec
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #179 fediverse/2042 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1147 
 
 That's a great idea, I'm probably going to do that! I've had this problem
 like, 7 or 8 times now and if I keep repeating myself they're going to take my
 programmer socks away.
 
 ... I don't actually have any programmer socks. I should get some. Maybe
 they'll just take my Thinkpad instead, that'd definitely be worse. D:
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #180 fediverse/3564 ---
═════════════════════════════════════════════════════════──────────────────────────
 this kind of thing always happens when I'm manic lmao
error  we are unable to permit banking access at this time. please try again later or call this number for assistance.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #183 notes/forestbrook ---
════════════════════════════════════════════════════───────────────────────────────
 an old folks home that had an emphasis on technology, giving residents the
 ability to work on tech projects. honestly I think it would be helpful not
 just for their brains, but also for their enjoyment. Programming is fun!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #184 messages/1117 ---
════════════════════════════════════════════════════════════════════════════════───
 The people are doing so well. I'm proud of them.
 
 Let's get through another day, and see how we feel.
 
 Who knows, we might feel better.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #185 messages/715 ---
════════════════════════════════════════════════════════════════───────────────────
 No-one likes your practice 
 Because it lacks respite
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

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

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

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

--- #189 fediverse/2233 ---
═══════════════════════════════════════════════════════────────────────────────────
 I don't have a picture of my face as my profile pic because it's better for
 me, in this moment, to remain a bit vague.
 
 if you know me you'll know me, though.
 
 if you don't, well I'll tell you my name if you ask.
 
 It won't be the one you see up above me,
 
 but it's a conlang of computer-assisted vision. like, what a computer uses to
 see, that sounds phonetically like my name. conlang isn't hte right word but
 tha'ts okay.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

--- #193 fediverse/1465 ---
═════════════════════════════════════════════════──────────────────────────────────
 corporations are a particular method of organizing people.
 
 I'm pro organization, not necessarily pro corporation (they'd have to be real
 darn ethical to get a pass from me)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

--- #196 fediverse/5179 ---
════════════════════════════════════════════════════════════════════───────────────
 why don't corporations let you write code in whatever language you want? it's
 trivial to run a compiler or interpreter inside of another program.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

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

--- #199 fediverse/2036 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1138 
 
 Just don't forget to update the location in the spreadsheet, they LOVE
 spreadsheets at Intel
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #200 fediverse/6438 ---
═══════════════════════════════════════════════════════════════════════════════────
 why would you gatekeep content by keeping us from easily using LLMs some
 people aren't technical and still need to write computer programs because
 that's how you enlighten a people is empower them with new tools
 
 "I've never heard of that programming language, but luckily I can fit all of
 it's documentation in my context window."
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘