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

=== SIMILARITY RANKED ===

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

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

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

--- #4 messages/186 ---
═══════════════════════════════════════════════────────────────────────────────────
 It's obfuscated, such that you cannot know the totality of their purpose for
 you (via your data)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

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


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

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

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

--- #10 fediverse/572 ---
══════════════════════════════════════════════─────────────────────────────────────
 Hi, I'm learning about semaphores right now and trying to explain them to a
 friend. But I only sorta understand how they work - can anyone look at this
 pseudocode and tell me if I'm on the right track?
Some C pseudocode working through the semaphore design pattern. Here's the text of the pseudocode:  /* no lock example */  void start_thread(int* x) {   *x += 1; }  int main() {   int x = 0;   for (1000 times){     start_thread(&x);   }   print(x); }  /* in this case you have no idea what will print because thread A will take x and be like "ah yes it's 423" and then in the next instruction it'll be like "I'll increment this to be 424" and in the next one it'll say "okay now it's time to store 424 in the variable X" but like... there's a thousand threads all doing that at the same time, so odds are you'll have 5 that are like "ah yes this is 423 I'll set it to 424" */  /* not a good plan. Need a lock, so only one thread can use it at once. */ /* mutex example: */  void start_thread(int* x, int* x_mutex) {   *x += 1;   *x_mutex = 0; }  int main() {   int x = 0;   int x_mutex = 0;   for (1000 times){     while (x_mutex != 0){ } /* do nothing */     x_mutex = thread_id;     start_thread(&x, &x_mutex);   }   print(x); }  /* this should print 1000, but it's basically as slow as doing it single threaded. */  #define MAX 10  void start_thread(int* x, int* x_semaphore) {   *x += 1;   *x_semaphore += 1; }  int main() {   int x[MAX];   int x_semaphore = MAX;   for (1000 times) {     for (int i = 0; i < MAX; i++) {       x_semaphore -= 1;       start_thread(&x[i], &x_semaphore);     }     while (x_semaphore != MAX) { } /* do nothing */   }   int value = sum(x, MAX);   print(value); }
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #11 fediverse/19 ---
═══════════════════════════════════────────────────────────────────────────────────
 @user-28 I think about this a lot
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════───────────────────────────────────────────────┘

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

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

--- #14 fediverse_boost/6162 ---
◀─[BOOST]
  
  i always somehow manage to succeed at things because i'm too silly to realize i was supposed to fail lmao  
  
                                                            
 similar                        chronological                        different 
─▶

--- #15 messages/111 ---
══════════════════════════════════════════════─────────────────────────────────────
 When someone remakes content into a different expression like a remake or
 reboot or whatever it gives a different message in its meaning - some
 circumstances and characters can apply for more than one message I'm it's
 meaning
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

--- #18 fediverse/4226 ---
════════════════════════════════════════════════════════════───────────────────────
 This should go without saying, but...
 
 I'm here for you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #19 fediverse/1034 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-192 
 
 be careful, recursion can cause stack overflows.
 
 better to run function pointers from a loop. That way you can operate as long
 as necessary. Just make sure you don't get in an infinite loop...
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #21 fediverse/4524 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌───────────────────────┐
 │ CW: chatGPT-mentioned │
 └───────────────────────┘


 phew that takes a load off my mind : )
A screenshot of a chatGPT conversation  the user asks "How about politically? Are they a radical individual?"  the web search results filtered through a large language model replies: "Based on the public information, there is no public record of Ritz Menardi's political views or affiliations. Their online presence primarily focuses on technology, music, and creative writing, without any indication of radical political beliefs or activities."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #23 fediverse/2106 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-192 
 
 ... I've said too much, the thought-loop police are onto me. I must away!
 swoop cape
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #25 fediverse/2112 ---
══════════════════════════════════════════════════════─────────────────────────────
 cops think we're gullible, just saying
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

--- #28 fediverse/2668 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────────────────────────────────────────────────────┐
 │ CW: re: meta-adjacent, but fedi and Internet cultures in general too │
 └──────────────────────────────────────────────────────────────────────┘


 @user-570 
 
 what does fash-jacket mean? :O
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

--- #31 fediverse/3173 ---
════════════════════════════════════════════════════════───────────────────────────
 you've heard of an array of function pointers, yes,
 
 but have you ever heard
 
 of an array of GOTO labels?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #32 fediverse/738 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-559 
 
 I have no idea what either of those mean 
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #34 fediverse/1293 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────────────────────────────────────────────────────────────┐
 │ CW: re: fedi meta, the bad space, fediblock, misleading and untrue cw, uspol, speedrunning discourse, industrial revolution, aquarium tips │
 └──────────────────────────────────────────────────────────────────────────────┘


 @user-921 
 
 where tf is all this discourse I always hear about like what are ya'll talking
 about
 
 ... are you talking about me
 
 [silly intrusive thoughts teehee pay no mind]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #35 fediverse/1384 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 no? ! ?
 
 EDIT: but now I have xD xD
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

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

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

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

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

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

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

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

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

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

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

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


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

--- #49 fediverse/6141 ---
═════════════════════════════════════════════════════════════════════════════──────
 fediverse software that downloads every post you've ever seen to your hard
 drive in an easy-to-read text file so you can go back and look at it later
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

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

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

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


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

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

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

--- #55 fediverse/870 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-95 
 
 that makes sense to me!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #56 fediverse/747 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-258 
 
 to that I say "teehee"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #57 fediverse/4842 ---
═════════════════════════════════════════════════════════════════──────────────────
 this is what "taking it seriously" looks like to me
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

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

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

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

--- #62 fediverse/3052 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1201 
 
 you are all of these things to me
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #63 fediverse/1558 ---
══════════════════════════════════════════════════─────────────────────────────────
 Just because you haven't won yet, doesn't mean you've lost.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #64 fediverse/6178 ---
═════════════════════════════════════════════════════════════════════════════──────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 ... wait, shit I forgot I was about to go do a thing, ttyl
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #65 fediverse/1977 ---
══════════════════════════════════════════════════════─────────────────────────────
 functions should be forced to describe the context of why they were being
 called. I think it would help debug a lot if we supplied a reasoning for each
 and every request [function call] that we made. We might even be able to parse
 them into semantic pyramids which we could sorta use to estimate [tree-like
 scanning] how and why the program did do wrong.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #66 fediverse/2459 ---
═══════════════════════════════════════════════════════────────────────────────────
 this is the simplest implementation of scalable anarchism I could think of.
 tell me how it's flawed so I can improve it before I need it.
algorism is a political and economic philosophy designed to wrest power from those who may be corrupted by it, and restore dignity and agency to all of humanity.  It accomplishes this through several layers of abstraction, of votes, of control, of decisions. What do people need? How could we improve? Is there something more we could do?  The idea is to negate bureaucracy by accomplishing goals in an ad-hoc fashion rather than rely on legalism for institutional execution. Projects, not operations.  Society shall be organized into tiers of rotating peers chosen by vote. Each tier sends their top two most voted for up a level to the next tier of organization. the duty of each tier is to provide for the needs and accomplish the demands of each of their lower tier allies. In addition they should provide what they can to their representatives, who offer them on the tier above.  If a need or demand cannot be met by the team of reps, the request is passed upward. This process can be accomplished with paper and pencil, but it's much better to automate and be public.  If desired, there is a queue system to help with the allocation of resources. This system rewards patience and conservation while still allowing for rapid acquisition. Pick two: good, cheap, fast.  It includes also a recycling system - the more you give back in clean and working order, the greater the options available to you.  It is a system of distribution, not control.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

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


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

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


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

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


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

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

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


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

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

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

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

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

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

--- #80 fediverse/2070 ---
══════════════════════════════════════════════════════─────────────────────────────
 I personally think design patterns are more interesting than portfolio
 projects.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

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

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

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

--- #87 fediverse/5514 ---
═══════════════════════════════════════════════════════════════════════────────────
 this, but with my "ideas" or whatever
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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


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

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

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

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

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

--- #93 fediverse/1213 ---
════════════════════════════════════════════════───────────────────────────────────
 why did g0d see fit to put the zero right next to the o key
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #94 fediverse/798 ---
═══════════════════════════════════════════════────────────────────────────────────
 I'm doing a game jam, so... see ya in a week
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

--- #97 fediverse/345 ---
═════════════════════════════════════════════──────────────────────────────────────
 If you want to write object oriented C, just make one file per class and use
 static functions for private methods.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

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

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

--- #100 fediverse/4140 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-883 
 
 whoa I sorta know what that means
 
 you're so cool 🤩
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #101 fediverse/4960 ---
══════════════════════════════════════════════════════════════════─────────────────
 vim plugin where every tab changes the font color
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

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

--- #103 fediverse/829 ---
═══════════════════════════════════════════════────────────────────────────────────
 you're ridiculous, you know that? so selfish. so obscene.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

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

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

--- #108 fediverse/4399 ---
═════════════════════════════════════════════════════════════──────────────────────
 ... Dare for the Bright Age, though "don't forget to be awesome" works too I
 guess.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #109 fediverse/4474 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-1268 
 
 if you know how to program in C this is a good resource for building
 networking applications:
 
 https://beej.us/guide/bgnet/
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #110 fediverse/1960 ---
══════════════════════════════════════════════════════─────────────────────────────
 Source code is like, the worst way to view code, but I can't think of anything
 better, so whatever
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #112 fediverse/1597 ---
═════════════════════════════════════════════════════──────────────────────────────
 hey a couple months ago there was this really cool visual programming language
 posted here that was like, windows aero themed and it was super cute - does
 anyone know what that was called or have a link to it?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #113 fediverse/39 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 That makes sense to me. I'll have to think about how to generalize
 that, hmmmm... It would only work for numbers that have even square roots
 right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #114 fediverse/1544 ---
══════════════════════════════════════════════════─────────────────────────────────
 @user-1015 
 
 Meanwhile, this is me:
screenshot of a mastodon post by Ritz-Menardi@gabrilend@tech.lgbt  number of tabs open: fifteen thousand  number of tabs in regular use: five  average distance between tabs: fifteen
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #115 fediverse/3885 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌──────────────────────┐
 │ CW: politics-implied │
 └──────────────────────┘


 @user-1617 
 
 Of course they're losing. I mean, have you seen their candidate? woof.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

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

--- #118 fediverse/6320 ---
══════════════════════════════════════════════════════════════════════════════─────
 ┌──────────────────────────────────────────────────────────────────────────┐
 │ CW: cannabis-mentioned-some-random-portion-of-everything-I-say-mentioned │
 └──────────────────────────────────────────────────────────────────────────┘


 ask an llm what a crazy man thinks
 
 https://ritz-menardi.neocities.org/words/words dot peehdeff
 
 I actually think I'm sane btw
 
 I just smoke a lot of weed
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

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

--- #121 fediverse/143 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-78 I thought it was thursday :O
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

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

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

--- #125 fediverse/3782 ---
══════════════════════════════════════════════════════════─────────────────────────
 @user-246 
 
 ... oh, Curry's a language.
 
 I thought you were hungry.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

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

--- #128 messages/243 ---
════════════════════════════════════════════════───────────────────────────────────
 I respected nature, and I 
 
 ohhhhh I get it
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

--- #131 fediverse/2729 ---
═══════════════════════════════════════════════════════────────────────────────────
 haha it's always as soon as I open my resource monitor, the fans die down xD
screenshot of a resource monitor where there's a sharp vertical line right as the program is opened and the graph starts, implying the task given to the CPU was cancelled as soon as the resource monitor was opened
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #133 fediverse/4811 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌────────────────────────────┐
 │ CW: re: politics-mentioned │
 └────────────────────────────┘


 @user-1074 
 
 georgism is pretty similar to liberalism if I understand it correctly. I think
 it could be a neat simple way to say "hey what if we taxed landlords" and
 that's good enough for a start.
 
 by no means is it the desired end-state, though.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #134 fediverse/2101 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-192 
 
 ... wait, who does that? Do you think they're a bot?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #136 fediverse/950 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-192 
 
 multidimensional arrays aren't too hard, it gets a bit more complicated when
 you need multidimensional slices, but once you get your head around it it
 comes easier.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #137 fediverse/5563 ---
════════════════════════════════════════════════════════════════════════───────────
 I exist, now, at the peak of my gluttony.
 
 look ye, this is all that I demand, and in return you get... whatever I can
 offer.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #139 fediverse/2331 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1230 @user-1007 
 
 what the, all I see are ⭐
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #140 fediverse/4117 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-92 
 
 emphasis on "incomprehensible" for my part
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #142 fediverse/5373 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌─────────────────────────┐
 │ CW: re: nazis-mentioned │
 └─────────────────────────┘


 @user-138 
 
 I'm sure canadia had something similar...!
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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


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

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

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

--- #146 fediverse/5853 ---
═══════════════════════════════════════════════════════════════════════════────────
 everyone's all like "everything sucks" but I'm feeling confidence and a kind
 of... externalized vigor? that's sweeping me off my feet. We'll see what
 tomorrow brings, in the general sense.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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


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

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

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

--- #150 fediverse/5961 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-138 
 
 maybe it's evil hackers - idk that's beyond my expertise - good luck : )
 
 (I'd need to see the piece of technology to work on it. I'm a hardware kinda
 [girl, but pronounced guy])
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #152 fediverse/6258 ---
══════════════════════════════════════════════════════════════════════════════─────
 if your computer's resource demands are light, like linux cli style, then the
 rest of your computing resources can be used for collective projects. we just
 gotta think of what some of them are... HMMMM WHAT IF WE ALL WORKED ON
 BUILDING A BIG BRAIN WITH EACH OF OUR INPUT COMPUTERS AS INPUT?
 
 yeah ease off a bit there ][bigslider[]
 
 =============== stack overflow =============
haha I'm too much to read  if your computer's resource demands are light, like linux cli style, then the rest of your computing resources can be used for collective projects. we just gotta think of what some of them are... HMMMM WHAT IF WE ALL WORKED ON BUILDING A BIG BRAIN WITH EACH OF OUR INPUT COMPUTERS AS INPUT?  yeah ease off a bit there ][bigslider[]  =============== stack overflow =============
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #153 messages/656 ---
═════════════════════════════════════════════════════════════──────────────────────
 ... I'm going to sit in bed and eat cheetos all day.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #155 fediverse/2611 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: re: meta         │
 └──────────────────────┘


 @user-1153 
 
 what kind of meta are you referring to? instance stuff?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #156 fediverse/2145 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-192 
 
 no I didn't know that was a thing
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #157 fediverse/3706 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-192 
 
 ... that makes sense. Downside is as soon as you do, suddenly there's a 0%
 chance you'll remember which goes where.
 
 I guess that's why you keep the box, lmao xD
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

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

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

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

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

--- #164 fediverse/3473 ---
═════════════════════════════════════════════════════════──────────────────────────
 holy carp I'm so good at this game!
a picture of win / loss statistics for the game Star Realms (digital) - the pictured statistics include:  total games: 1979 total wins: 1043 win rate: 52.7%
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #165 fediverse/3034 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 I've messed around with Bevy and the library most similar in C is Raylib. in
 Lua it'd be Love2D I think.
 
 I love the idea of those systems. I haven't built a full game using them but I
 can conceptualize operations within them easier using a framework like that
 versus a game engine like Godot.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #166 fediverse/3701 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 haha openstreetmap KNOWS
 
 tbh if you know anything about me online... you know how non-neurotypical I am
 =P
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

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

--- #170 fediverse/6108 ---
═════════════════════════════════════════════════════════════════════════════──────
 trusting someone doesn't mean you'll do what they say. it means you'll listen.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

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


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

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

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

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

--- #175 fediverse/1333 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-944 @user-803 
 
 I'm sorry that what I said resonated with you : (
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

--- #178 fediverse/3475 ---
═════════════════════════════════════════════════════════──────────────────────────
 you know that feeling when you realize the person you're talking to is a
 demon? sometimes I think they don't even realize it. other times, they do.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #180 fediverse/6458 ---
═══════════════════════════════════════════════════════════════════════════════────
 gonna pre-emptively backup my fediverse archive haha just-in-case I get banned
 for spamming or something teehee (totally reasonable teebeeh)
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #182 fediverse/2114 ---
══════════════════════════════════════════════════════─────────────────────────────
 ... unrelated, but hey check out this cool social media collage thing that I
 made!
a long collage of various social media posts. Unfortunately they were not preserved when I turned my computer off, but their record was saved because I screenshotted them before closing the window. They're all things that I said, or mostly things that I said, also some things from my friends.  I didn't get permission to post them, but what they said was relatively innocuous. Just the stuff that they wouldn't mind sharing, the stuff that you should go to their profile website if you'd like to know more.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #183 fediverse/4374 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 anything I do I'd do for free for a leftist
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #185 fediverse/5435 ---
═══════════════════════════════════════════════════════════════════════────────────
 okay flag is cool and all but what if
a picture of a flag with three horizontal stripes, to represent the breadth of a large country.  the top stripe is black, to represent the night sky  the middle stripe is red to represent the people of this earth  the bottom stripe is blue to represent the rainfall as it pools below our feet
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #186 fediverse/5437 ---
═══════════════════════════════════════════════════════════════════════────────────
 okay flag is cool and all but what if
a flag with three colored bars, oriented vertically left to right.  on the left, is a black bar, symbolizing blackness.  on the middle, is a red bar, symbolizing things that are red. and also passion because sex is red.  in the right, there is placed with due care a blue. that blue is bar. it is blue and represents water because water is clear and clearly blue.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #187 fediverse/938 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-649 
 
 same... sometimes it feels like I step on toes that I didn't know existed! I
 got tired of walking on egg shells so now I just try and religiously put
 content warnings on things that feel intense.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

--- #190 fediverse/3696 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────┐
 │ CW: mental-health    │
 └──────────────────────┘


 why does my fridge keep saying "you're dead to me"...?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

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

--- #194 messages/931 ---
═════════════════════════════════════════════════════════════════════════──────────
 <*type type type type*> oh see it's writing music.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #195 fediverse/6208 ---
══════════════════════════════════════════════════════════════════════════════─────
 @user-246 
 
 molybdenum just feels like a fake word
 
 it's so much fun to say though!
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

--- #197 fediverse/3864 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌─────────────────────────┐
 │ CW: re: drugs-mentioned │
 └─────────────────────────┘


 @user-1218 
 
 my ex boyfriend told me to
 
 also I thought it would be a good idea so I could find a job, but now I have
 one (sorta) soooo
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

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

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