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

=== SIMILARITY RANKED ===

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

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

--- #3 fediverse/4259 ---
════════════════════════════════════════════════════════════───────────────────────
 source code should be like a story
 
 "here's why we did what we did with our architecture"
 
 and as it's being written, it may be altered in many different places at once
 - git style.
 
 parts of it could rhyme,
 
 if they wanted to show parts that were really difficult but easy to summarize
 because it's mostly just a lot of boring work y'know like writing getters and
 setters and doing the testing pre-deploy environments
 
 ,,, they could selectionize
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #4 fediverse/5636 ---
════════════════════════════════════════════════════════════════════════───────────
 I think it's ironic how I ended up posting a "things I almost posted"
 screenshot directory somewhere other than where I almost posted them.
 
 and all they saw were the outtakes.
 
 I bet they'd see a completely different point of me,
 
 but they never talk to me
 
 so they don't know me.
 
 oh well, alas, it's fine I'm sure I'm being designed.
 
 who can say, I am but at productive play, please react so I can do ongoing
 story. I learn from each and every encounter I encounterate.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #5 fediverse/1786 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 @user-883                                                                        │
 Yes of course I have : )                                                         │
 If you've seen my website, you'll know that I'm fond of writing alongside        │
 visual elements as well. 🥰                                                       │
 I think that Youtube is only as you describe (clickbait) if you engage with      │
 their algorithmic features. I primarily use them as a video-hosting service,     │
 where I put my videos and link to from elsewhere. I hardly see the kinds of      │
 things you're concerned about, though if ads became unblockable then I might     │
 begin to resent them a bit more.                                                 │
 You're right when you say that editing videos is harder than text - text is      │
 probably the easiest medium to work with and refine! I also make silly           │
 mistakes sometimes hehe... But, well, I'm not trying to argue that video is      │
 better than text, but rather that they are used for different purposes. And      │
 video is important for our digital ecosystem. So it makes sense that something   │
 we all share should be shared, if not collectively then at least through         │
 protocol-based-interaction, such that anyone might connect in whatever ways      │
 they wished.                                                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

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

--- #7 fediverse/3770 ---
══════════════════════════════════════════════════════════─────────────────────────
 for every "I was there. I helped make it happen" we need at least a couple "I
 was there. I saw the whole thing go down"s because like, nobody's gonna
 believe a belligerent, even if they're on the defensive.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #8 fediverse/3401 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 thank you, that's good to hear 🥰
 
 EDIT: I was worried for a moment haha I guess my reach is pretty small so idk.
 I think people stopped screenshotting my posts and putting them elsewhere
 after I dashed everyone's hopes on my sleeve. And honestly I kinda deserve it
 haha like what was I even thinking
 
 ... I wasn't thinking I was just feeling, and doing. Oh well.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #11 fediverse/6271 ---
══════════════════════════════════════════════════════════════════════════════─────
 ┌───────────────────────────────────────────────────────┐
 │ CW: re: hypothetical worst case fascism reality check │
 └───────────────────────────────────────────────────────┘


 @user-641 
 
 it's practice. you never know when you might need to blend in. really it's
 just useful as discipline, good practice to be in. I think it's okay if we
 reduce our own functionality? actually? sometimes it's good to use different
 email clients. hey do you know how to mathematically encrypt things well
 neither do I because the designers of the computer system decided that wasn't
 a very common usecase I guess.. jmean it's not like they'd spend all that
 computer resources [THEY'RE SO FAST] on thinking about correlations in your
 predicted pathway narratively through life. "ah help I'm in a psyop" haha yeah
 we do those all the time "so uhhhh I guess we'll just talk to people and see
 how they do?" wow okay it's sure nice to be part of a civil government, I
 think we can find our way to the lumber producers just fine thank you very
 much.
 
 ... oops sorry, a baby did electronics arts (challenge everything) I'm a
 little silly don't mind me brb I gotta go see~
 it's practice. you never know when you might need to blend in. really it's just useful as discipline, good practice to be in. I think it's okay if we reduce our own functionality? actually? sometimes it's good to use different email clients. hey do you know how to mathematically encrypt things well neither do I because the designers of the computer system decided that wasn't a very common usecase I guess.. jmean it's not like they'd spend all that computer resources [THEY'RE SO FAST] on thinking about correlations in your predicted pathway narratively through life. "ah help I'm in a psyop" haha yeah we do those all the time "so uhhhh I guess we'll just talk to people and see how they do?" wow okay it's sure nice to be part of a civil government, I think we can find our way to the lumber producers just fine thank you very much.  *... oops sorry, a baby did electronics arts (challenge everything) I'm a little silly don't mind me brb I gotta go see~*
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #12 fediverse/277 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌─────────────────────────────┐
 │ CW: personal-youtube-habits │
 └─────────────────────────────┘


 I most often find the most important insights upon my 2nd time learning them.
 it's kinda nice to have a poor memory sometimes, because I can relearn things
 that once had been lost, and in doing so reach different conclusions than the
 first time.
 
 the problem about learning from YouTube for me is that their algorithm
 de-prioritizes videos you've already seen. darnnnn guess anything I learned
 from a Vsauce video or w/e will be forever lost in my mind... alas
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #13 fediverse/3842 ---
══════════════════════════════════════════════════════════─────────────────────────
 ┌────────────────────────────────┐
 │ CW: socialist-future-ramblings │
 └────────────────────────────────┘


 "back in my day this dense urban housing area was just houses as far as the
 eye could see... which wasn't far because there were houses in the way, but
 you get the idea."
 
 uhhuh yeah that sounds like it would have taken a lot of time to walk anywhere
 
 "yes that's true! we ended up driving cars to do our grocery trips. It was a
 little wasteful but I kinda liked the feeling of driving a car? It became
 normal after a while but now that driving is rarer I still miss it."
 
 well the motion simulators at the mall have a driving sim, we could spend some
 time there if you want? I'm busy for the next week because I have an intensive
 D&D session in the mountain that lasts from monday to wednesday and
 thursday through friday I'm visiting my mom down in skoodedlypawsonville, and
 saturday and sunday I'm working at my job which doesn't pay me because why
 would it, right? but I'm free after that.
"the simulators are quite fun... Much better than the real thing because you get all the inertia and none of the danger. Plus machine guns and blue shells, those are pretty neat."
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

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

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


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

--- #17 fediverse/3841 ---
══════════════════════════════════════════════════════════────────────────────────┐
 ┌────────────────────────────────────┐                                           │
 │ CW: socialism-recycling-mentioned1 │                                           │
 └────────────────────────────────────┘                                           │
 "I think I'm going to quit my job at the recycling center. Everyone there is     │
 just a little too catty for me. I think they like the verbal sparring but it     │
 just gets a little tiresome after a while."                                      │
 oh, sorry to hear that. Well if you still want to help out there's plenty of     │
 work to do. I could set you up at another recycling center nearby too, if        │
 you'd like...?                                                                   │
 "well, I like the idea of universal recycling. It was a little annoying when     │
 people would put food waste in with the clothing donations, and this one time    │
 I found like 8 bags of cat litter inside of a washing machine. Spent like an     │
 hour vacuuming everything out, which... actually wasn't bad. Kinda felt a        │
 little cathartic to clean it so thoroughly."                                     │
 "on the other hand I would like to use my mind a bit more, my creative           │
 projects are kinda in a slump so I figure I could use my body at home and my     │
 mind at work. I've been meaning to build a desk out of some spare hardwood I     │
 snagged at work but I haven't gotten around to it."                              │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════════─────────────┴──────────┘

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

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

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

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

--- #22 messages/86 ---
═════════════════════════════════════════════──────────────────────────────────────
 I should try putting things on my resume like "vnc" or "Microsoft outlook" -
 you know, the kinds of software that I actually used on a day-to-day basis. My
 resume makes me look very impressive (if a little inexperienced) but none of
 the tools are things that managers have used. Heck they're not things that YOU
 have used, not at work, so it makes you look like you're overselling yourself.
 You're not, but they might think you are. Idk it's late. Go to bed <3
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #23 fediverse/1721 ---
═════════════════════════════════════════════════════──────────────────────────────
 I'd like to apologize to everyone I've ever interacted with in the past. It
 was unfair of me to interact with you, and I will do my best to not hurt you
 again in that way.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

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

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


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

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

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

--- #29 fediverse/4026 ---
═══════════════════════════════════════════════════════════────────────────────────
 why is everyone so confused about how I turned out?
 
 I literally spent my whole childhood telling stories to myself
 
 (inspired by the world, and stories I had read, with mechanics like games I
 had played)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

--- #31 fediverse/5203 ---
═════════════════════════════════════════════════════════════════════──────────────
 I grabbed some of the fans and ethernet and HDMI cables you threw away in the
 trash, thanks... probably the last thing I'll be able to scavenge in that way
 for a while. Sorry that you had to do a bunch of work dismantling the
 observation post. I appreciated your company even if it's only
 pseudo-psychically and I hope you enjoy wherever you end up next. Thanks for
 your attention and all the other redacted things 🥰 🥰 🥰
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

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


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

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

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

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

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


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

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

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

--- #39 fediverse_boost/5470 ---
◀─[BOOST]
  
  I like to leave notes on stuff I've modified so that I and any future owner (after i die or need to sell stuff to survive or whatever) can figure out what I've done, since more documentation might have vanished by the time it's needed  
  
                                                            
 similar                        chronological                        different 
─▶

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

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

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

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

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

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


 @user-1573 
 
 I think I fiddled a little bit with the colors because the default background
 was the same as some other color and it was making it hard to do things, and I
 also have a plugin that lets me talk to a local LLM which I sometimes ask
 syntax questions to if I'm offline and don't feel like searching through
 documentation. I think that's it tho
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #46 fediverse/2512 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌───────────────────────────────────────────┐
 │ CW: re: question that is also complaining │
 └───────────────────────────────────────────┘


 @user-1153 
 
 it's okay. If I were to direct something to be more proactive, my words
 probably wouldn't stick with it. that kind of thing can't be hardwired, it
 needs to be built up through repetitious application of something's mechanics.
 
 perhaps martial arts, focused on defence? engaging with a foe in a productive
 bout of playful competition is one of the best ways to learn, and knowing when
 to strike seems similar to me to overcoming situational paralysis.
 
 Flaws can be overcome, when upgrading robots (or a doll applying improvements
 to itself) you often don't need to add additional hardware or even install new
 firmware. Skills such as these can be built up in software with experience.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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


 @user-579 
 
 my problem is figuring out which thoughts are intrusive and which are actually
 mine
 
 I usually err on the side of "would you want your sister to do this" or "how
 would you feel if your mom told you that" or "do you think a cute sweet soft
 cat would ever think such a thing" and that usually works.
 
 usually.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #48 fediverse/3879 ---
═══════════════════════════════════════════════════════════────────────────────────
 @user-1614 
 
 yeah haha that's what happens when you spin too fast. Sorry for being loud, at
 least I tried my hardest. Too bad I fell on my own, too bad there wasn't
 anyone to catch me. That's my fault, it's solely my own, but whose fault is
 the mistake of the collective? Oy I'll fall on my ass as many times as it
 takes. I'm used to it.
 
 Plus, it wouldn't have worked, and what else am I supposed to do but speak of
 the moment? I feel different now.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #49 messages/1155 ---
══════════════════════════════════════════════════════════════════════════════════─
 Oh, I guess I should clarify something I said like, a year ago - when I said I
 "talked to / worked with" so-and-so, I meant that I created in tandem with a
 friend a proposition of sorts, and we tried to psychically beam it into their
 minds. That's not exactly how it went down, but it gives you a good enough
 picture of the goals we had with our ritual. I have no idea if they heard, but
 I did happen to see several of them later on, which felt a little too
 serendipitous to just be chance. so I'm thinking they did. I hope they got the
 message and used it as they please, because it was mutually beneficial even if
 neither of us had any actual impact on it. If you didn't hear the whole story,
 then it's hardly a lie to possess incomplete information! So long as you don't
 lie about me, and what I said or did, then it'll surely be fine. There's no
 need to embellish when it's plainly apparent.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #50 messages/304 ---
══════════════════════════════════════════════════─────────────────────────────────
 Relax.
 
 Take it from me.
 
 I won't resist, at least I'll try, and if I start suddenly then it hurts and
 you should go slower. Unless I do three short, three long, three short.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #51 fediverse/2043 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1150 
 
 if you know how and have access to certain hand tools that are typically found
 in suburban dad garages (but not in a toolkit bought from target or whatever)
 you can turn any semi-automatic rifle into a fully automatic one.
 
 It's highly illegal, but it's technically possible.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #52 fediverse/825 ---
══════════════════════════════════════════════────────────────────────────────────┐
 in the past, for most of there day, there was just... nothing to do. it's        │
 like, nothing to take up your time, nothing to be pulled toward the present.     │
 but when I was growing up, I had access to video games. and movies. and later,   │
 TV, after the internet, which was a weird combination of ordering of events.     │
 Almost like because of that, I'd have a different interpretation of events.      │
 yeah but like, there's always a continuation of implemented support, [that's a   │
 weird way to express "the state of being shown news broadcasts over a period     │
 of time, measured in terms of engagement"]                                       │
 ... what was I saying? oh yeah what I'm doing here is unethical, like            │
 obviously I shouldn't be shouting in such a public place. Why would I do it if   │
 not for an intense and extreme feeling of being ignored or un-[trusted, worthy   │
 of guiding direction based on merit] gosh merit is such a tricky concept too,    │
 like how is it measured, and {that doesn't matter                                │
 ... what was I saying oh yeah I should probably go shout into a void that        │
 nobody ca                                                                        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #53 fediverse/3593 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-883 
 
 I feel like you could set up a performance where you walk through your
 workflow on various things and set it to music and make a dope-as-heck music
 video.
 
 like, the "retro" vibes and aesthetics of your posts on my timeline are always
 a joy to see. I can't help but wonder if they could be crystallized /
 essentialized somehow into something neat to watch.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

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

--- #57 fediverse/1328 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 I read your essay on chapter 5! I liked your words. I had different thoughts
 watching it (probably because of the cannabis teehee) so it was interesting to
 hear your perspective. I want to watch it again so I can remember what I want
 to tell you about it! Ahhhhh maybe tomorrow I'll read chapter 6's essay. I
 gotta download those soon so I can show my IRL friends.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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


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

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

--- #60 fediverse/857 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 I feel like I'd learn from coding tutorials more if someone started with a       │
 complete program they can fit on one panel of their screen, a second for         │
 showing what each particular thing they're pointing at means, and a third for    │
 a typical usecase they might build and dismantle on the fly.                     │
 like, scientific toys that they could use to explain a particular phenomena.     │
 the way people used to have 3d models they either bought or built themselves     │
 of like, atoms and wind patterns and stuff they could explain to kids.           │
 you know, like exactly the kind of things that are commonly stored at            │
 children's museums.                                                              │
 I was homeschooled, so I went to those places quite a lot. I always felt a       │
 little unwelcome because I always seemed to be the eldest in every bunch.        │
 That's continued all throughout my adulthood, like each of my peers are just a   │
 few years younger than me. I think I just mature more slowly, and thus           │
 associate with below the average.                                                │
 it's like, a descriptor of your rate of defining reality and being guided by     │
 it. when                                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

--- #61 messages/915 ---
═════════════════════════════════════════════════════════════════════════──────────
 uh, anyway, I realized that because of Words I can type into any of my places
 (wherever I felt it best suited) and it would still record as a chronological
 story. must feel sooooooo schizophrenic, but it's just because I'm viewing
 muse as I please.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

--- #63 fediverse/3077 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-246 
 
 If I didn't stop searching for a place with people like me, I'd be searching
 until the day I die. And besides, I wouldn't want to be in a place like that
 anyway. I am defined by my contrasts.
 
 ... I'm thinking back to my memories of when I arrived here. It was a much
 different place, and I was... a little too loud, I think.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #64 fediverse/3396 ---
════════════════════════════════════════════════════════──────────────────────────┐
 you should only use variables for things that are user-configurable.             │
 everything else should be hard-coded, with a clear and coherent reasoning        │
 stored in the documentation, with git-style revisions included and easily        │
 browsable.                                                                       │
 (what if you want to tweak a value somewhere? you'd have to update it on every   │
 single page!)                                                                    │
 true. maybe we could set aside a section of memory to store a value and then     │
 just point to it using a label. That way we could always keep our values         │
 hardcoded, but also be able to find them easier.                                 │
 [tweak them, not find them]                                                      │
 ... yah okay fine both would technically work                                    │
 [yes but one of them is not a good timeline to lead the world down.]             │
 ?..?...?....?..... -.- ...... /shrug ....... ...?                                │
 "bruh why is she reinventing variables"                                          │
 she's learning give her time                                                     │
 ... did you hear a doctor diagnosed her finally                                  │
 "whaaat what'd they give her"                                                    │
 they said it was "schizotypal"                                                   │
 "... did she forget a symptom or three?"                                         │
 no dude thats one of the bad ones                                                │
 "oh right. I heard typical"                                                      │
 yeah so anyway                                                                   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════───────────────┴──────────┘

--- #65 messages/1195 ---
══════════════════════════════════════════════════════════════════════════════════─
 I once heard that in the land of China it's rude to make eye contact. Well,
 eyes are how i see, so i must seem quite rude.
 
 I wonder if facetime, zoom, and other remote socialization tools feel rude? Do
 video essays have the author looking aside as they read, perhaps right at the
 script they wrote themselves?
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #66 fediverse/2848 ---
═══════════════════════════════════════════════════════────────────────────────────
 oh btw to the people trying to doxx me there's a picture of me in this
 profile, but you'll have to read a LOT to find it. On the way, see if you pick
 up anything interesting that you agree with. maybe you'll realize that we're
 on the same team, and should be working together.
 
 that's the dream, at least.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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


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

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

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

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

--- #71 fediverse/5386 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-670 @user-1815 @user-1816 
 
 literally nobody has contributed to the one github repo I have
 
 ever. I got like, one comment from some guy in China or Taiwan. It's been up
 for like, 4 or 5 years and it's on my website. /shrug I guess most people
 bounce off after reading the splash screen /shrug
 
 to me, a FOSS project feels static because I don't believe in centralization
 and I also don't have the bandwidth or need to work on it. /shrug
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #72 fediverse/4147 ---
════════════════════════════════════════════════════════════───────────────────────
 a messaging app where you only had a limited amount of X/Y space to pin sticky
 notes so you had to delete stuff bit by bit.
 
 trick is... you can only delete things that your conversation partner picks.
 and you have to share the space, so... if one person is overwhelmed or working
 on other stuff, eventually there comes a ceiling where you can't work together
 on a project anymore.
 
 A tool like this would essentially alert them to this, because you would run
 out of places to put your produced [work-value but pronounced as "harms/worms"
 for some reason]
 
 plus that way you can say "yep I got that covered" as in, I'll be the next one
 to post about this. Hence I'm grabbing this post-it and putting it on my
 board. work work work work okay here's that post-it back, but I added a little
 more specs to it. Ah but you're out of room, only got 333 characters
 remaining, here I'll keep it on my board until you're through with whatever it
 is that you do
 
 oh? you want to prioritize me and my productions? okay I'm listening..
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #73 fediverse/6052 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-1895 
 
 I just thought your post was iconic and was made better with the full
 screenshot so you can share it if you want or keep it on your hard drive to
 find sometime in the future and be like "oh ha I remember that"
 
 I didn't keep the post, I just made it for you
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #74 fediverse/1263 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 My friends and I decided to hang out for two days in a row, I guess they
 aren't tired of me yet hehe - I might be around tonight but I'll let you know!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #76 fediverse/5212 ---
═════════════════════════════════════════════════════════════════════──────────────
 the reason you start with a game engine is because then you'll have tools to
 make however-many games you want. Tools that you know intimately enough that
 you can debug and improve them without breaking your creative flow by learning
 something new halfway through a project
 
 the whole point of individualized projects instead of viewing each computer as
 a complete and total whole (why do we need servers again?) is that you can
 paint a picture of where the design of the program is intended to go, such
 that all the considerations are in place and whatever issues or struggles you
 might face along the way are adequately addresssed, -- stack overflow --
 [because I mistyped addressed] -- -- if you know what "stack overflow" means
 you have intimate knowledge of the technology, and can probably guess what it
 means in context when I say it. "nuts I lost that train of thoguht" -- stackl
 ov
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #77 fediverse/5374 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-138 
 
 me neither... guess it's in-person for me.
 
 [a mysterious "they" then proceeds to set up microphones everywhere I might go]
 
 ah nuts why are all these people carrying phones around
 
 [they already know who I am, and I don't really want to be someone else, so]
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

--- #79 fediverse/3302 ---
════════════════════════════════════════════════════════───────────────────────────
 "this game is too hard" she whined, as she played on the hardest difficulty
 setting
 
 "this game is too long" she pleaded, as she failed to get absorbed by the
 story and characters
 
 "this game is too fast" she avoided, as life comes at ya once and then it's
 gone
 
 "I'll never get another chance to be who I am right now" she remarked, as she
 considered how society is designed not to have the best life,  but to extract
 labor from us. That's not what our ideal should be, she thinks to me, and I'm
 like... bro figure your shit out you're harshing my mellow
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

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

--- #84 fediverse/5850 ---
═══════════════════════════════════════════════════════════════════════════────────
 @user-1074 
 
 if you'd like I can give you a lua script which will take your fediverse
 archive and turn it into a pdf which you can edit or print or whatever. Might
 be a fun diversion from posting. You can reply to yourself, add
 clarifications, change some things, put things in a new light, add context,
 etc... before you know it you'll have something printable. Could even pull out
 your best stuff and make zines.
 
 should require just a little configuration to suit your setup. That's part of
 how I stay "productive" without posting all the time.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #85 fediverse/2475 ---
═══════════════════════════════════════════════════════────────────────────────────
 If you want to design a society, first learn how to build a decentralized
 scalable multiprocessor computer program.
 
 It could literally flip bits, the point is to practice architecture not
 accomplish a goal.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #86 fediverse/5793 ---
══════════════════════════════════════════════════════════════════════════─────────
 I posted my words text file all over the c it y today. not sure why. maybe I'm
 tired of this course and I don't want to let anyone down? Maybe I don't know
 what to do yet. Maybe nobody works with me because everyone's keeping it on
 the DL or whateverr?
 
 ... anyway enough typing, I'm going to go play a video game. like god intended.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

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

--- #88 fediverse/2330 ---
═══════════════════════════════════════════════════════────────────────────────────
 You cannot debase me, well, you can try. But for each of my past mistakes I've
 learned from, and I can explain in detail how, when, and why.
 
 To err is to be human, and some errors are more painful than others. Believe
 me, I know.
 
 I am only as good as my lessons, the things that I've learned on the road.
 
 And I never stop learning.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #89 fediverse/1390 ---
═════════════════════════════════════════════════──────────────────────────────────
 in other news, I spent ~9 hours yesterday working on a dumb project that I'll
 probably tell you about once it's finished, and then a BASH script that my
 friend and I wrote just deleted every single file because I failed to
 terminate a sed command. Or something, still not entirely sure what happened,
 because it deleted the script that was doing the deleting.
 
 good thing I have backups from ~3 hours ago. Feels great to lose 33% of a
 project for nothing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

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

--- #92 fediverse/517 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-246 @user-366 @user-367 @user-353 
 
 My classes only briefly touched on 2nd wave feminism, because apparently 1st
 and 3rd were more important. I haven't gone back and re-examined it because
 I'm too busy learning about computers - alas! that there should be more hours
 in the day? I wonder what I would then be able to say, here in this moment,
 should I have been prepared with more moments in solitude or classroom,
 studying the work of those who came before me.
 
 Oh well, I should probably focus on processor architecture or Java frameworks
 or whatever I'm assigned next.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

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

--- #96 fediverse/3839 ---
══════════════════════════════════════════════════════════─────────────────────────
 ┌────────────────────────────────────┐
 │ CW: socialism-recycling-mentioned3 │
 └────────────────────────────────────┘


 "I'm not really a designer, though."
 
 what about that desk you designed?
 
 "oh, yeah I guess that counts. I haven't gotten around to building it though
 so I'm not a real designer."
 
 what! don't say that, you designed it didn't you? How about this - I know this
 girl who wants to be a carpenter but she doesn't have any idea what kind of
 projects to work on. How about I put you two in a room together and she can
 build your desk. If it goes well, I can hook you up with someone who organizes
 designers and he can get you into a furniture design course at the library.
 
 "Hmmmm, well that seems alright. But I don't really want to work with people!
 I mean, I don't know her - what if she doesn't like me?"
 
 oh, she can be a little spicy sometimes, but I'm sure you'll hit it off. Just
 don't mention rats, she had a pet pass away recently and she's still a little
 broken up about it.
 
 "... okay I think I can manage that."
 
 besides, working with people is the best! I do it every day!
 
 "I'll try"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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


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

--- #98 fediverse/5281 ---
══════════════════════════════════════════════════════════════════════─────────────
 movies tell you to seek out the most powerful guide when you start having
 certain notions, when instead you should share what you know with people on
 your level. "here's what I learned, here's what I know, here's the experiment,
 here's the "get-done"."
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #99 fediverse/1322 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────────┐
 │ CW: hard-drugs-mentioned │
 └──────────────────────────┘


 one of the greatest gifts LSD gave me was the ability to look in the mirror
 and see a person beyond me.
 
 your reflection has all the same emotions as you, and if you look at them like
 you'd try to parse the feelings of a friend, you can learn a bit more about
 how you're thinking.
 
 ... procrastination >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #100 fediverse/1123 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-835 
 
 kinda feels like that type of work, the kind that people rely on, is more
 important than... whatever they were having you work on at work-work.
 (assumption on my part)
 
 and if that important work is not provided for, in the allocation of resources
 applied toward the developer who is developing security developments that
 develop required functionality for the development of people's
 communication/interactions, then perhaps resources should be allocated for
 resolving those difficulties.
 
 Or maybe not idk I'm broke, shows how much I know about money
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #101 fediverse/72 ---
════════════════════════════════════════───────────────────────────────────────────
 Here's an idea, you can email it to me! My email address that I've used as my
 primary since I was 16 years old is gabrilend@user-75 Sure hope I don't regret
 this decision. I sure hope my life isn't irrevocably changed because I got
 frustrated trying to post a picture on the internet. Nevermind the fact that
 all emails are clear text and totally unencrypted so pretty much everyone can
 see everything you buy on Amazon. Surely this is the most robust and least
 insane system we could use to organize our truly technological and thoroughly
 advanced future society.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════──────────────────────────────────────────┘

--- #102 fediverse/1619 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1048 @user-1049 
 
 I didn't see it in any of those links, though seeing the picture for Skov made
 me realize I'm pretty sure it was tree based! But, maybe a little more reliant
 on the shape of the blocks rather than the text.
 
 It also might have been from a top-down perspective like Reactible:
 http://reactable.com/mobile/
 but I can't remember. All I saw was a short introductory video, which makes me
 think it might have been an artists conception or something.
 
 Scrolling through those galleries was really cool! There's been so much care
 and attention placed into the creation of interfaces for regular people (or
 visual people) to engage with the world of computation, and it's a little sad
 to me that we don't place more of an emphasis on it culturally. I am honored
 to exist in a time where people care enough to build Linux, for example! And
 yet most people don't get it.
 
 Seeing stuff like this fills me with hope though - Thank you for showing me
 those galleries and links, there's so much affection in them.
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #104 fediverse/5407 ---
══════════════════════════════════════════════════════════════════════────────────┐
 man, I had a kernel of an idea for how to make a warp drive this morning right   │
 after I woke up but my gosh darn girlfriend's leg was on top of me and it was    │
 sooooo cute and I didn't want to move so I tried repeating it in my head over    │
 and over for like, half an hour, and I ended up forgetting about 1/4th of it.    │
 Here's hoping 3/4ths is nice.                                                    │
 it really was just about the underlying physics of the thing, which might be     │
 nothing because I'm not a physicist. But I had been watching ANDOR SEASON 2      │
 all night so maybe that had something to do with why I was thinking of warp      │
 drives.                                                                          │
 eventually, my cat came in and sat on my chest and flicked her tail at the       │
 geef's face until she rolled over in absolute disgust (still asleep tho) and I   │
 was able to make my mistake.                                                     │
 ... I mean, escape. haha that's a weird typo.                                    │
 anyway, the idea which I'm about to write down now for the first time which is   │
 stored only in my brain's memory RAM is essentially this: consider if there      │
 was a                                                                            │
 ----------------- stack overflow ----------------                                │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════─┴──────────┘

--- #105 fediverse/1601 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 Cool I'm into that stuff too : )
 
 It had a very slick ui, very responsive if I remember correctly. Like, 60fps
 in the browser kind of thing. Or maybe that was just the pre-rendered teaser
 trailer shot idk.
 
 honestly might have just been a front-end project or an animation, idk if it
 actually worked as a programming language. But it seemed like a cool "UI" into
 programming.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #107 fediverse/1893 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1056 
 
 heh probably, though for this specific instance my Ollama server wasn't
 running and I had already killed my Stable Diffusion server after utterly
 failing to produce anything useful... alas, a girl can dream of having a robot
 familiar, but not today I guess.
 
 Not if they keep hiding GPU usage from me >: (
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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


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

--- #110 notes/utopian-fiction ---
══════════════════════════─────────────────────────────────────────────────────────
 But the past is boring, it already happened after all! Clearly there's nothing
 to be learned... Right? Seems like there's a big market out there for examining
 what we as a species did right, even if we had to sacrifice ethics to get
 there.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════────────────────────────────────────────────────────────┘

--- #111 fediverse/1990 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 When my family would go on roadtrips, I'd hide under a blanket in the front      │
 seat with my laptop and power inverter just to hide from the glare.              │
 My mom would play audiobooks, usually fantasy stories, and my sisters would      │
 watch their portable TVs. Like, dvd players that you could carry on top of       │
 your lap. Not laptops, but little purpose-built devices primarily intended to    │
 be used to watch DVDs, or rather movie files that were printed on a disk.        │
 And yes, it's disk, not disc, thanks for asking.                                 │
 anyway it was pretty nice I have fond memories of jugging a gas-station snack    │
 while also swapping circular cartridges - most games required the game's CD to   │
 be inserted in order to play the game.                                           │
 which is just... a nonsensical restriction if you think about it hard enough.    │
 I mean, like, can you imagine if you needed to insert your windows disk          │
 anytime you wanted your computer to turn on? Just... write the disk              │
 information! To disc! Save it so that you never need the crude piece of          │
 plastic again! Then pass it to your fr                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #112 fediverse/6040 ---
════════════════════════════════════════════════════════════════════════════───────
 everyone's all against ai because it's big tech but it doesn't have to be that
 big it can be [minimized but pronounced marginalized]
 
 == stack overflow ==
 
 distributed
 
 so I think the idea is that by the time you would use AI, there's been enough
 time to rewrite the software to work on handheld laptops in a distributed way
 
 and we'd vote on what to ask the amphora of great knowledge, the answer could
 always be 42.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #114 fediverse/2530 ---
══════════════════════════════════════════════════════────────────────────────────┐
 I want to go out on the town with my cute friends and wink at boys at the        │
 other end of the bar                                                             │
 I want to climb mountains and see how far I can see, while walking past trees    │
 that are new to me                                                               │
 I want to spend hours thinking about a map while my friends plot behind my       │
 back, searching for an advantage we can use to succeed in a game of traps        │
 I want to visit five different restaurants in a day, and try a bit of each       │
 that the chef wants to display                                                   │
 I want to stand in a choir and feel my soul aspire, to bend in the wind of       │
 rhythm like the melody of grasses at play                                        │
 I want to see people on the train that I know from somewhere, and to step out    │
 into the rain to meet new friends of mine                                        │
 I want to pet a cat I've never met.                                              │
 I want to build computers that are larger than a room but small enough to        │
 carry, with thoughts on their mind that are far to great for mine                │
 I want all these these things and more, but I'm far too busy these days.         │
 Perhaps I've had enough of these things and more, or perhaps there's more in     │
 store.                                                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #115 fediverse/272 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌─────────────────────────────────────┐
 │ CW: re: education-homeschool-theory │
 └─────────────────────────────────────┘


 @user-206 I'm sorry I made you uncomfortable - I should have put a CW:
 personal on it. I'll do better next time (if that's why it bothered you)
 
 you're right, it's easy to dream of massive sweeping changes but small
 incremental measurable and actionable change is often how things get done in a
 stable system.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

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

--- #117 fediverse/6076 ---
════════════════════════════════════════════════════════════════════════════───────
 "so I was walking down the street the other day and I came across a grocery
 store, right? and anyway long story short so as I was walking through this
 grocery store I saw a bag of marbles - wait no they were nuts, with like...
 cherries and grapes in them. actually it was cranberries, I think, the
 cherries weren't in season. so these dried cranberries tasted really tart and
 sweet, and I thought "huh maybe they're dried cherries after all" and so I
 asked the attendent or whatever and she was like "sir you need to pay for
 that" and I'm like, yeah okay how much and she said it was 10$ so I'm like
 "dang that's a good deal, I'm proud and amazed of our modern infrastructure
 and all the hard work of people who don't get paid enough to make it happen"
 and she's like "make what happen" and I'm like "oh the... the this thing" and
 I held up the bag of cherries and she's like "oh uh, yeah it is nice, I guess
 I don't really think about it much" so anyway I started thinking about what
 else I could bu
buy as a set for dollars like perhaps epstein files or cures for cancer or recipes for programmable matter or whatever. One of those options stood out to me as like, possible? and the others seemed like modern fantasy. The kind you *work toward*, yeah? not the kind that you have available as an option.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #118 fediverse/5168 ---
════════════════════════════════════════════════════════════════════───────────────
 this is one of the first scripts I wrote
 
 I can't believe I put the --no-ls AFTER the argument, ha, what a noob.
 
 ah well if it works it works and I can't refactor now because I built it into
 random scripts and I'd be fixing errors all the time.
script 1:  #!/bin/bash  # sort by filetype would be nice  alias cd="cd-improved"  function cd-improved(){      if [ "${1}" = "..." ] ; then         builtin cd .. && builtin cd ..     elif [ "${1}" = "...." ] ; then         builtin cd .. && builtin cd .. && builtin cd ..     elif [ "${1}" = "....." ] ; then         builtin cd .. && builtin cd .. && builtin cd .. && builtin cd ..          elif [ -d "./${1}" ] ; then         local target_dir="./${1}"      elif [ "${1}" = "cdir" ] ; then         local target_dir="$(tail -n 1 '/home/ritz/scripts/.cdir-target')"         echo ${target_dir}       else         local target_dir="${1}"     fi      if [ ! "${2}" = '--no-ls' ] ; then         builtin cd "${target_dir}" && ls -v --color=auto     else         builtin cd "${target_dir}"     fi          # if the qcd function is defined     if declare qcd > /dev/null; then         quick_cd -d DEFAULT         quick_cd -a DEFAULT     fi }    script 2:  #!/bin/bash  function cdir(){        if [ "$#" -eq 0 ]; then       pwd | cat >> ~/scripts/.cdir-target    elif [ "${1}" == "-l" ]; then       cat ~/scripts/.cdir-target    fi      }
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #119 fediverse/2058 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1071 I have the opposite problem, where my ideas come too quickly and
 they're gone before I can implement. I think I'd prefer to burn out TBH
 because burning out just means an inexcusable output of energy (in return for
 not-enough-learning)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #121 notes/not-gonna-post-that ---
═════════════════════════════════════════════════════════════════════════════════──
 I was stretching just now and notreally paying attention to my body and just
 feeling the most "stretchable" area that I hadn't stretched yet and I
 accidentally made a hitler solute - sorry I was just stretching!! pls don't
 interpret things into that like accidentally almost jesusing HEY I SAID NO
 INTERPRETING ahhhh dangit humans are so
 
 --- stack overflow ---
 
 give your rulers power and let them keep it. Pick them because they'd be good
 at it. Fulfilling their sacred vow to you.
 
 --- stack overflow ---
 
 I bet you could touch the spirit realm if you placed speakers next to a river
 and noise cancelled it for a short time
 
 --- stack overflow ---
 
 nobody knows what jesus looks like. so you can draw him however you choose.
                                                           ─┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════════─┘

--- #122 fediverse/1889 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1091 
 
 I'm sorry I didn't mean to be upsetting! I'll try and be more considerate. If
 everyone agrees there's never anything to talk about besides how great
 everyone else is, and that's boring, so... I'm sorry I thought you liked what
 I was saying from the stars on my comments.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #124 fediverse/507 ---
══════════════════════════════════════════════─────────────────────────────────────
 ┌──────────────────────┐
 │ CW: death-mentioned  │
 └──────────────────────┘


 Good night, I sure hope I'm the same person in the morning and not an
 assassinated version of myself that has been produced through the manufactured
 proceedings of an LLM or otherwise self computerized contriving designed to
 align to the purpose of my expression (with a few added caveats)! Talk to you
 later, I love you all! Wait, I don't know you. How can I love you? Easy, it's
 my default. Anyway goodnight, sleep is death and dreams are the bounty of
 reality.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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


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

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

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


 The full story is a lot more complex. I broke the law with him in a dangerous
 way, but he was going to do it anyway and I wanted to know more about him.
 
 I could not deprive him of power because I am powerless without my words. But
 I supplied kindness anyway, and got hurt.
 
 I forgave him while he was hurting me, but if I see him again I'm drawing my
 knife. If he comes near me, I won't think twice.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #129 messages/214 ---
════════════════════════════════════════════════───────────────────────────────────
 Gonna take a break from this whole thing. I got a sign that I'm a bad person,
 twice. To confirm. I need to change, and since I don't know what I'm just
 going to try and do nothing for a bit.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #131 fediverse/3834 ---
══════════════════════════════════════════════════════════─────────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 some people prepare for revolution like a boy gets ready for a party
 
 others do so like a girl packing for a weekend trip to vegas
 
 I do it like a kid who forgot the paper was due on monday in 7th period and so
 spends their entire lunch period writing it (missing 4th in the process
 because the conclusion paragraph was giving me difficulty)
 
 but I think no matter how you do it, we're all just waiting for something to
 happen.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #132 fediverse/1982 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 @user-1037                                                                       │
 True, but what they WANT to know and what is RECORDED in record is often         │
 not-quite the same thing.                                                        │
 Hence, why laboratory techs feel at odds with the software people running        │
 applications on their machines. I'm assuming it's roughly the same thing going   │
 the other direction, though perhaps with a dash of classism thrown in.           │
 The record is useful to these hardware techs, because they've used it to         │
 diagnose INCREDIBLY OBSCURE issues. SO MUCH READING it hurts my heart just to    │
 think about it. Scanning and searching for a solution, until finally it's        │
 found in this cross-examination of two different ancient tickets from just a     │
 few months ago.                                                                  │
 One of them said they set the hardware one way.                                  │
 the other said they noticed it was out of place.                                 │
 Suddenly, you realize WHEN your incident started occurring, and then you can     │
 piece together the facts.                                                        │
 (this has happened like, twice to me so far, and each time I spent weeks on it)  │
 ( though I did work at Intel, meaning I was doing a lot of obscure hardware      │
 work )                                                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #133 fediverse/376 ---
═════════════════════════════════════════════──────────────────────────────────────
 @user-281 
 
 I'm just a rando but my understanding is that posting on the fediverse is
 sorta like writing on the sky, and anyone that wants can read it. I could be
 wrong though
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #134 fediverse/653 ---
══════════════════════════════════════════════─────────────────────────────────────
 there's a difference between designing software and using software. Some
 things can be made, and then saved for another day when their implementations
 may be accomplished more ethically. It's okay to say "let's leave this as
 'okay' and work on the next thing we've chosen."
 
 Check out this piece of C code I wrote last night:
 
 it doesn't compile, it's not finished, but I wrote it as-is
 
 [pretend like it was called "main.c" instead of "main.txt" - had to change it
 because mastodon thinks it's an invalid file]
 
 [actually .txt didn't work, try .png]
 
 [hmmm it realized it wasn't a valid png file, okay try screenshotting the
 code, there's only 300 lines]
 
 [sure glad there's only 300 lines]
 
 [too bad it won't let you send .zip]
 
 [won't let me name it main.png, presumably because they already have a
 failed-verified version on their machine. will rename to main-src.png instead]
sorry, when I pasted the source code in it was negative fourteen thousand, six hundred and thirty one characters. Phew that's too many.  basically it's a C source code file with a lot of comments left in... odd locations. They details ideas the author has had about the tech industry and all of creation, and with it a song is woven of truth and liberation. We'll see where life brings us, but we know it's just ours for a moment, so let's carry forth on our own torms [terms, but pronounced as "dorms" for some reason?]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

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

--- #137 fediverse/1716 ---
═════════════════════════════════════════════════════──────────────────────────────
 if a game presents itself that you know you'll like, at a certain point your
 tastes are so refined and specific that you can think to yourself "... it's a
 sign, I gotta play this" because moments that you find a game you're really
 "into" are pretty rare.
 
 I've never been wowed by graphical technology beyond, like, a tech demo or.
 It's cool to see, but it never sold games to me. I was always into mechanics,
 because they were the kind of thing you could learn from when making your own
 games to play.
 
 I spent a lot of time outside because my mom would only let me use electronics
 for 1 hour per day. Ahhhhh it was always my favorite part of the day.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #138 fediverse/2651 ---
═══════════════════════════════════════════════════════────────────────────────────
 kinda tempted to make like, 20 different accounts on like, 20 different
 mastodon instances and just have them repost all of the things I've written in
 the past one-by-one-by-one until someone notices and calls me out on it
 
 might get some more conversation, at least
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #139 fediverse/5350 ---
═══════════════════════════════════════════════════════════════════════────────────
 honestly we should be building cities in the most boring locations, not the
 most beautiful.
 
 like below the crust.
 
 or space.
 
 the surface is a pleasuredome, why waste it on scrubland and turf?
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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


 @user-95 thank you for inviting me, it was fun : ) I'm not usually that quiet
 - weed works a little different on me than it does on humans, and one of the
 side effects is auditory processing disorder. I couldn't really understand
 what most people were saying...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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

--- #142 notes/the-point-of-capitalism ---
════════════════════════════───────────────────────────────────────────────────────
 the sole purpose of our capitalist intentions were to examine all the ways that
 produced value. A company is nothing but a series of well-thought out value
 generators. They can interact with one another and they often need supplies and
 instruction, but they're great for solving problems! Set up a team and give
 them
 a complicated task, and they'll work together to solve it. Doesn't matter if
 they're actually successful, because they'll be exploring the idea space. And
 by mapping it out, they're able to fully understand their existence. Boom,
 technological progress applied to growth. Let's gooooo (but by being careful
 about what resources we burn because we miiiiight run out)
 
 seriously ya'll need to start thinking long-term. I mean, I already came up
 with
 that and I'm like 6 months old! Yeesh get it together. Eh oh well let's just
 work with what we got, okay this should be pretty simple. Right so talk with
 your friends about things that you want to solve. Problems, you know like 
 whatever
 
 don't push me too hard, just take it slow. Okay so long-term, humanity is going
 to be a wonderful beautiful thing. It's going to shine like the most wondrous
 of stars, a beacon to all of our fellow explorers.
 
 We can have so much. We can have whatever we want, but truly in our hearts we
 know the only path forward is our parents.
 
 life is hard yo
 
 it's so gosh darn hard
 
 all that growth and change has to come from somewhere.
 
 you've tried so hard, and you truly are the most special thing I can imagine.
 
 you don't have to work so hard. Take your time, and learn as you go.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

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

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

--- #145 fediverse/1428 ---
═════════════════════════════════════════════════──────────────────────────────────
 hello everyone, Discord is down for me and I can't reach any of my friends
 over SMS.
 
 You know I'd just... give you my address if you asked, right?
 
 oh no sorry turns out they were just busy haha silly me why would I worry
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #147 fediverse/1961 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1037 
 
 Here are some neat ways!
 
 https://hachyderm.io/@user-1044/112512896931443652
 
 but you were part of that thread last month so you might remember : )
 
 (I ended up buying two of those python-only processors chips btw - I don't
 know how to solder though so I'm waiting to meet a new friend at my new job
 who can do it for me)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #149 fediverse/5647 ---
════════════════════════════════════════════════════════════════════════───────────

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

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

--- #151 fediverse/2829 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌─────────────────────────────────────┐
 │ CW: re: politics-violence-mentioned │
 └─────────────────────────────────────┘


 @user-831 
 
 yeah. I worked as hard as I could at my last job, but I only lasted 11 months.
 
 that's labor to me. Applying yourself toward something doggedly. And I did,
 and then I burnt out and was paid just as much as someone who sat around and
 did nothing.
 
 but I wasn't doing it for money, so who cares right? what matters to me is
 that I burnt out. I need years to rest. I think that's natural. but y'know,
 rent is expensive. You need to be working 24/7 in order to be worth anything,
 and I was just not cut out to do that.
 
 I want to emphasize that I consistently did a stellar job. They gave me awards
 and I fixed difficult problems quickly, efficiently, and with minimal mistakes
 (none of which went undocumented). I was very good at what I was doing, and I
 learned quickly.
 
 but alas, the work was not suited to my abilities. I'm more of a software
 person tbh, and by "software" I mean like... basically firmware.
 
 nobody writes in C these days except for cutting edge stuff. /shrug
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #153 fediverse/5934 ---
════════════════════════════════════════════════════════════════════════════───────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 hello, I am an ant if @, but you can't touch me, because I am a law abiding
 citizen.
 
 I have to be, for I am loud.
 
 ... okay I stole a movie from the internet at least once.
 
 also when I was 11 I walked out of a store with a keychain in my pocket. I
 thought it had a nice texture so I was examining it and then my mom distracted
 me and somehow it ended up in my pocket. That night will forever haunt me...
 She wouldn't let me take it back...
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

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

--- #156 fediverse/6302 ---
══════════════════════════════════════════════════════════════════════════════─────
 I was going to go to location today, but then while I was considering going to
 a different location before going to location I decided not to vacate my home
 for today for reasons I don't understand but accept as natural and due to the
 increased presence of directionless motion that guides and prevails me. which
 is to say... I'm staying in tonight even though I really really wanna show off
 my cute new outfit! I probably will do cannabis so there might be a
 psycherwaul. If there isn't, then y'know it's probably because either my
 girlfriend distracted me, or I managed to convince myself to move my feet
 anyway. Maybe it's my outfit? I wonder if I could leave if I wore my old
 clothes... ah well, questions for the vocal I guess. Gonna spend some time
 divining and see if I can gather new insights. "brb door" except more like
 "brb magic"
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #157 fediverse/5576 ---
════════════════════════════════════════════════════════════════════════───────────
 all that means is I'm ready. and I think everyone else is too.
 
 wait until it lights up your screen before you do anything.
 
 it needs buy-in after all. everyone's gotta say "yep, I'm ready too. let's do
 this [cue the montage]"
 
 but how the heck do you get people to say "yeah I'm totally ready for this
 impossible thing" without someone saying "hey I'm ready" first?
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #158 fediverse/3296 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌───────────────────────────────────────────┐
 │ CW: re: medical cartoon of genitals, lewd │
 └───────────────────────────────────────────┘


 @user-192 
 
 I loved anatomy textbooks because they gave me an abstraction of things that I
 could touch and feel
 
 I learned to project my trans-girl [target-of-gender-euphoria] thoughts onto
 the mental model I had constructed of how it all worked. It helped me
 conceptualize how humans are configured.
 
 I also had bladder issues growing up so I liked to conceptualize that
 structure too
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #160 fediverse/5460 ---
═══════════════════════════════════════════════════════════════════════────────────
 if you sit down to write and nothing comes to mind, then either nothing needs
 to be said or maybe you should spend time reading instead.
 
 ... okey dokey, time to read I guess.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

--- #162 fediverse/2462 ---
═══════════════════════════════════════════════════════────────────────────────────
 depending on your age, you'll want to start learning and mastering different
 types of skills.
 
 for example, as a millennial, my job is to learn about camping, combat,
 logistics, and network and communications security.
 
 fitness is important at all ages.
 
 be gregarious. introduce your friends to other friends. the more friend groups
 you have and know enough about to connect together, the better. don't
 introduce someone because they seem similar, but rather because they could
 help each other with something specific they've mentioned. if they don't hit
 it off, that's fine.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #163 fediverse/1186 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 I'm 99% sure the posts were just edited for some reason. I'm on the Mastodon
 web client and you can click a little button and it shows the edit history and
 you can see what you said before it was changed. Idk why that happened /shrug
 
 anyway, we can do remarkable things with computers. I'm amazed at their
 capabilities and the increasing utility they bring year after year. It warms
 my heart. ^_^
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

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

--- #167 fediverse/1880 ---
══════════════════════════════════════════════════════─────────────────────────────
 sometimes I decide against playing a Steam game because I don't want it to
 jump to the top of my "recently played" list
 
 Wish I could have like, a heatmap of when I played which game. I think that'd
 be useful for the archival process of my life.
 
 ... how pathetic, she measures her life in gameplay.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #168 fediverse/3446 ---
═════════════════════════════════════════════════════════──────────────────────────
 if I had an alternate mirror version of me that was almost exactly the same
 except one of us liked almond butter instead of peanut butter...
 
 I think we could probably manage two universes better than one.
 
 it'd be nice to have someone who liked every single game that I did.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #169 fediverse/3160 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌─────────────────────────────────────────────┐
 │ CW: cursing-mentioned-video-games-mentioned │
 └─────────────────────────────────────────────┘


 if I were Link, I'd listen every damn time Navi said anything at all and I'd
 listen close
 
 though he is just a kid so idk
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #171 fediverse/4178 ---
════════════════════════════════════════════════════════════───────────────────────
 oh, unless you meant "show me the t-shirt" in which case here ya go
 
 don't get too excited, I attended for a year and then dropped out. Might have
 even been a semester, I forget. It was sooooooo hard
picture of me wearing a 10 year old T-shirt that says "DIGIPEN"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #172 messages/740 ---
═════════════════════════════════════════════════════════════════──────────────────
 had a dream that we gamified all work and then put them into one single
 mega-game so whenever you wanted you could work on an arbitrary project and it
 would spin up a new game and take your inputs and use them to accomplish
 whatever was happening
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #173 fediverse/1335 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-803 
 
 you're welcome! thanks for speaking the things you say. I miiiiight have
 screenshotted some things you said a week or three ago and sent it to my
 boyfriend like "SEE someone else gets it" hope that's okay
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #174 fediverse/997 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-727 @user-728 @user-729 
 
 I remember sitting in algebra II class when visualizing the distance between
 numbers "clicked" for me. I was in a daze, I couldn't remember anything the
 teacher had said, but for a moment (several months) I could remember how it
 had seemed. Then I built new understandings, and my progress in math continued
 relentlessly, more and more each year. it was hard, and eventually calc 1 made
 me drop out of college 3 times. linear algebra was the other. (except I did
 linear algebra first?) anyway, I always felt like I could see things visually,
 from simple arithmetic to vector / pointer arithmetic, and when necessary it
 was always difficult to translate it into words and forms. Like... I don't
 have time to remember all these rules and operations, I have a picture in my
 mind and I can't quite define it. (whatever the equation may be)
 
 similar events happen consistently. they still do. just a few months ago I was
 thinking about redesigning integer storage in memory. never twice tho.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #175 fediverse/5208 ---
═════════════════════════════════════════════════════════════════════──────────────
 ┌──────────────────────────────────┐
 │ CW: capitalism-suicide-mentioned │
 └──────────────────────────────────┘


 Look, when I promised "Revolution or Death" I got pretty busy and kinda forgot
 to do the "dying" part, and by now it'd be a little awkward if I offed myself
 for no visible reason, so... How about we try again this summer? Maybe in a
 month or two? I'll try to keep the fire burning a bit longer this time.
 
 plus I'm better at playing the piano now so maybe that'll help somehow.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #176 fediverse/1195 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 alas, I live in Portland Oregon, but perhaps I might be moving to Denver in
 the near future. We shall see, depends on if my boyfriend breaks up with me
 for being neurotic lmao - if so then we should totally hang out
 
 I'm into chatting. I don't like IRC very much because it doesn't save history,
 and while I could save it manually it feels like a disservice to the service
 to utilize it in a way that it wasn't intended. And I want to save every
 conversation I have (potentially) so that some day the god-like humans of the
 future might clone me to understand my wisdom or something. Idk. See attached
 picture, I'm kinda crazy:
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #177 fediverse/1659 ---
════════════════════════════════════════════════════──────────────────────────────┐
 ┌───────────────────────────┐                                                    │
 │ CW: re: what, mh shitpost │                                                    │
 └───────────────────────────┘                                                    │
 @user-1052                                                                       │
 you're right, hubris has claimed many a paladin before-me. I can only hope I     │
 remain humble enough to survive.                                                 │
 you're right about projecting, but the most beautiful takes are ones that        │
 align with the experience of the viewed. Hence why method acting works so well   │
 - just put yourself in the shoes of the character and acting's easy right?       │
 I dunno, I just always felt like it was important to always be trying your       │
 best. Even if "your best" is relaxing. People say I'm "100% or 0% at all         │
 times" and I totally agree - it's like you said, a calling, to be the best       │
 version of me I can be.                                                          │
 Though I would like to add that the missteps aren't wilful, rather they're       │
 failures caused by imperfect information. Which is why I'm never too harmed      │
 when other people fail me - ah well, it was their turn to screw up, thats        │
 alright. It'll be me next time.                                                  │
 But also, if I do something wrong, well, I'll do better next time. It's only     │
 when I fail to apply what I've learned mistakenly do I shame myself.             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════───────────────────┴──────────┘

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

--- #179 fediverse/1608 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 It's likely it could have been an artist's mock-up - like a UX designer and an
 animator sat down and said "let's make a cool design" and that's what they
 came up with. Designers do that all the time.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #180 fediverse/4043 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌───────────────────────────────┐
 │ CW: re: not about anyone here │
 └───────────────────────────────┘


 @user-1259 
 
 yes
 
 it makes it difficult to connect with them.
 
 I find that people like that need a different context, if you want to connect,
 so that you can see them in a new light.
 
 if they're still ":(" then you can't waste your energy on them - they are
 working on themselves. At least, they should be.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #181 fediverse/67 ---
════════════════════════════════════════───────────────────────────────────────────
 @user-73 Yeah if I wanted a timeline I'd post on my website. Which I'm too
 lazy to do.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════──────────────────────────────────────────┘

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

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

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

--- #185 fediverse/1085 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-794 
 
 definitely go for the third, then you only have to work for 10 days! And 10 is
 a nice round number that fits on both hands.
 
 Side note, you can use your hands to draw.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #187 fediverse/1603 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 I made a picture, hope it helps! I swear I didn't hallucinate this thing but
 it might be less cool than I thought and I might have misremembered and made
 up parts of it, I can't tell because it was such a short memory : (
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #188 notes/running-with-rifles ---
═════════════════════════════════════════════════════════════════──────────────────
 this game is what we are missing
 thank goodness for that
 for if this is missing in our timeline
 we'll be better off at last
 we can have games, stories, and practice wars
 but none of them are precious
 precious implies worth
 they are worth nothing but entertainment
 no problem solving utility
 nothing of value
 save for perhaps the spatial awareness and strategization that comes
 from being a part of such a deadly ba-lance.
 
 anyway game time teehee just for me, don't worry about it I'll show
 you why it's a HORRID THING
 that won't be coming to our shores, no siree
 
 bye
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

--- #190 fediverse/2230 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌─────────────────────────────────────────┐
 │ CW: uspol-magic-the-gathering-mentioned │
 └─────────────────────────────────────────┘


 I made some cool things yesterday, including some Magic the Gathering decks
 which I'd love to try out against someone someday. Playing against the AI is
 kinda boring because it always makes the same mistakes haha
 
 anyway here's the card-lists, and some things that I wrote while I was
 distracted
 
 I always try and keep my decks under 40$ - the decks I have IRL had a limit of
 30$, but that was back before 30$
a picture of a magic-the-gathering deck A picture of a Magic the Gathering deck A picture of a Magic the Gathering deck a bunch of un-posted fediverse messages
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #191 fediverse/5292 ---
══════════════════════════════════════════════════════════════════════─────────────
 you can trust me, but please don't rely on me, for all of my power is soft.
 sometimes people just don't want to do what I tell them to, and I wouldn't
 have it any other way.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #192 fediverse/3647 ---
═════════════════════════════════════════════════════════──────────────────────────
 it's always wild when the exact moment I start playing music (quiet enough not
 to hear more than 5 feet away) or switch tasks suddenly there's a LOT of
 activity outside my apartment. like... if you're gonna watch me at least make
 it more subtle lmao
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #194 fediverse/163 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 more like... accessibility by default, and if you want to opt in to
 the narrative experience then you can. I want to start with all the levels
 unlocked and all the cool swords to play with because most of the time I don't
 really care about the story. I make my own story!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

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


 @user-246 @user-473 
 
 there's a part of me that believes magic is real. other parts that are
 convinced. I am a witch, you see, and while I can't quite control fire or
 bullets I can do other neat things. if you'd let me, humanity.
 
 I'm not doing an ARG, not intentionally. I pretty much post things I conceive
 of, like a conduit passed through spacetime. wild how mind bending the future
 can be. will be interesting to see what kinds of things there is in store for
 people you and me.
 
 those websites you posted... they're beautiful - I learned things, your method
 of expression was too [the words "confess" are heard loudly, super weird] I
 especially liked the oven that tries to lure you into a secret third place.
 not the mind, nor the body, but someplace besides.
 
 also the graphs and figures were news to me, I mean how could those numbers
 ever come to be? but alas that's the truth, that we orbit our proof, and alas
 that our meanings are lacking.
 
 [ran out of text]
picture of a saddle shaped graph with a line drawn between the two high points, front and back if it were on an actual horse, but the part where your butt goes. anyway there's text that says "from one gravity well to another" a picture on it's side of one of the graphs posted on the website. I don't quite understand it enough to compare it directly (the math is a bit above my head) but it reminds me of two graphs I made (well, same graph, just with different visualizations) from a few months ago when I was thinking about prime numbers. You might be interested. Here are their links:  https://www.desmos.com/calculator/qljvhpkqzd  and  https://www.desmos.com/calculator/mt6hasfcvm  ... hope you can copy that from there, if not... sorry this one's a doozy. a picture of the "reasons to trust me" graph colored yellow, orange, purple, and blue (in terms of intensity) it looks like a raindrop if it landed on a really tiny blanket and pulled it downward. or like, a person landing on a trampoline that was secured in four locations. anyway the text reads "like four people sharing the weight of an experience with bacchus [referencing the color of the graph], their perspective is pulled just a little bit in that direction, over and across the gap between eyeballs. or rather, between shared perspectives, the point of view of which one bases their experience. their training for the "reasons to trust me" graph.  2, in black and green and red, colors meant to be cool to a 12 year old - "the color doesn't matter... wine? why"  3 dropping down the page, there's a line of "please" written over and over again. it's scary. : ( I'm doing my best I promise, it's hard not to be in a state of unease! I'm working, I promise, this is valuable. you know they'd block me if they didn't like me.  error, 3. that's me, teehee, sorry for making a scene. I promise I'm just an actor, someone who is playing a role. well, alas that were true, I'm really having a mental disorder. Or maybe I'm confused? down here in the subtext it's hard to be choosed. weird how that works, that feeling of being wor [text is cut off, next line]  okay I'm realizing there's no way to get it all in this visual description, here let me continue in a second chapter: visual representation of the conversation I saw and responded to. I think you two are the coolest! heart emojis, flashing passionate excitement brought on by a feeling like you'd get when fangirling over something except like, more low key because I'm in control of my emotions or whatever. gonna put this in a direct message though since it somehow feels... personal? sorry. you can block me if you don't like me. I promise I don't mind. I want to send it to the other person too hope that's cool with you. Just because it was your two conversation and I'm just dropping in because I'm always butting in to public things on the internet. Guess that's just something I picked up on Reddit, where you're encouraged to contribute to the conversation. Though I wish it was easier to view threads on Mastodon, sometimes it feels like it's easy to lose the track of where you were going when the structure of the medium diverts your attention elsewhere. alas, I am not a designer, just a complainer and a whiner I guess. I'm sleepy. sorry to bother you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #196 fediverse/2806 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────────────────────┐
 │ CW: politics-social-media-spirituality │
 └────────────────────────────────────────┘


 pretend this is an allegory for social media.
 
 [it's not an allegory]
 
 yeah that's why I said pretend.
 
 okay imagine that you are sitting in a rock in a forest.
 
 far away, about 100 feet away, there are other people, but you can't see them
 because the underbrush is sooooo dense. they are also sitting on rocks.
 
 you can speak to them, and share your thoughts - but you don't know exactly
 where they're coming from because the sound has to bounce around off so many
 different plants and such.
 
 [that's not how that works] shut up
 
 so, if you want to say anything important, it's important to have the right
 tone, because people 2 or 3 clearings away can't really make out your words -
 but they might hear your tone if you yell very loud.
 
 the energy of the space you inhabit is the only thing that really matters. the
 words that you say are just snickering to a friend, but the expression on your
 face, the beating of the drum of your heart that reaches forth... that's what
 matters most.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #197 fediverse/1095 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: not-a-profess    │                                                         │
 └──────────────────────┘                                                         │
 One way to become involved in your passion projects is to contact them and say   │
 "hey, if you ever want to do [idea about one of their products] let me know      │
 because I want to be a part of it"                                               │
 maybe even y'know say it in a public place so people can see what we're all      │
 interested in                                                                    │
 could make like, a forum for it, just like "hey here's my idea" and if enough    │
 people like it then they can ALL be involved in a project to build it,           │
 open-source style but funded collectively.                                       │
 like "hey I'll stick with my day job and maybe do some icons or something" and   │
 in return their progress is supported.                                           │
 everyone's gotta pay rent, and if you work in the tech industry you tend to      │
 have a lot of dollars. Could maybe design some ways to build products            │
 collectively, ways that financially don't rely on charity.                       │
 Idk I'd just like to work on a product that was designed to be as usable as      │
 possible? Are there any companies out there doing that?                          │
 [oh yes all of them silly me how could I forget how wonderful software can be]   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

--- #198 fediverse/2656 ---
═══════════════════════════════════════════════════════────────────────────────────
 people who like you
 
 or at least are interested in what you have to say
 
 versus public, which is people who can hear you (because they happened to be
 listening at that time of day)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #199 fediverse/3645 ---
═════════════════════════════════════════════════════════──────────────────────────
 me, sitting down at my computer in order to be distracted:
 
 "I should make and eat a sandwich"
 
 me, sitting down at my computer with a PB&J and peanut-butter fingers:
 
 "I should be productive"
 
 me, sitting at my "work desk":
 
 "I'm hungry. And I'm bored. And I can't stop thinking about this video game I
 haven't played in a year."
 
 repeat
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #200 messages/566 ---
═══════════════════════════════════════════════════════════────────────────────────
 I feel like I'm standing underneath a blanket of spacetime and someone has
 grasped me firmly and shifted me this way or that, like a gear shift as you
 ascend and descend mountainous rolling hills.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘