=== ANCHOR POEM ===
═════════════════════════════════════════════════════════════════════════──────────
 you should only open doors for cats and dogs if they're using their outside
 leg to try and open it.
 
 if the dog or cat is pointed at the door at a 90 degree angle such that their
 apparent directions are approximately orthogonal (50% one way and 50% the
 other)
 
 ... yeah that, if they use their outter leg as opposed to the inner half of
 the body - inner of course being the leg (left or right) that is closest to
 the doorhingeframe
 
 if you open it for them when they use the external arm, aka the one that is
 closest to the latch
 
 it encourages them to and teaches them how to utilize momentum to open doors.
 
 you must apply leverage, and to do so you must "swing and a miss" (that last
 part I think is undirected?)
 
 [stack overflow]
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

=== SIMILARITY RANKED ===

--- #1 fediverse/2128 ---
═════════════════════════════════════════════════════──────────────────────────────
 I love petting dogs on walks! Unless their owner seems to be in a hurry, which
 they often do if they aren't outside to enjoy the scenery, but rather to get
 through the next part.
 
 people walking up to a dog owner and asking to pet their dog is part of the
 scenery. If you don't stop and look around once in a while, you might miss it.
 
 (but often, I'm on my way somewhere else, which is a blessed opportunity that
 you can only get if you live on the opposite end from your destination of a
 trail.)
 
 We should have trails in ALL DIRECTIONS from ALL PLACES to ALL PLACES.
 Otherwise, you won't see people and connect to them face-to-face. All you see
 is a front-bumper, the sparkling of a reflection off the light as it's casting
 a beam from the other direction (where the car it's reflecting off of is) ah
 yes the "car" that it's reflecting - that person yeah them right there! You'll
 never know them. Of course not, they're way over there.
 
 But they exist, just as you and just as I, and that's part of being part of a
 life.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #2 fediverse/1713 ---
════════════════════════════════════════════════════───────────────────────────────
 ┌───────────────────────────┐
 │ CW: re: divination, tarot │
 └───────────────────────────┘


 @user-1071 
 
 like a king who dictates on high, the taller the chair the farther the fall.
 
 how simple is it, when everyone trusts you, to betray the wishes for direction
 they grant upon you. By leveraging their direction to forward your own ends,
 you are depriving them of the liberty to choose their own ends.
 
 how cruel is it! to be the reason for distrust! alas, who can you go to for
 guidance if not anybody you trust?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #3 fediverse/4208 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌────────────────────────┐
 │ CW: personal-and-weird │
 └────────────────────────┘


 my train of thought is always directly to the point. Which is why all my posts
 sorta, switch directions halfway through? as if they only show the beginning
 or end of that particular situation. What an intense feeling, to have your
 mind split for a moment like that. Sure would be powerful and useful if you
 could utilize it.
 
 "ah ah ah, caught baby deity in the power jar, cool it ya little tyke and get
 movin' - I saw a dinosaur toy over there for you to play with."
 
 sorta like, the angled part of a K? Move directly to a destination, wait until
 my memory short-circuits [because the greek choir doesn't want me to see what
 it is that I'm about to write to thee] and then make a hard right turn and
 find an orthogonal thought train to process.
 
 it's like cresting over a hill, and it's impossible to see that which lies
 behind you.
 
 Or reaching a 4 direction intersection and making a left turn - you can't see
 back up main street, because you just turned off of main street onto baseline.
 
 I like me
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #4 messages/753 ---
═════════════════════════════════════════════════════════════════──────────────────
 trusting the "open source community" to properly vett software is absurd
 because 90% of them just... install whatever and throw libraries and
 frameworks at problems until they can script their way out of whatever problem
 they face.
 
 the other 10% are focused on very specific tools that are so niche that other
 people can't even understand when to *use* them much less how they work.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

--- #6 fediverse/6132 ---
═══════════════════════════════════════════════════════════════════════════────────
 it should be normal to play with other people's animals and the fact that it
 isn't is because some people don't know how to handle the family horse [er,
 hang out with a dog without being super bored] [play fetch with a cat] etc.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #7 messages/1460 ---
══════════════════════════════════════════════════════════════════════════════════─
 "hello, if you make my hat in leather and red, I'll wear it around town in the
 rain and tell people where it came from"
 
 "no no it's okay if my sides get a bit rained on, I'll learn how to use it to
 stay warm."
 
 "hi, can you make it 2 inches here and a bit thicker here?" 
 
 "sure I'll show you how I wear it. Here's some things that I wear alongside
 it."
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #8 fediverse/2954 ---
══════════════════════════════════════════════════════─────────────────────────────
 whenever my cat is whining I walk around doing things that she might want
 until she stops trying to claw me - oh you want your litter cleaned? yeah sure
 I gotchu. oh you wanna go outside? nah okay how about playing with this yarn?
 no? okay let's see... oh dear you can see the bottom of your food bowl,
 conveniently forgetting the other mostly full food bowl over there... 😅
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #9 fediverse/5065 ---
═══════════════════════════════════════════════════════════════════────────────────
 ┌────────────────────────────────────────────┐
 │ CW: strange-ideas-about-software-mentioned │
 └────────────────────────────────────────────┘


 software should have 3, maybe 4 or 5 maintained releases imo
 
 for adding security improvements and whatnot
 
 then people wouldn't complain about updates
 
 because they wouldn't feel like they were being left behind (after expressing
 their differences (of opinion and such))
 
 I think that'd uh maintain them as, I guess, userbase optics parallelograms?
 oh sorry we're on rhomboids this week - right, and no I won't forget the
 differences in creed, all things are received equally...d.
 
 uh-huh yeah no that makes sense. gotcha. okay see you at the location. have
 fun with your demarketion. what if we played games with swords but like,
 
 the peril of steam is that you can't decline to update. meaning if a
 corporation wants to break an old game and it's collectively hosted servers...
 all it has to do is push an update that disables them. suddenly nobody has
 room to do, and the whole
 
 -- stack overflow --
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════───────────────┘

--- #10 fediverse/2123 ---
═════════════════════════════════════════════════════──────────────────────────────
 Every time you see the same dog being dog-sat by another person it's an
 opportunity to make a new friend.
 
 or do you not know your apartment neighbors? do they not wander through your
 shared yards?
 
 the ones with dogs, at least.
 
 and no, I don't know many of my neighbors.
 
 these are considerations to be taken note of for future forethought planning.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #11 messages/1270 ---
═════════════════════════════════════════════════════════════════════════════════──
 "this is too easy" thought the one guys to another, as they glanced about at
 their trending behavior.
 
 -- stack overflow -- sorry I had to interrupt: "what if you used scissors or a
 knife to cut your diapers and then saw what kind of plants would grow in what
 conditions?" I betcha could evolve an organism (careful, might be small) that
 could grow from plastic. I wonder what their fruit would be used like?
 
 anyway, as I was saying, if you ever notice that your mortal foes aren't
 putting up much of a fight, chances are you're being used to do evil. Keep
 yourself awares, but do research-thought-imagines about the nature of
 goodness. Picture yourself from the perspective of your foes. Develop
 conceptions of justice. Validate through mutually experimental contests of
 charms.
                                                           ─┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════════─┘

--- #12 fediverse/1795 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-246 
 
 back-track, but leave a leaf in the center of the trail at every turn. Like
 breadcrumbs. If you're both backtracking you might miss one another and walk
 much further than necessary. But if you're backtracking and you've left enough
 leaf signs without meeting your partner, you can safely stop and wait for them
 for a bit.
 
 Nature can handle it. A leaf or five isn't that big of a deal when your safety
 is on the line.
 
 If it's windy, use a stick or a stone or something heavier
 
 It also depends on how far apart you usually travel.
 
 If you're in an urban area, could use a small brightly colored post-it cut
 into small strips placed on a wall high-up as you can reach. Though that
 requires preparation. If you can't prepare, you could use other signs that
 make sense in the space around you, like a coffee cup taken from a trash-can
 and placed next to it, or something. Downside is (is this really a downside?)
 most people are good and so will judge you for littering but safety in
 situations is important.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #13 notes/conservative-ideation ---
═════════════════════════════════════════──────────────────────────────────────────
 a life without property can be visualized as a person who lives in a hotel
 room,
 has free parking overnight (but not during the day) and commutes two hours to a
 job where they work 4 hours per day. During those two hours at the start and
 end
 of each day,they have little requirements other than focus and discipline to
 face whatever tomorrow yet may. many will listen to podcasts, or sing to in the
 car. some have a cat, that is cared for at their destination during the day.
 I think it'd be cool to have self driving cars in a situation like that - it
    essentially becomes 
 
 ===============================================================================
 =
 
 a trick, I learned, for cooking. two things. the second is that seasoning
 should
 be thought of as a coating. like, dust on the outside of a donut. as the food
 is
 cooked, the seasoning penetrates deeper and deeper to the core of the substance
 - meaning certain flavors become prominent and others are de-emphasized over
 time. And the well-established cook (most successful) will be able to ensure
 their narrative doesn't go foul. They have the most experience, and so they are
 the least likely to burn their own goods. Surely they should be trusted to
 establish their company in the philosophy of their own choosing? Business
 people
 ruin everything, I swear. And it's not even their fault, so you can't even get
 mad at them. How frustrating! That their method should prove superior? Perhaps
 more perspectives are necessary, to provide you some kind of a clue. So what if
 we're overflowing, 
 
 ========= stack overflow
 =======================================================
 
 for each action, there is an equal and opposite reaction. therefore it doesn't
 matter what you do, because each of your options are recorded. 50% of you is 
 aligned to some variable, and the other 50% are aligned to that variable
 squared. humans think it's tymes negative one, but the truth is that's
 impossible. negative numbers just don't exist. but you know what does?
 
 times tables
 
 addition and accretion is the only language spoken by the universe -
 subtraction
 is just another in kind. So with those two operations, both movements in a
 particular direction, (and sometimes not even then, if nothing's been blown
 apart. (also hawking radiation and lightwaves and other such emanations))
 
 ===============================================================================
 =
 
 crystals glow with the light of a thousand nights
 
 what grows with the light of the thousand lights?
 
 ===============================================================================
 =
 
 answer: s    t             n   a       lp
 
 ===============================================================================
 =
 
 see, this is interesting because it mirrors the sea-shore. the radiations from
 the sun (a planetary body) are only felt by the moon every 50% of the time.
 Each
 half has it's own animation, and it's 
 
 ===== stack overflow === okay basically it's like cartoons that are
 manifestatio
 of the spirit of the night. each "slice" of projection as the sun rotates
 around
 it's sphereical form, so does each radiance begin to be (seen, formed,
 understoo
 
 ========================================== uhhh just put in a page break
 =======
 
 the quest for posterity is quite possibly one of the most human of traits
 
 ===============================================================================
 =
 
 < watch flashback > --- is crazy (movie made in 2020)
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════─────────────────────────────────────────┘

--- #14 fediverse/5834 ---
══════════════════════════════════════════════════════════════════════════─────────
 would you feet a cat at your door?
 
 how about a crow?
 
 would you water a dying plant? (don't, they get waterlogged if the soil is
 already moist)
 
 what if a dear
 
 what if dear food
 
 what if bear
 
 what if bear food
 
 what if dogpack
 
 what if dogpackfoodtearchompbitepullsavor
 
 I'd feeeed my self but dollars and errands are hard : (
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

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

--- #16 fediverse/296 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: mathematics  │
 └──────────────────────┘


 @user-211 I drew this picture recently and I don't really get it anymore but I
 think it's about placing your perspective at the origin and viewing every
 direction as a different dimension?
 
 side note, but if zero has a positive and negative side, do you think infinity
 has a positive and negative side as well?
math diagram explaining an argument for the viewing of 3d math dimensions from a particular perspective, like "front" or "back" or "north" or "south" or "forward" or "backward" etc  also complaining about the image editing program I was using  root negative one over one equals zero  could go in any direction, tbh  the numbers closest to zero are the most useful. they're just an abstraction we build upon the world. thank you, sh  then some absolute nonsense that I can't even read at this scale and I can't be bothered to zoom in on because I suck and am lazy and am focused on other things.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #17 fediverse/3030 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-570 
 
 ooooo separating additive and multiplicative, I love that. I do like
 specificity unless "increased" and "more" always corresponds to +10% and +50%,
 or if the "rate of increase" is a stat stored on the character then
 "increased" could increase quality by however-many percentage,, while "more"
 could be "more soldiers" x(charisma_stat)
 
 I tend to think of percentages like "0-100 (or more) stacks" of a particular
 effect, so I think that's just how my brain works... xD clumping them up into
 discrete groups - like, anti-abstracting, or measuring things that are just a
 few.
 
 "is this belt better than this one?"
 
 "is this pair of tongs 
 
 even for larger buffs like +10% or +50% or whatever, those are just... 10
 stacks, or if percentages are usually round numbers like +10% and +50% then
 like... +1 stack which calculates to +10%
 
 the hard limit vs math limit thing you said is amazing ^_^
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #18 fediverse/2706 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌──────────────────────┐
 │ CW: politics         │
 └──────────────────────┘


 feds will "break" into your house noiselessly while leaving no trace when
 you're confirmed to not be home and photograph EVERYTHING.
 
 if you have in-door camera systems, they can disrupt those and they give you
 false confidence.
 
 EDIT: also they're trained to always check after opening a door for any fallen
 markers and such - like, leaving a piece of paper between the door and the
 frame and if it's fallen when you return home, you know someone has been
 through that way - and if they notice anything like that they replace it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #19 fediverse/5915 ---
══════════════════════════════════════════════════════════════════════════─────────
 washing dishes without a dishwasher is a pain in the neck.
 
 nobody cuts down trees with an axe anymore, a chainsaw is better for your back.
 
 It's nice, fun, and helpful to be able to abstract away your spheres of concern
 
 like typing with a single button instead of writing characters with multiple
 brushstrokes. Easy to erase, too!
 
 bikes are better than walking, but, with some extra concerns. where are ya
 gonna put it when you get there?
 
 "oh no I forgot how to walk because texting my girlfriend is bicycling or
 something" what? oh dear, she's run off track again, let's pick her up and put
 her upright again..:
 
 oh huh weird where was I - oh yes computer code can often be impenetrable to
 the layperson, but if you describe a program in complete detail in english
 they can usually follow along. Especially if you have several layers of
 meta-descriptional documents so they can say "oh uh-huh so that's what a
 vector_implementation_container is, tell me more about combinatrix" or
 whatever ppl say, idk
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #20 fediverse/980 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────┐
 │ CW: kink-lewd-nsfw   │
 └──────────────────────┘


 what else would you expect from a witch
 
 50% is "no opinion" on the scale, btw, not like "I like this 50% more than
 zero" it's actually zero. This should scale from -50 to 50 with that in mind,
 instead of 0 to 100, but oh well. UX design amiright
a person's quiz results from an online test determining their sexuality direction, instead of orientation.  results summary: taken 2024, february 8th.  == Results from bdsmtest.org ==  80% Vanilla  57% Non-monogamist  46% Experimentalist  40% Voyeur  39% Exhibitionist  25% Switch  14% Dominant  11% Submissive  4% Primal (Hunter)  1% Daddy/Mommy  0% Rigger  0% Ageplayer  0% Brat  0% Brat tamer  0% Degrader  0% Degradee  0% Boy/Girl  0% Masochist  0% Master/Mistress  0% Owner  0% Pet  0% Primal (Prey)  0% Rope bunny  0% Sadist  0% Slave  end of results.  of note is 80% vanilla, meaning attachment to the more primal or innate values and experiences of sex, rather than activities built for a specific purpose.  next is non-monogamist, meaning multiple partners. Love doesn't have to be confined to a single person, it's a passionate tool that can be used to develop bonds between people and foster affection for a cause.  next is experimentalist, as in "I'll try anything once" because otherwise how would you learn  we're already at 40% now, with voyeur, as in "if it was part of art or a ritual I'd totally watch someone have sex" but not excitedly more like "yeah uhhhh if that's necessary sure"  next is exhibitionist, and for the same reason it's close at 39% - meaning I'd slightly rather watch than perform  (though I am an excellent performer.)  running out of words - okay the rest are switch 25%, dominant 14 vs submissing 11, meaning I can relate above and below, but a bit more below
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘