=== ANCHOR POEM ===
═════════════════════════════════════════════════════════════──────────────────────
 user interface tips #18569235:
 
 if a user is expected to click the same button multiple times in a row, for
 example a "next" button in an image gallery, DO NOT move the interface from
 below their mouse pointer and cause them to move their mouse in order to click
 it again.
 
 please don't : (
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

=== SIMILARITY RANKED ===

--- #1 fediverse/1487 ---
════════════════════════════════════════════════───────────────────────────────────
 social media clients that don't return you to the same spot you were at when
 you hit the back button -.-
 
 but then also make it needlessly complicated to open links in a new tab, like
 obfuscating the location you need to cast "middle click" on
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #2 fediverse/4108 ---
═══════════════════════════════════════════════════════════────────────────────────
 what if you could make multiple mastodon accounts in the UI and sort your
 followers into bins that corresponded to which account you wanted to see and
 switch between with the push of a button
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #3 messages/972 ---
═════════════════════════════════════════════════════════════════════════──────────
 vibecoders write detailed instructions. "A for loop which iterates through all
 of the elements" and not "a package manager that stores all of it's instants"
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

--- #5 messages/453 ---
═════════════════════════════════════════════════════──────────────────────────────
 UX idea: text is rapidly revealed (rate configurable) letter by letter and
 upon reaching the bottom of the page it starts over at the beginning,
 overwriting what was there in a different color to show that they're separate.
 
 For colorblind accessibility it might switch between white background black
 text, and black background white text. Again, user configurable, colors are
 cool too.
 
 If the user pushes the spacebar it pauses until they resume it, and it goes a
 bit slower. If they catch up to it they can double spacebar to make it go
 faster!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #6 fediverse/1682 ---
════════════════════════════════════════════════════───────────────────────────────
 girls who have so many tabs open that they use ctrl+T to navigate to the most
 recent tabs
 
 wishing there was a way to scroll back to the beginning... alas
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

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

--- #8 fediverse/2466 ---
══════════════════════════════════════════════════════─────────────────────────────
 do as I say, and as I do.
 
 or don't, do as you want to.
 
 I hope you do want to do what I say to do.
 
 I wouldn't say it if I didn't think it was right.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #9 fediverse/1962 ---
═════════════════════════════════════════════════════──────────────────────────────
 fedi account which boosts a random post from a particular user every time they
 post something new - like listening to that user, but on shuffle
 
 (Ideally configurable with a blacklist, so people could comment "bad bot" or
 whatever everytime it posts one of their comments that say like "yeah same" or
 "whoa that's so cool!" or whatever)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #10 fediverse/3974 ---
══════════════════════════════════════════════════════════─────────────────────────
 it is significantly more engaging to watch people play MMOs when they've
 unbound all their action bars from their number keys and are forced to click
 on all the abilities. That way you can actually follow what moves they're
 doing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #11 fediverse/2764 ---
══════════════════════════════════════════════════════─────────────────────────────
 vim intentionally tricks it's users by making "q" without a semicolon ":" open
 up an input-grabbing menu that can't be gotten out of by pushing ":" semicolon
 or "q". Like... whose idea was that
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #12 fediverse/5552 ---
══════════════════════════════════════════════════════════════════════─────────────
 I once heard that when you click a link, the developer of the website can tell
 which website you came from. idk if that's true or not.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #13 messages/412 ---
════════════════════════════════════════════════════───────────────────────────────
 Coding superpower:
 
 Start thread 
 While(true):
 Run();
 
 Then, whenever you want it to run something else, change the function pointer
 that run() uses to call a function
 
 At the end of the run() function, set the function pointer in the while loop
 to the next one. That way you don't stack overflow from the recursion.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

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

--- #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_boost/6099 ---
◀─[BOOST]
  
  External post: https://hachyderm.io/users/marianoguerra/statuses/115366899548181326  
  
                                                            
 similar                        chronological                        different 
─▶

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


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

--- #18 messages/969 ---
═════════════════════════════════════════════════════════════════════════──────────
 all strategy games should (by default) show other player's mouse cursors.
 players should treat them like units in the game. they should lead and command
 with them. they should talk to the other player, and visit and vview
 invormation as they will.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

--- #20 fediverse/6 ---
═════════════════════════════════──────────────────────────────────────────────────
 ┌──────────────────────┐
 │ CW: Math             │
 └──────────────────────┘


 @user-5 create an array of length 7 initialized to zero. then use a for loop
 that loops 97 times and adds a random number between 1 and 20 to an array
 index that iterates through the array each time through the for loop.
 
 NOTE: be sure to also change the loop counter based on the random number too,
 so you allocate exactly 97 points no matter what random number you get.
 
 Oh and speaking of which if the loop counter 
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════─────────────────────────────────────────────────┘