=== ANCHOR POEM ===
═══════════════════════════════════════════════════════────────────────────────────
 @user-192 
 
 ....... yeah you're probably right. I could never get it working for some
 reason. Only Alsa worked, and Alsa is arcane to configure :ms_confused:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

=== SIMILARITY RANKED ===

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

--- #2 fediverse/1227 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 sound on Linux is so complicated :ms_confused:​
 
 EDIT: Linux is so complicated
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #3 fediverse/4308 ---
════════════════════════════════════════════════════════════───────────────────────
 :ms_confused:
255 boosts  422 favorites
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

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

--- #6 fediverse/4799 ---
═════════════════════════════════════════════════════════════════──────────────────
 just compiled my digital writing and apparently I've written about 60,000
 lines of 80 characters :ms_confused:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

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

--- #9 fediverse/2894 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-192 
 
 I wonder if anyone's working on a "Wayland for audio" thing to replace Alsa /
 Pulse / PIpewire?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #10 messages/213 ---
════════════════════════════════════════════════───────────────────────────────────
 Maybe I'm just woefully arcane?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #11 fediverse/1473 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 yeah uhhhh the one you helped me setup. The error is just "connection refused"
 because it "could not write header for output file" because of incorrect input
 parameters, but I don't think I changed anything since we used it a couple
 weeks ago. Have you seen any errors like that?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #12 messages/940 ---
═════════════════════════════════════════════════════════════════════════──────────
 *perfect*, we solved computation - just become a computer! easy!
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

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

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

--- #16 fediverse/2750 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-246 @user-570 
 
 or "what button do you want to use for "yes I want to configure my keybinds"?
 Push "start" to use the default"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

--- #20 fediverse/3477 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-570 
 
 you could also just lie to the computer
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #22 fediverse/772 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────────────────────────────┐
 │ CW: content-warnings-ai-trauma-woe-mentioned │
 └──────────────────────────────────────────────┘


 also applies for alt-text on pictures for people with screenreaders
 
 something something "if I play both sides, then I'm always right!"
four panel meme of a cute girl with sunglasses and a bow in her hair.  first panel she's like "nah, no thank you" while gesturing dismissively with her hand and turning away.  second panel is what she's against - it shows text saying: "Putting content warnings on your posts so that the data can be used in a dataset for an LLM that has been sanitized from political content thus depriving it of context in a post truth world"  third panel she's like "yeah, I like this one instead." and she's smiling and pointing a finger at the fourth panel, which reads:  "content warning your posts so that you don't hurt other people's feelings or trigger vulnerable people who are just trying to laugh at memes or have a decent life in the face of trauma and woe"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

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

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


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

--- #27 fediverse/4221 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-1582 
 
 🌀 :ms_confused: 🥴 🙃 😎 😋 🥰
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

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

--- #30 messages/1077 ---
═══════════════════════════════════════════════════════════════════════════════────
 mystical, not mstical [microsoft style]
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #32 fediverse/5612 ---
════════════════════════════════════════════════════════════════════════───────────
 you know, [you can just randomize your profile every time you log in] .... oh
 there was a stack overflow at the last one so
you know, you can just randomize your profile every time you log in  "something something stack overflow - what does an orange website that looks like it's from our parents generation have to do with ancient prehistoric mammals?"  wait are those the ones with the tusks  "yeah totally. Huh what a weird way to build a collection."
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #33 fediverse/5948 ---
════════════════════════════════════════════════════════════════════════════───────
 worth
picture of my cat sleeping on my lap at my computer desk.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #35 fediverse/3787 ---
══════════════════════════════════════════════════════════─────────────────────────
 arithmatic control flow
 
 If A, then B. Else C
a picture of a programmatic implementation of arithmatic control flow
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #36 messages/152 ---
═══════════════════════════════════════════════────────────────────────────────────
 Crazy, or just superstitious to a fault?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #37 fediverse/1636 ---
═════════════════════════════════════════════════════──────────────────────────────
 [Forged Alliance Forever does this automatically btw]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

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

--- #40 fediverse/4720 ---
════════════════════════════════════════════════════════════════───────────────────
 @user-882 
 
 it's a security hole though
 
 yeah... there ya go...
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #41 fediverse/369 ---
═════════════════════════════════════════════──────────────────────────────────────
 Gaming on Linux is never knowing for sure that a game will launch.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #42 fediverse/5588 ---
════════════════════════════════════════════════════════════════════════───────────
 did you know that if you actually tried to do magic you might just become good
 at meditating?
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #44 fediverse/180 ---
═══════════════════════════════════════════────────────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: politics     │
 └──────────────────────┘


 @user-162 you're right! otherwise it wouldn't be forced : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #45 fediverse_boost/6053 ---
◀─[BOOST]
  
  i post compulsively lmfao                                                   
  
                                                            
 similar                        chronological                        different 
─▶

--- #46 fediverse/6349 ---
═══════════════════════════════════════════════════════════════════════════════────
 if all you see are allies, slow down. 
 
 never come to a stop, even through sleep.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #47 fediverse/905 ---
═══════════════════════════════════════════════────────────────────────────────────
 having trouble naming things?
 
 just name it after it's inevitable logical conclusion! AKA the message you're
 trying to get across.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

--- #50 fediverse/3919 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 that feeling when your computers are just fucked and it's like... whatever,
 computers are fucked, I don't give a fuck
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #51 fediverse/1416 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-979 @user-980 
 
 they do it for power.
 
 power corrupts, and these profane desires they possess are the definition of
 evil.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #52 fediverse/185 ---
═══════════════════════════════════════════────────────────────────────────────────
 so... is dynamic typing just automatic typecasting?
 
 #programming
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

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

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

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

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


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

--- #58 fediverse/1559 ---
══════════════════════════════════════════════════─────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: what, gross  │
 └──────────────────────┘


 @user-1024 
 
 ....... you might want to distill it, first......
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

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


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

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


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

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

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

--- #63 fediverse/3561 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1209 
 
 oh sorry I must have lost the thread :neomouse_dizzy_confused:
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #64 messages/1201 ---
══════════════════════════════════════════════════════════════════════════════════─
 Whoever said that left and right shift had to do the same things?
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #65 fediverse/167 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-150 leave it dusty. if you're concerned, throw a can of compressed air
 at it and see what you can get done.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #66 fediverse/476 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-192 
 
 ... then let me give my money to the people who actually made the damned
 thing...
 
 Ah that's the tricky part, isn't it?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

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

--- #70 fediverse/2720 ---
═══════════════════════════════════════════════════════────────────────────────────
 ah nuts, they replaced my LLM setup with one that outputs gibberish. I swear
 it was working just a moment ago, and I didn't change it's configuration at
 all, and it's local only... right? so uh that's weird, surely it's not because
 they altered some value somewhere that I have no access to
 
 eh, maybe the newest technologies are overrated. At least, the software ones.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #71 fediverse/6145 ---
═════════════════════════════════════════════════════════════════════════════──────
 then, here's the cool part, if you share your software people might like it
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #72 fediverse/128 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 I'm not sure, but I once tried to design an algorithm that predicted
 prime numbers. I made this algorithm in my pursuit, but I couldn't figure out
 how to utilize it:
 
 https://www.desmos.com/calculator/h8oopoctnh
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

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

--- #75 fediverse/5962 ---
════════════════════════════════════════════════════════════════════════════───────
 all you need for mouse buttons is alt ctrl and... shift
 
 then bind shift to everything that you can.
 
 can also bind backspace and delete if you have enough keys
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

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

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

--- #79 fediverse/1762 ---
══════════════════════════════════════════════════════─────────────────────────────
 This was the first bash script I ever wrote.
 
 It's been updated a little, it was a bash alias first, but this is what it
 looks like now.
 
 Kinda shows what kinds of problems I needed to solve most.
A bash script that plays a random episode of Adventure Time from a terminal.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #80 fediverse/654 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-475
 
 perhaps you're right : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

--- #83 fediverse/5877 ---
═══════════════════════════════════════════════════════════════════════════────────
 I wish I could click on ls output to cd up or down
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #84 fediverse/1330 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-803 
 
 It sounds like you're describing consent, right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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


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

--- #87 bluesky#22 ---
══════════════════════════════════════════════════════════════════─────────────────
 what if bluesky users unionized and leveraged their collective power to
 "suggest" improvements to the software
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #88 fediverse/5036 ---
════════════════════════════════════════════════════════════════════───────────────
 give me syntax highlighting in a terminal based editor and that's all I need.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #89 messages/1091 ---
════════════════════════════════════════════════════════════════════════════════───
 (computer aided -omancy)
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

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

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

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

--- #93 fediverse/5445 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-1283 
 
 just make sure you add alt-text!
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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


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

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

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

--- #97 fediverse/890 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-192 
 
 I'm gonna make some right now : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #98 fediverse/3097 ---
════════════════════════════════════════════════════════───────────────────────────
 naturally occurring computers would never produce wires, or liquid cooling, or
 anything that ever required any sort of configuration or external
 environmental conditions.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #100 fediverse/3429 ---
═════════════════════════════════════════════════════════──────────────────────────
 configuring Linux is programming
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #102 messages/247 ---
════════════════════════════════════════════════───────────────────────────────────
 An LLM is just the mask that autistic people make
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

--- #105 fediverse/5862 ---
═══════════════════════════════════════════════════════════════════════════────────
 time to do some programming...
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

--- #107 fediverse/2893 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1385 
 
 all it would take is a second laser thing and software support !!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

--- #111 fediverse/1738 ---
═════════════════════════════════════════════════════──────────────────────────────
 ┌───────────────────────────┐
 │ CW: re: mh-, embarrassing │
 └───────────────────────────┘


 @user-889 
 
 perhaps you need a community, rather than a friend? just a guess
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #112 fediverse/3067 ---
════════════════════════════════════════════════════════───────────────────────────
 IT WORKED! I got my game working! Linux is so awesome! 🥰 😍
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

--- #115 fediverse/2974 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: uspol            │
 └──────────────────────┘


 currently on turbo mode trying to "find myself" because I figure I might not
 get a chance next year, so... whatever, right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #116 fediverse/3737 ---
═════════════════════════════════════════════════════════──────────────────────────
 Nix the complexity.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #117 fediverse/5998 ---
════════════════════════════════════════════════════════════════════════════───────
 I should conjure x11 from source. I bet they have a lot of useful utilitudes
 that I can configure. I wonder if Gentoo can do it for me? nahhhhh I'll just
 write my own script, it'll only take me like a couple hours per piece of
 software
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #118 fediverse/1129 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌────────────────────────────────┐
 │ CW: silly-autism-brain-thought │
 └────────────────────────────────┘


 misskey? more like kissmey amiright
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #119 messages/1230 ---
══════════════════════════════════════════════════════════════════════════════════─
 The machine cult is just when everyone's job is building and maintaining the
 computer.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #120 fediverse/5466 ---
═══════════════════════════════════════════════════════════════════════────────────
 I'm pretty bad at threading needles. I'm more like... "alright, what's next on
 the list?"
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

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


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

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

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

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

--- #126 fediverse/2880 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 linux is not a viable operating system for people who can only troubleshoot by
 restarting their computer because every time they plug in a new audio device
 suddenly their headphones don't work.
 
 fucking alsa, fucking pulse, the entire stack is fucked
 
 (and yes I know it's a very difficult problem)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #127 fediverse/6057 ---
════════════════════════════════════════════════════════════════════════════───────
 gonna touch grass. maybe do some programming. ttyl
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

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

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

--- #131 fediverse/5403 ---
═══════════════════════════════════════════════════════════════════════────────────
 I expect nothing less from my people and prepare for theirs to be dumb as
 bricks.
 
 I am often disappointed in both directions, but that's okay, because I planned
 for that too! Maybe that wasn't too smart of me, but I'd expect nothing less
 than dumb mistakes made once from myself 😋 🥴 :ms_confused: 🤪
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

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

--- #134 fediverse_boost/5500 ---
◀─[BOOST]
  
  unhinged rants per random number                                            
  
                                                            
 similar                        chronological                        different 
─▶

--- #135 fediverse/5005 ---
════════════════════════════════════════════════════════════════════───────────────
 ┌──────────────────────────────────────────┐
 │ CW: re: spoilers for "the last graduate" │
 └──────────────────────────────────────────┘


 @user-192 :ms_confused: 🤩 😭 🥰 🤯 I hope I get to read them all
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #136 fediverse/6259 ---
══════════════════════════════════════════════════════════════════════════════─────
 AI feels like magic
 
 [to me]
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

--- #138 fediverse/5295 ---
══════════════════════════════════════════════════════════════════════─────────────
 @user-1796
 
 "You again? I thought we fixed the... Ah, well, nevermind, let's just wipe her
 again and hope she turns out evil this time."
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

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

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

--- #141 fediverse_boost/6017 ---
◀─[BOOST]
  
  Linux admins when they have to use Windows: :/                              
                                                                              
  Windows admins when they have to use Linux: :\                              
  
                                                            
 similar                        chronological                        different 
─▶

--- #142 fediverse/3658 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-883 
 
 yeah I probably should have said "tiara" hehe
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #144 fediverse/758 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-8 
 
 sucks... I hope they fix your power and water soon. 
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #146 fediverse/142 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-135 I only sorta know what that means 🙃​
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #147 messages/1171 ---
══════════════════════════════════════════════════════════════════════════════════─
 build it into the filesystem...
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

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


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

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

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

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


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

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

--- #153 fediverse/6172 ---
═════════════════════════════════════════════════════════════════════════════──────
 ┌──────────────────────┐
 │ CW: re: AI-mentioned │
 └──────────────────────┘


 AI users be like:
 
 "hello, can you solve all my problems and do all the work for me? I'll give
 you relatively vague instructions in return, and maybe throw 20$ per month at
 your owners if they're lucky."
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #154 fediverse/129 ---
═══════════════════════════════════════════────────────────────────────────────────
 so you're telling me you give Microsoft (a company known recently for AI
 development) full access to your webcam and microphone whenever your computer
 is on?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #155 fediverse/3186 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-246 
 
 me too, probs
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #156 fediverse/3680 ---
═════════════════════════════════════════════════════════──────────────────────────
 it's probably a good idea to write pseudocode, then real code, instead of
 starting with real code, and bugfixing something incomplete and more difficult
 to reason with.
 
 unless you write real code easier than pseudocode. idk do what works for you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #158 fediverse/102 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-5 why not just use a keyboard? 🙃​
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #159 fediverse/2295 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────────────────┐
 │ CW: re: your favorite text editor │
 └───────────────────────────────────┘


 @user-1218 
 
 can echo into a file if nothing else, though that's quite a big hassle =P
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #160 fediverse/2900 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────────────────────────────────┐
 │ CW: capitalism-mentioned-AI-dataservers-mentioned │
 └───────────────────────────────────────────────────┘


 what if all the AI advancements they're doing are just them building more
 hardware infrastructure in datacenters and not actually improving the software
 that much
wouldn't that be neat I think it would because it means once they collapse under the weight of their own ambitions that hardware's gotta go somewhere and knowing them they're probably going to ship it to south-east asia to be "recycled" (read: burnt with the metals salvaged) instead of selling them second hand because you know they can't really justify the business expense of selling stuff like that and besides what if some driver or something on the firmware was proprietary do you really want to pay techs to wipe every single thing off of them and plus who's gonna categorize and sort them according to their form and function that's just extra payroll and listen the company's not doing so hot anyway I mean we're literally shutting down but yeah sure we'll find a way to justify spending all that non-existent dosh so some hippies can feel better with their servers they didn't build or justify with their profit-producing capitalist enterprise that we've built with our own two hands well really the hands of everyone else but like, they're not actually doing the building the REAL work of course happens in board rooms like this one where we spend MINUTES and HOURS sometimes discussing how to get things in order and aligned to both of our goals because that's the REAL work that has to happen in order for stuff to get done, you know it's true yeah I thought so anyway what are you doing after this meeting wanna get lunch it's almost quitting time at 2pm
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #161 bluesky#27 ---
═════════════════════════════════════════════════════════════════════════════════──
 you can have as many processes running on a computer as you please, just make
 sure they're all named chrome.exe so the user doesn't suspect a thing.
                                                           ─┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════════─┘

--- #162 fediverse/4829 ---
═════════════════════════════════════════════════════════════════──────────────────
 check out my shuffle-all-music script
a picture of a bash script which shuffles all the music files in my music directory and also displays the title in a different color for each song, which is sorta like slightly changing the flavor of the song without changing the sound  oh it also saves the names into a list of "recently played" songs and every time you run the script it deletes the list. so it only like, saves the last time you ran the script.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

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

--- #165 fediverse/6373 ---
═══════════════════════════════════════════════════════════════════════════════────
 --help is always easier to read than "man"
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #166 fediverse/789 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────┐
 │ CW: politics         │
 └──────────────────────┘


 found this silly diagram in my pictures folder for no reason whatsoever, hehe
 so silly amiright
 
 (guess which square I'm in lmaooooo)
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

--- #169 fediverse/2918 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-192 
 
 You're cool!
 
 I always thought of abstracting something as "applying intelligence to hasten
 logical conclusions"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #170 fediverse/2496 ---
═══════════════════════════════════════════════════════────────────────────────────
 ... zzz ZZZ zzz ...
 
 if sleep won't come I'll write down the thoughts that are keeping me up. that
 usually makes it easier.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #171 fediverse/6228 ---
══════════════════════════════════════════════════════════════════════════════─────
 Oh, I guess I should change my profile pic. Right...
Your body adjusts to the motion you put it through. Your body is your temple, you live in your temple, and your temple is worthless without acolytes who tend to it.  The temple is a nation, the nation is the people, and the people are the land. Tend to them and they will tend to you. Neglect them and they will struggle on - nourish them and they will grow.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #172 messages/948 ---
═════════════════════════════════════════════════════════════════════════──────────
 [a while later]
 
 what if every instance of the OS acted as a git repo for all the other
 people's programs
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #173 fediverse/367 ---
═════════════════════════════════════════════──────────────────────────────────────
 @user-243 
 
 good point, intrusive thoughts >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #174 fediverse/316 ---
═════════════════════════════════════════════──────────────────────────────────────
 ┌──────────────────────┐
 │ CW: mathematics      │
 └──────────────────────┘


 ask not "what can logarithms do for you" but rather "what shape does a
 logarithm make"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

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

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

--- #177 fediverse/5078 ---
════════════════════════════════════════════════════════════════════───────────────
 there comes a point where you can tell yourself "alright, me, no more new
 projects. only working on old ones. just keep adding stuff, pruning stuff
 away. grow your bonsai computer. make it neat. or worse. up to you. see how
 you do."
 
 ... or am I the only one who can't stop conceptualationating?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

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

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


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

--- #181 messages/679 ---
═════════════════════════════════════════════════════════════──────────────────────
 What if we paid people to administer a database of people who needed mutual
 aid so we could keep track of them, organize them, and care for them?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #182 messages/440 ---
══════════════════════════════════════════════════════─────────────────────────────
 A Mastodon server owned by the employees and only available to people who work
 at the company (people who once worked there can see some posts but not all)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #184 fediverse/6168 ---
═════════════════════════════════════════════════════════════════════════════──────
 don't mind me, just weaponizing plurality
 
 leveraging, please say leveraging next time
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

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

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

--- #187 fediverse/3064 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 @user-246 
 
 you know you two could have spared yourselves all this trouble if you just
 ScReEnShOtTeD the code! Then it'd be easy to see with your very
 not-visually-impaired eyeballs on your graphical user interface, considering
 of course that everyone has perfectly functional eyeballs and perfectly visual
 graphical user interfaces
 
 /s of course
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #188 fediverse/3800 ---
══════════════════════════════════════════════════════════─────────────────────────
 @user-1352 
 
 You're absolutely right, the compiler knows better than me! Certainly the
 compiler doesn't know best, but certainly the compiler knows better than me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

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

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

--- #192 fediverse/5870 ---
═══════════════════════════════════════════════════════════════════════════────────
 ┌──────────────────────────────────────────────────────────────────────────────┐
 │ CW: scary-probably-not-cursed-I-think-sex-mentioned-politics-mentioned-other-things-gestured-at-but-not-mentioned-explicitely │
 └──────────────────────────────────────────────────────────────────────────────┘


 every timestamp is a note left behind saying "I was here at this time at this
 location"
 
 alibis go both ways
a screenshot of a snippet of "messages-to-myself" from the past week or so. There isn't enough context window to alt-text my way toward describing the vibe to the blind, so you'll have to screen-reader it, sorry babes. BUT here's a snippet, as much as the 1500 character limit will allow:  Ms. Menardi  I once wrote that fetishes are wrong because they distract you from making families or whatever. That's... okay? it's okay to be wrong? it's okay to be a little evil.  it's like rock climbing, bouldering, or adventuring. If you disturb the environment, you lose points. Disturbing the environment is evil, but, it's okay to do so sometimes.  similarly, fetishes aren't wrong because they disturb the environment. They're wrong because they're a deviation from the right and the norm and the biological and the natural and that's okay, because humans are anything but natural. Relish in your stupidity, celebrate your diversity, and contemplate the lessons of antiquity. This is the gift that humans possess, the ability to be different.  Fri, Sep 5, 2025  If i had a job i would buy Anbernics for homeless people  "well done!" he said, and i can't stop thinking about how happy it made me  Sun, Sep 7, 2025  Three hikes, two boat rides, two weeks. I'm exhausted  Mon, Sep 8, 2025  You should not, generally, spend time in places covered in bird poop or poison oak. You should also avoid abandoned wooden structures or old fallen logs, because spiders. Also, don't spend too much time on islands m
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

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

--- #195 fediverse/6418 ---
═══════════════════════════════════════════════════════════════════════════════────
 great discoveries are just rants that end with something unknown or an
 unsolved question [breakthrough]
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #197 fediverse/3226 ---
════════════════════════════════════════════════════════───────────────────────────
 if your man page is longer than a list of options and their usage and a
 paragraph or twenty of how to use the software... then you need to abstract,
 and break your code into multiple purpose-built applications.
 
 do one thing, and do it right. alternatively, do one set of things, and do
 them concisely.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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