=== ANCHOR POEM ===
══════════════════════════════════════════════════════─────────────────────────────
 @user-246 
 
 One of those is a symbolic manipulation, the other is arithmetical. And
 symbolic manipulations are limited only by the symbols you use to express
 them, while arithmetic is grounded in logic.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

=== SIMILARITY RANKED ===

--- #1 fediverse_boost/4174 ---
◀─[BOOST]
  
  the belief that the world consists of discrete 'objects', rather than regarding it as an undifferentiated field of matter to which we can attach various framings, is a widespread mental limitation  
  
                                                            
 similar                        chronological                        different 
─▶

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

--- #3 messages/329 ---
════════════════════════════════════════════════════───────────────────────────────
 LLM training data that's been encrypted in such a way that it preserves
 symantic meaning, while also allowing for secrecy and unique customization
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

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

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

--- #6 messages/110 ---
═════════════════════════════════════════════──────────────────────────────────────
 The best way to program computers is to organize them according to their
 relations. Like, when x increases by 4 then y increases by 2 - basically, a
 math equation that you can continuously solve by calculating more and more
 comprehensively and deeply.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #7 fediverse/2541 ---
═══════════════════════════════════════════════════════────────────────────────────
 rhythm and rhyme are meant to be abused. be creative and it won't matter.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #9 messages/662 ---
═════════════════════════════════════════════════════════════──────────────────────
 The trolley problem, but you're strapped to the track, and pulling the lever
 means working hard for months on end.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #10 fediverse/4084 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌──────────────────────┐
 │ CW: re: -mentioned   │
 └──────────────────────┘


 @user-1074 
 
 the more you try, the more you have to calculate, which is a problem, because
 endlessly recursive calculations create infinite loops, which frankly are
 impossible to compute because they defy computation! Not good, not ideal, no
 thank you, not for me, no thanks, not what I'd like.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #11 fediverse/3082 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌─────────────────────────────────────┐
 │ CW: states-mentioned-climate-change │
 └─────────────────────────────────────┘


 the government doesn't want you using solar panels because then the coal and
 gas infrastructure won't be able to consume coal and gas, and everyone knows
 that using resources as fast as possible is surely the best and most
 productive use of our state's time
 
 like, subsidies exist. they could just... make it cheaper, but instead they're
 stuck doing... nothing of value
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

--- #15 fediverse/2786 ---
═══════════════════════════════════════════════════════────────────────────────────
 the best way, I find, to be deserving of trust is to do the best that you can,
 and be honest when you cannot do more.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

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

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

--- #21 fediverse/617 ---
══════════════════════════════════════════════─────────────────────────────────────
 So much of computing is just... handling the quirks of hardware and presenting
 it to the user (programmer) in a way that is sane and makes sense, instead of
 the arcane and [nebulous/confabulous/incomprehensible] way that physical
 nature demands our absurdly potentialized computational endeavors be.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #22 fediverse/1841 ---
══════════════════════════════════════════════════════─────────────────────────────
 curling up in a ball and thinking about crying for hours is the same as
 crying. If a little bit less of a release.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #23 fediverse/3912 ---
═══════════════════════════════════════════════════════════────────────────────────
 the quickest flaw in a novice's strategy is to act upon what is there, not
 upon what may yet be.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #24 fediverse/2544 ---
═══════════════════════════════════════════════════════────────────────────────────
 video games are useful for inspiring the mind engaging in a child's play,
 teaching lessons of strategy through the observation of mechanics engaged, or
 filling the heart with emotion, as any good artwork will do.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #25 fediverse/2881 ---
═══════════════════════════════════════════════════════────────────────────────────
 "never lose your totem"
 
 I only lose things when in motion. at rest I know where everything is.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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


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

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

--- #28 fediverse/4640 ---
═══════════════════════════════════════════════════════════════────────────────────
 LLMs are useful for:
 
 categorizing text
 summarizing text
 transforming text
 
 LLMs are not useful for:
 
 generating text
 being intelligent
 replacing workers
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

--- #29 fediverse/6429 ---
═══════════════════════════════════════════════════════════════════════════════────
 with a sword, consider "stabbing" to be "the fundamentals". If you master
 stabbing, you will naturally excel at other arcs.
 
 my sword is evenly weighted instead of balanced at the hip. It is a
 short-spear in function, with blade all the way down.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #30 fediverse/286 ---
═════════════════════════════════════════════──────────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: mathematics  │
 └──────────────────────┘


 @user-211 I agree! The problem is the limit as x->0 from the left and right
 trend toward different infinities, meaning it's neither -infinity nor
 +infinity. Which makes me think that it's the value that's exactly in the
 middle, AKA zero.
 
 Why wouldn't 1/0 be zero? Division is just inverse-multiplication, and
 multiplying anything by zero is zero. Why wouldn't division use the same
 rules? I don't understaaaaaand T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #31 fediverse/714 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-538 
 
 I'd offer that meticulous, uncompromising ethics is the only efficient,
 sensible, and optimized method of operation (assuming maximum prosperity at
 maximum distribution is a goal).
 
 True, as long as the axioms that comprise the ethics are valid and the
 supporting arguments are sound
 
 EDIT: cut out the bits that I'm not an expert on
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #32 fediverse/6409 ---
═══════════════════════════════════════════════════════════════════════════════────
 ┌────────────────────────────────────┐
 │ CW: revolutionary-policy-mentioned │
 └────────────────────────────────────┘


 example of statistics related to revolution that I care about: number of
 children who go hungry
 
 example of statistics related to revolution that my girlfriend cares about:
 number of girls who want to be snuggled and are snuggled
 
 both are important, just like it's important to know both geometry and anatomy.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #34 messages/280 ---
═════════════════════════════════════════════════──────────────────────────────────
 Fighting each other is such a waste of ammo.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #35 fediverse/5113 ---
════════════════════════════════════════════════════════════════════───────────────
 any game with the ability to interact with the simulation through command line
 arguments is a game that is scriptable and infinitely expandable.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #36 fediverse_boost/5566 ---
◀─[BOOST]
  
  We have to figure out how to take care of each other and fight alongside one another which means we have to actually, like, listen to each other.  
  
                                                            
 similar                        chronological                        different 
─▶

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

--- #38 fediverse/42 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 I always conceptualized bases as "the amount of numbers you can stuff
 into a bucket before you spill over to the next bucket". Call it a holdover
 from learning binary a bit younger than most people would consider normal...
 Anyway with base 2 it makes sense. Put one thing in the bucket, and if there's
 something there then it spills over.
 
 But if the bucket is ALWAYS full, as in base 1, then you'd have to do a tally
 system like you said: essentially counting from 0, then adding one to the end
 making 10, then 110 for two, and 1110 for three, and 11110 for four, etcetera.
 The reason you leave 0 at the end is because zero is a number and must still
 be represented as a tally - it just uses a different symbol for our human
 interpretation. Zeroes deserve respect in base 1 just the same as any other
 number! zero rights are human rights... no that doesn't quite work, zero
 rights are number rights? nevermind that joke is stupid
 
 (continued)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #39 fediverse/5362 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-1810 
 
 stability in an unjust system is cruelty.
 
 they want stability, no matter the cruel cost.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #40 fediverse/1313 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌────────────────────────┐
 │ CW: politics-economics │
 └────────────────────────┘


 if we had a universal basic income then we could pay each other to solve our
 problems and they just can't have that.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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


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

--- #42 fediverse/4437 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌──────────────────────┐
 │ CW: guns-mentioned   │
 └──────────────────────┘


 buying guns is one thing
 
 but food is just as important.
 
 stores run out, but quartermasters know where to find things.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #43 messages/292 ---
══════════════════════════════════════════════════─────────────────────────────────
 Steganography is the art of hiding your meanings from AI analysis
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #44 messages/237 ---
════════════════════════════════════════════════───────────────────────────────────
 The worst thing about being trans is our numbers are limited by biology, not
 philosophy.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #45 fediverse/6343 ---
═══════════════════════════════════════════════════════════════════════════════────
 you can revolute whenever you want to.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #46 fediverse/5195 ---
═════════════════════════════════════════════════════════════════════──────────────
 whenever you test one extreme, you must also test it's opposite, just for the
 extra information.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #47 fediverse/5630 ---
════════════════════════════════════════════════════════════════════════───────────
 changelogs are an innovation that bureaucracy could not manage without
 computers
 
 and indeed always sets upon your data a time-limit, no matter the
 implementation method
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #48 fediverse_boost/665 ---
◀─[BOOST]
  
  sogginess levels are 13% and steady                                         
                                                                              
  (13%)  ■□□□□□□□□□                                                           
  
                                                            
 similar                        chronological                        different 
─▶

--- #49 messages/306 ---
══════════════════════════════════════════════════─────────────────────────────────
  computer science exists as the border between philosophy and mathematics,
  while society exists as the border of computer science and biology
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #50 fediverse/84 ---
═══════════════════════════════════════════────────────────────────────────────────
 Life is just a series of minigames for your primate brain to solve that are
 generated by an impossibly complex algorithm with a dash of ethical
 value-based choices thrown in.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #51 fediverse/6307 ---
══════════════════════════════════════════════════════════════════════════════─────
 AI systems like chatGPT don't "get" emojis by looking at them.
 
 They're reading the description tagged onto the unicode value inserted in the
 text.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #52 messages/765 ---
═══════════════════════════════════════════════════════════════════────────────────
 you don't have to write poetry to write notes. The poetics are just practice
 for when secrecy is intended.
 
 OR IS IT THE REAL THING? who can say.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════───────────────┘

--- #53 messages/178 ---
═══════════════════════════════════════════════────────────────────────────────────
 A god is less of an object and more of a direction.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #55 messages/400 ---
═════════════════════════════════════════════════════──────────────────────────────
 The schizophrenic sees truth in dazzling displays of colors unknown to man,
 while the neurotypical sees truth in shades of gray that can be reasoned with.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #56 fediverse/280 ---
════════════════════════════════════════════───────────────────────────────────────
 old school programmers use short variable names because the computer monitors
 they would code on had a lower resolution, meaning fewer characters per line.
 
 why waste pixels being verbose?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

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

--- #58 fediverse/3736 ---
═════════════════════════════════════════════════════════──────────────────────────
 what if we made cat little boxes with stable "pillars" or "platforms" that
 rise just barely above the sand level so their feet don't sink into the
 litter, thus reducing the amount tracked onto the carpet
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #59 fediverse/3050 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: politics         │
 └──────────────────────┘


 you can only vote with your words if your words sway your audience.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #60 fediverse/1336 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────┐
 │ CW: economics        │
 └──────────────────────┘


 the ethical use-case for currency is to express interest, not to identify
 worth.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #61 fediverse/1125 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-838 
 
 x2 scales exponentially but it will never equal 3 (using integer values of x
 of course)
 
 perhaps the force can do things that make the destruction of a planet seem...
 childish and arbitrary
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #62 fediverse/4048 ---
════════════════════════════════════════════════════════════───────────────────────
 The transcriber wants to be part of the discussion forum, and laments the
 impossibility of that, because tainted data is useless to an experiment.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #63 messages/1085 ---
════════════════════════════════════════════════════════════════════════════════───
 When other people use your objects, they will always damage them more than you
 do. Share with this in mind.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

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

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

--- #66 messages/383 ---
═════════════════════════════════════════════════════──────────────────────────────
 the most successful strategy is always to strike from a position of strength.
 whether that be timing or power, the goal is to defeat the problem that lies
 before you. One by one, problems are solved, until at last you're through the
 worst of it. Then it's just a matter of expressing dominance, and "this is how
 thing's're gonna be."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

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

--- #68 fediverse/4906 ---
═════════════════════════════════════════════════════════════════──────────────────
 @user-763 
 
 use the gameboy as a database
 
 there's a 0 percent chance that any network spy guys would be able to see
 what's stored on a gameboy cartridge. truly the most remote of classes of
 places.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #69 fediverse/6435 ---
═══════════════════════════════════════════════════════════════════════════════────
 if everyone was trained to think? would direct democracy work? until we have
 radical abundance (fascist ideology, take from the weak) or, hear me out, or,
 infinitely scale
 
 old style machine learning was just problem solving.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #70 messages/1002 ---
═══════════════════════════════════════════════════════════════════════════────────
 In revolutionary Cascadia, you don't have to do anything different. Until you
 decide you want to.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

--- #72 fediverse/5670 ---
════════════════════════════════════════════════════════════════════════───────────
 applied intuition combined with well developed imagination is a dangerous tool
 to behold. useful, but dangerous.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #73 fediverse/1804 ---
══════════════════════════════════════════════════════─────────────────────────────
 adaptation is something which can be practiced. Versatility comes in handy
 when you'd least expect it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #74 fediverse/767 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-192 @user-570 
 
 clearly the positive addresses point toward a location in "memory", while the
 negative values point toward "forgotten" which is a secret second place that
 they don't want you to know about.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #75 messages/421 ---
═════════════════════════════════════════════════════──────────────────────────────
 Cannabis is fundamentally a feeling of motion. You can't remember anything
 because things only make sense moving forward in that particular context and
 in that particular plane.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #76 messages/343 ---
════════════════════════════════════════════════════───────────────────────────────
 Person, family, neighborhood, city, state, nation, planet. This is a rough
 description of each "tier" of algorism. These rules apply at every tier, so
 though I said "state" and "nation" for the presented arguments they are
 equally relevant to the family and the planet.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #77 fediverse/1166 ---
════════════════════════════════════════════════───────────────────────────────────
 something something "reticulating symphonies of harmonic circularity, charting
 and assessing our woes - learned authenticity derived from marked
 elementocracy, contriv-ed and measured through flow."
 
 or something along those lines, gimme a break I'm neurodivergent
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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


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

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

--- #80 fediverse/3988 ---
═══════════════════════════════════════════════════════════────────────────────────
 being "good at video games" does not mean "are you good at beating the game"
 
 being "good at video games" means "can you make the experience enjoyable for
 other players by using your character in an expressive and dynamic way"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #81 fediverse/739 ---
══════════════════════════════════════════════─────────────────────────────────────
 one important thing about image generation algorithms like Stable Diffusion is
 they can reveal something about our hearts.
 
 all data derived from the masses is naturally inclined to reflect the
 affections of it's kind. Otherwise it'd be unstable, and find itself it's own
 ways to not fail, including moving somewhere it feels safer.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #82 fediverse/6436 ---
═══════════════════════════════════════════════════════════════════════════════────
 force computers to make code in a different style so we can tell which has
 been AI written
 
 "force" is never gonna work.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #83 messages/1236 ---
══════════════════════════════════════════════════════════════════════════════════─
  true AI is when no decision or logical momentum can be explained by "... and
  that value was randomly generated." -- (my opinion)
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #84 messages/1177 ---
══════════════════════════════════════════════════════════════════════════════════─
 it's more than a community if only one person asks where you've been.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #85 fediverse/4074 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌──────────────────────────┐
 │ CW: capitalism-mentioned │
 └──────────────────────────┘


 "buying something" under capitalism just means that you get less of everything
 else in exchange for this particular thing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #87 fediverse/3715 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-217 
 
 I see flossing teeth
 
 I see thongs in a butt
 
 I see a gravity well with a pinprick of a singularity
 
 I see the Mandelbrot set being caressed by inter-spatial wind
 
 I bet if I stared a bit longer I'd see more
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #88 messages/968 ---
══════════════════════════════════════════════════════════════════════════─────────
 what if you painted every house twice, to ensure you got the color completely
 applied [ bright green or yellow would shine through in little spots, clear
 and obvious to even the most undiscerning of patrons of the arts
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #89 messages/1090 ---
════════════════════════════════════════════════════════════════════════════════───
 programmable matter is cool because you can interact with it on a human scale.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #90 notes/programming-style ---
════════════════════════════════════════════════════════════════════════════════───
 my programming is not a product., it is a way of thinking.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

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

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

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

--- #94 fediverse/1100 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-803 
 
 sunshowers are my favorite weather pattern because they are an inherent
 contradiction. It makes it more beautiful to me because there are so few such
 things that are pretty... Most other contradictions tend to be uglier >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #95 fediverse/53 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-59 @user-55 for an example of this, check out my website ritzmenardi.com
 - no ads or anything, just art that is designed to be impossible to categorize.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #96 fediverse/1394 ---
═════════════════════════════════════════════════──────────────────────────────────
 the sun doesn't seem as bright if you spend your days underneath it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #97 messages/189 ---
═══════════════════════════════════════════════────────────────────────────────────
 If one side aligns themselves toward truth and righteousness, then those who
 oppose them must necessarily utilize the opposite in their intentions.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #99 fediverse_boost/5393 ---
◀─[BOOST]
  
  External post: https://synthehai.z0ne.social/users/gamer_simulator_2025/statuses/01JXH4Q4HX33GXPM7Y2YJN1Q2N  
  
                                                            
 similar                        chronological                        different 
─▶

--- #100 messages/217 ---
════════════════════════════════════════════════───────────────────────────────────
 The point isn't to make solutions. You're too hung up on the question of "what
 could be better than capitalism"
 
 Make something better when it's time. For now, just get people on your side.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #101 messages/447 ---
══════════════════════════════════════════════════════─────────────────────────────
 Symbeline is a competitive simulation game with enough dynamic elements to
 keep it unpredictable, like how roguelikes are more replayable than ARPGs.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

--- #105 fediverse/6279 ---
══════════════════════════════════════════════════════════════════════════════─────
 people can't compel you to give gifts, that's why they're gifts. which is why
 a gift economy can't be all, because sometimes you need something now.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #106 fediverse/4012 ---
═══════════════════════════════════════════════════════════────────────────────────
 you can't just tell people you're enlightened. You gotta trick them, and
 convince them you're sane first.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #107 fediverse/4825 ---
═════════════════════════════════════════════════════════════════──────────────────
 mutual aid level 12:
 
 "this one is closer to that one over there, and I like this area better, so
 this one is mine, and that one can be yours"
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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


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

--- #109 fediverse/1723 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 Lua with 0 based indexing would be the perfect language (okay maybe LuaJIT)
 
 (i try to hurt as few people as I can as little as I can but it's impossible
 to not hurt anyone)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #110 messages/463 ---
══════════════════════════════════════════════════════─────────────────────────────
 A democracy only works if the losing side consents to being governed by the
 victor.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #111 fediverse/4485 ---
═════════════════════════════════════════════════════════════──────────────────────
 getting the phone numbers of cute he/thems at a bar is NOT the same as
 organizing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #112 messages/979 ---
══════════════════════════════════════════════════════════════════════════─────────
 the gods don't judge you based on the total number of "good" or "bad" points
 that you get.
 
 they judge you based on your character in your greatest and worst moments.
 
 if you try to dodge or game this by never doing anything extreme and simply
 existing in a medium state at all times, they will develop a moment of
 reckoning for you and thus produce an opportunity to react and show your true
 self. There is no escape from their judgement, so judge yourself kindly and
 fairly.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

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

--- #114 messages/1166 ---
══════════════════════════════════════════════════════════════════════════════════─
 A black hole's event horizon is just when the matter "broke through" to the
 other dimension and now light can't escape because the surface is in shadow.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

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

--- #116 fediverse_boost/3198 ---
◀─[BOOST]
  
  If #Musk is allowed to say "#CivilWar is inevitable", we're allowed to say revolution and the uncompensated nationalisation of the assets of billionaires is inevitable.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #117 fediverse/3386 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌──────────────────────┐
 │ CW: mental-health    │
 └──────────────────────┘


 observation is when you look with no assumptions.
 
 paranoia is when you assume you can be seen.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #118 messages/89 ---
═════════════════════════════════════════════──────────────────────────────────────
 Consumption is contribution to a capitalist system. Normalize taking whatever
 you are given and living as humbly as you can. Only when everyone does that
 may capitalism die. Talk to them, learn from their stories. Teach them your
 ways but don't force anything upon them. Any ounce of regret is defined as a
 mind not aligned to the angle of perception that designs the line that the
 collective mind co-re-assigns.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #119 fediverse/1320 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌───────────────────────────────────────────────────────┐
 │ CW: cursing-mentioned-programming-languages-mentioned │
 └───────────────────────────────────────────────────────┘


 BASH with the syntax/semantics of LUA and the performance of C would probably
 be the perfect language, IMHO
 
 procrastinating again, damnit
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #121 fediverse/4405 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌─────────────────────────────────────────────────┐
 │ CW: re: uspol-revolutions-and-stuff-or-whatever │
 └─────────────────────────────────────────────────┘


 The bigger a county is on the electoral map, the weaker it is. But, the more
 space required to control it completely. Treat the largest counties like
 Badlands - difficult to traverse unless in numbers, and even with numbers
 you're a bright shining target. Very little food, very few supplies, often not
 worth controlling aside from the peace and knowledge that your foes will not
 attack from that direction.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #122 messages/622 ---
═════════════════════════════════════════════════════════════──────────────────────
 The bigger a county is on the electoral map, the weaker it is. But, the more
 space required to control it completely. Treat the largest counties like
 Badlands - difficult to traverse unless in numbers, and even with numbers
 you're a bright shining target. Very little food, very few supplies, often not
 worth controlling aside from the peace and knowledge that your foes will not
 attack from that direction.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #123 messages/211 ---
════════════════════════════════════════════════───────────────────────────────────
 In the game her expression is Japanese because the game's closest
 approximation uses ninjas. But she's closer to a dynamic rather than an
 instantiation.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #125 fediverse/5116 ---
════════════════════════════════════════════════════════════════════───────────────
 tape the first and last page of a zine to a telephone pole and write
 underneath it "tear out a page if you need it to explain an argument"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #126 fediverse/1393 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────┐
 │ CW: guns-mentioned   │
 └──────────────────────┘


 martial arts are an art in the same way that plinking is target practice.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #127 fediverse/1825 ---
══════════════════════════════════════════════════════─────────────────────────────
 if one person is honest to everyone, then no-one can be honest to them for
 anything they want to keep hidden.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #128 fediverse/3474 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-883 
 
 true, but much the same way people will rebel against inconvenience by writing
 passwords on sticky notes, so too might they put SSH keys onto the nearest
 flash drive without validating that it hasn't been compromised. There's
 tradeoffs everywhere I guess.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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


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

--- #130 messages/1243 ---
══════════════════════════════════════════════════════════════════════════════════─
 names are the most powerful things there are. you can do a lot with a name. it
 gives you predictive powers over the nature of the named. they tell you have
 been wronged. --->
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #131 messages/315 ---
═══════════════════════════════════════════════════────────────────────────────────
 The need to engage with capitalism has reduced my output dramatically.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════───────────────────────────────┘

--- #132 fediverse/862 ---
═══════════════════════════════════════════════────────────────────────────────────
 the neat thing about fusion is you can use energy to create matter. out of
 nothing!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #133 fediverse/641 ---
══════════════════════════════════════════════─────────────────────────────────────
 something something "those who study history are doomed to watch others repeat
 it" or something like that
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #134 messages/580 ---
════════════════════════════════════════════════════════════───────────────────────
 An email style conversation application where you can put things up on a board
 with pins. Crucially, you can only remove something that the other person
 wrote. And there's limited space, so you have to carefully manage it together.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #135 fediverse_boost/5196 ---
◀─[BOOST]
  
  Everyone needs to learn the difference between going through something with someone, and someone putting you through something.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #136 fediverse/1089 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌────────────────────────┐
 │ CW: spirituality-scary │
 └────────────────────────┘


 to those who guide our fate
 
 choose paradise
 
 make eden
 
 ======================= stack overflow =====================
 
 clouds of carbon are an affront to the sun god
 
 just as they are an affront to mine lungs
 
 or mine body temperature
 
 [acid oceans are toxic to the plane of water]
 
 [you think that would go unnoticed?]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

--- #139 messages/399 ---
═════════════════════════════════════════════════════──────────────────────────────
 The schizophrenic sees the truth in dazzling displays of color that are nigh
 incomprehensible, while regular people see truth in shades of gray that you
 can understand and work with.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #140 fediverse/2805 ---
═══════════════════════════════════════════════════════────────────────────────────
 there is no such thing as generative AI
 
 only statistical filtration models that align their output to whatever input
 you provide according to the data they are trained to expect.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #141 fediverse/1790 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-883 
 
 The USPS is a model for how our economic system should be run, in my honest
 opinion. At least the logistical parts.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #142 fediverse/2357 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1245 
 
 I disagree. What if we did not learn to count numerically, but instead viewed
 all values as percentages between 0 and 1? Essentially, as a magnitude between
 empty and full.
 
 That would radically redefine our mathematics, and it's just one simple
 change, one tweak, and suddenly negative numbers are just out of reach.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #144 fediverse/41 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 As a thought experiment, what do you think happens using this system
 to divide by 1? What about dividing by 0? Curious to see what you think
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #145 fediverse/4274 ---
════════════════════════════════════════════════════════════───────────────────────
 this is how I nourish my brain.
 
 By being hopelessly profane.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #146 fediverse/3349 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1074 
 
 my understanding is, if someone wanted to create something like that, they
 should start with writing protocols instead of standards, much the same way
 Activitypub or HTTP are protocols for a free and open internet.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #148 messages/185 ---
═══════════════════════════════════════════════────────────────────────────────────
 The only reason a media streaming website would require you to log in before
 expressing it's purpose is to capture and use user data in a way that may may
 not be aligned to your interests.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

--- #151 messages/431 ---
══════════════════════════════════════════════════════─────────────────────────────
 Rent is expensive because they only want you living there if you're working.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #152 fediverse/1822 ---
══════════════════════════════════════════════════════─────────────────────────────
 we should reward frugality as much as value-creation.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #153 fediverse/4042 ---
════════════════════════════════════════════════════════════───────────────────────
 "Argh I hate being validated!"people in denial
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #154 fediverse_boost/668 ---
◀─[BOOST]
  
  heroism levels are 86% and steady                                           
                                                                              
  (86%)  ■■■■■■■■□□                                                           
  
                                                            
 similar                        chronological                        different 
─▶

--- #155 messages/54 ---
═════──────────────────────────────────────────────────────────────────────────────
 https://kali-is-an-abdl.tumblr.com/
─────┐                                                           ┌───────────┐
 similarchronologicaldifferent════─────┴┴───────────────────────────────────────────────────────────────────────────┘

--- #156 fediverse/306 ---
═════════════════════════════════════════════──────────────────────────────────────
 the only unethical act is a destructive application of power to an
 non-consenting subject.
 
 every ethical question is an abstraction of this definition.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #157 fediverse/5652 ---
════════════════════════════════════════════════════════════════════════───────────
 ┌──────────────────────┐
 │ CW: cursed           │
 └──────────────────────┘


 @user-443 
 
 natural disaster vulnerability is freedom from liability if they ever did lose
 their charges.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #159 messages/1212 ---
══════════════════════════════════════════════════════════════════════════════════─
 The gallow is more merciful than a lynching, but only just.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #160 fediverse/3717 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌─────────────────────────┐
 │ CW: mental-health-minus │
 └─────────────────────────┘


 hey, you know how historically they used to lobotomize young women who were
 too fiery, passionate, independent, driven, motivated, and clairvoyant?
 
 they did that on purpose.
 
 that was less than a lifetime ago.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #161 messages/524 ---
══════════════════════════════════════════════════════════─────────────────────────
 Every bit of software you write is another useful toy for the rich to
 incorporate into their AI databases that they can use to build what they'd
 like as they cry themselves to sleep in their bunkers of war and famine
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #163 messages/930 ---
═════════════════════════════════════════════════════════════════════════──────────
 <bang slam kerblam> there goes another line into ram. wonder what it's
 used for.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #164 fediverse/3192 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────────────────────────────┐
 │ CW: re: politics-mentioned-cursing-mentioned │
 └──────────────────────────────────────────────┘


 @user-1475 @user-1476 @user-1280 @user-1074 @user-1477 @user-1478 
 
 You logic is sound for "this is what we should do next"
 
 it's unsound for "this is how we save ourselves"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #166 fediverse/4149 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 "trick or treat" doesn't mean "give me a trick or a treat"
 
 that's awfully presumptuous and demanding.
 
 No, it means "give me a treat or I'll trick you" meaning "give me my candy tax
 or I'll fuck up your lawn"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #167 fediverse/445 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-339 
 
 I'd be interested in an analysis which expressed the percentage of time each
 of these individual items correspond to... each tool we create may reduce the
 effort required to perform a particular task, but said task might be valuable
 not necessarily for it's output but rather for the knowledge we gained by
 solving the problem.
 
 normalize solving problems that have already been solved because you want to
 learn how they work. normalize expressing the lessons you've learned in a
 summarized way that others may digest. normalize trancending the limitations
 of our forms and expanding beyond the capabilities of our humanity.
 
 for what is the purpose of life if not to grow?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #168 fediverse/1366 ---
═════════════════════════════════════════════════──────────────────────────────────
 consider: an internet that can only be reached on a library computer. Meaning,
 no bots allowed.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #169 messages/434 ---
══════════════════════════════════════════════════════─────────────────────────────
 I work with large language models because it's a quick and easy way to turn
 language into meaning. And computers are meaning abstraction machines, so if
 you can speak your language and they hear their language, you can do anything.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #170 fediverse/1712 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-246 
 
 I think you're right, I tend to examine things at their most extreme as
 practice in identifying my own weaknesses. ^_^
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #171 fediverse/174 ---
═══════════════════════════════════════════────────────────────────────────────────
 One of the neat things about the fediverse is that all the accounts posting
 things like train schedules or sports scores gently encourage users to learn
 how to curate their feeds by blocking people who are irrelevant, not just
 those who hurt you
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #172 notes/ideal-raleigh-structure ---
═══════════════════════════════════════════════════════════════════────────────────
 with a baseline directory structure,
 a measure of order and semblance of
 direction and purpose enable three.
 next, of course, is the final of 1
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════───────────────┘

--- #173 fediverse/5081 ---
════════════════════════════════════════════════════════════════════───────────────
 what if mastodon recorded the date and time of every time you boosted /
 unboosted something so you can keep track of what your page looked like over
 time [in the export data functionality]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #174 fediverse/2635 ---
═══════════════════════════════════════════════════════────────────────────────────
 something something parasocial relationships are not real and cannot be used
 for anything beyond the amelioration of emotions for cathartic purposes
 something something your coping mechanisms are doing more harm than good
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #175 messages/235 ---
════════════════════════════════════════════════───────────────────────────────────
 Self driving cars are great because they can take you on a route that avoids
 the [disturbing imagery] and [illegal activity]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #177 fediverse/613 ---
══════════════════════════════════════════════─────────────────────────────────────
 The reason they're pushing so hard for LLMs and AI is because they can afford
 a zillion Nvidia a100s and you can't.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #178 fediverse/3570 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1558 
 
 I contest trolls too because it fulfills my internal adventurer instinct to
 protect marketplaces and farmhouses from savage brutes made out of moss with
 clubs the size of a log
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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


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

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

--- #181 fediverse/5831 ---
═══════════════════════════════════════════════════════════════════════════────────
 it's okay to be a little evil sometimes
 
 all things are defined in waves, and your highest peaks are nothing without
 low valleys to accompany them. Balance arises naturally from the contest of
 these two natures, and, well, you're gonna figure it out anyway no matter what
 I say so why bother teehee
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #182 fediverse/40 ---
══════════════════════════════════════─────────────────────────────────────────────
 @user-36 so what you're saying is I need to come up with an easier way to
 change bases? Or at least a way to digit shift in a different base than what
 you currently have. Sounds complicated.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #183 fediverse_boost/95 ---
◀─[BOOST]
  
  "A gem cannot be polished without friction, nor a man perfected without trials."  
  
                                                            
 similar                        chronological                        different 
─▶

--- #184 fediverse/5067 ---
════════════════════════════════════════════════════════════════════───────────────
 some people think "being honest" is the same thing as "accurately displaying
 what you think and believe" is the same thing as the not same thing as "being
 deceitful or otherwise hiding your intentions"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

--- #186 fediverse/3615 ---
═════════════════════════════════════════════════════════──────────────────────────
 code is useless
 
 the ability to write, maintain, or implement it is priceless
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #187 messages/141 ---
══════════════════════════════════════════════─────────────────────────────────────
 Why would we say not to divide by zero? We literally do it every time we use
 the percent sign smh [silly]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #188 fediverse/2610 ---
═══════════════════════════════════════════════════════────────────────────────────
 learning martial arts is not useful for the combat capabilities gained through
 practice
 
 but rather for reading the flow and rhythm of an engagement.
 
 to learn the discipline to practice a craft
 
 to develop healthy and honorable relationships toward competition and jealousy
 
 the practice the drive and passionate motivation that comes with performing an
 art to your utmost capabilities
 
 and to keep you in shape.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #189 fediverse/777 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-192 
 
 Those are good points. The C in our hearts is elegant, but the C that runs on
 every computer in the world is spaghetti.
 
 I'm sure someone's made a language that's "C but simple" - Zig maybe? I looked
 into V a while back but got turned off of both of them because neither had
 support for multithreading, which is essential in the modern era.
 
 Also, typedefs for structs make me mad -.-
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #190 fediverse/6304 ---
══════════════════════════════════════════════════════════════════════════════─────
 Take away the elements in order of apparent non-importance
 
 Hmmmmm.... I'm gonna stay inside unless I decide to go outside. How's that?
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

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

--- #193 fediverse/5640 ---
════════════════════════════════════════════════════════════════════════───────────
 protests are where they prey on your most faithful.
 
 EDIT: with energy, but in a riot much more so.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #194 messages/102 ---
═════════════════════════════════════════════──────────────────────────────────────
 They say that imitation is the most sincere form of flattery, which is why
 there's nobody like me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #195 fediverse/1049 ---
════════════════════════════════════════════════───────────────────────────────────
 #CDCsays there's no difference between a stick and a mud, when it comes down
 to it
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #196 fediverse/3320 ---
════════════════════════════════════════════════════════───────────────────────────
 Infinity is not the highest number.
 
 Infinity is not any number of numbers.
 
 Infinity is all of the numbers in one sigil.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

--- #200 fediverse/108 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 I'm also fond of "I can't know", for things that exist beyond our
 finite existence. For example, the perspective of another, for all it's
 intrinsic value. Being too quick to trust, though, is an easy path to follow.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘