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

=== SIMILARITY RANKED ===

--- #1 fediverse/2291 ---
═══════════════════════════════════════════════════════────────────────────────────
 you sly dogs, you got me posting again.
 
 unrelated, but I think this is the first script I ever wrote!
a bash script which shuts down a computer.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #2 fediverse/1762 ---
══════════════════════════════════════════════════════─────────────────────────────
 This was the first bash script I ever wrote.
 
 It's been updated a little, it was a bash alias first, but this is what it
 looks like now.
 
 Kinda shows what kinds of problems I needed to solve most.
A bash script that plays a random episode of Adventure Time from a terminal.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #3 fediverse/1694 ---
═════════════════════════════════════════════════════──────────────────────────────
 would anyone be interested in a Bash+Lua script that takes your Mastodon
 archive and turns it into a folder full of .txt files?
 
 I also made a script that spits out a random one on your terminal, if you want
 that
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #4 fediverse/1246 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 hehe if I don't understand how it works it's difficult for me to use things.
 My Linux friends get so exasperated with me because I'm like "cool script
 gimme like 2 days to figure it out" and they're like "bro just use these
 flags" and I'm like "no"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

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

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

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

--- #10 fediverse/6437 ---
═══════════════════════════════════════════════════════════════════════════════────
 if I was writing a programming language, I'd name it C just to fuck with people
 
 (great, now others can decide how it's known)
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #11 messages/929 ---
═════════════════════════════════════════════════════════════════════════──────────
 {[booooo that writing stinks, the writers of the first few lines were better]}
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

--- #13 fediverse/5663 ---
════════════════════════════════════════════════════════════════════════───────────
 I'm going to write some lua code that doesn't do anything useful and which I
 don't share with anyone
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #14 fediverse/2097 ---
══════════════════════════════════════════════════════─────────────────────────────
 If you're writing a bash script, you should never hard-code file locations.
 Instead, put them in a variable at the top of your script, so they're easy to
 find when people need to configure your script or move files around.
 
 It's like a config file built INTO the script itself. Just change the
 variables, they're at the top with comments.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #15 fediverse/2873 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────────┐
 │ CW: re: unsolicited advice │
 └────────────────────────────┘


 @user-883 @user-192 
 
 I don't update my kernel more than like, once every few months, so maybe that
 would be something to look into! how scriptable is it?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #17 fediverse/3680 ---
═════════════════════════════════════════════════════════──────────────────────────
 it's probably a good idea to write pseudocode, then real code, instead of
 starting with real code, and bugfixing something incomplete and more difficult
 to reason with.
 
 unless you write real code easier than pseudocode. idk do what works for you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #18 fediverse/2113 ---
══════════════════════════════════════════════════════─────────────────────────────
 this is what the crypto news looks like rn, if you know anyone who's into that
 kinda thing... wait, why not? me either, huh
 Latest Cryptocurrency News Malicious Crypto Wallet App Submitted to Apple Store Leads to Fraud Charges 26 minutes | news.bitcoin.com Steam’s Clicker Game Sensation Opens Debate About NFTs And Crypto Gaming 46 minutes | newsbtc.com Court allows most SEC claims to proceed in Binance suit 54 minutes | cointelegraph.com Dozens Killed in Riots as Kenya Revolts Against Tax Hikes, Calls for Presidential Resignation 1 hour | news.bitcoin.com Market Tremors: $10 Billion in Bitcoin Dumped in May Alone, What Does This Signal? 2 hours | newsbtc.com North Carolina Passes Bill to Block State Participation in Federal CBDC Testing 2 hours | news.bitcoin.com Is The Bitcoin Bottom In? Crypto Expert Predicts Bullish Price Reversal 3 hours | newsbtc.com Study: Crypto Assets Worth $572.7 Million Lost to Hacks and Fraud in Q2 2024 3 hours | news.bitcoin.com Bitcoin’s price won’t ‘dramatically’ increase from here, says billionaire 4 hours | cointelegraph.com Yield App Suspends Operations Ahead of Liquidation 4 hours | news.bitcoin.com Ethereum’s Breakout Moment: Is a $7,500 Target Achievable? Experts Weigh In 4 hours | newsbtc.com
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #19 fediverse/2811 ---
═══════════════════════════════════════════════════════────────────────────────────
 this is the world I want to live in and I'm not even kidding
a picture of the Earth with no lines drawn for country borders
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #21 fediverse/3164 ---
════════════════════════════════════════════════════════───────────────────────────
 it fails after like 15 or 20 scrapes but I think that's just their scraping
 policy. They don't have a robots.txt file that I could find. So... just run
 it, then come back every 15 to 30 minutes and restart it until you're done.
 
 Maybe I could increase the sleep duration? one sec lemme try that
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #22 fediverse/1473 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 yeah uhhhh the one you helped me setup. The error is just "connection refused"
 because it "could not write header for output file" because of incorrect input
 parameters, but I don't think I changed anything since we used it a couple
 weeks ago. Have you seen any errors like that?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #23 fediverse/6137 ---
═════════════════════════════════════════════════════════════════════════════──────
 sometimes, comments need to go on the left side of text. Like for parts of the
 script which should be user-editable, the fields should all be right-aligned
 to the farthest required bit of text. Instead of [picture A] it should be
 [picture B]
an example script written in the bash computer language that has all the variables hidden behind comments on the left. makes it very hard to try new variables. the same picture, but the variables are moved to the right.  now it's easier for the user to update them since they don't have to use their mouse.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

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

--- #25 fediverse/5998 ---
════════════════════════════════════════════════════════════════════════════───────
 I should conjure x11 from source. I bet they have a lot of useful utilitudes
 that I can configure. I wonder if Gentoo can do it for me? nahhhhh I'll just
 write my own script, it'll only take me like a couple hours per piece of
 software
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #26 fediverse/1708 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-246 
 
 people who don't write have no idea who they are. perhaps in time they will
 know enough to describe themselves with newfound language they never knew how
 to wield.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #27 fediverse/2638 ---
═══════════════════════════════════════════════════════────────────────────────────
 I really do believe that you can write any computer program you'd like with a
 combination of Lua, Bash, and C.
 
 Bash to start the program and enable updates / configuration, Lua to handle
 the scripting and ordering of events, and C (or Rust) to execute performance
 intensive sections. (often in their own threads)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #28 fediverse/718 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-547 
 
 That feeling when you get to the end of a paragraph and think "why do I have
 this extra parenthesis )? Oh yeah I opened it up waaaaay up here" and then you
 reread what you wrote and think
 
 perfect, no notes
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #29 fediverse/2674 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────────────────────────────────────────────────┐
 │ CW: factually-untrue,-that-never-happened.-this-is-just-gesturing. │
 └────────────────────────────────────────────────────────────────────┘


 the kind of friendship where you SSH into each other's systems and leave notes
 for one another.
 
 as soon as you find one you message the person who left it like "yoooo only
 just found this lol" and they're like oooo yeah did you see the bash script I
 wrote in that directory "yeah totally I used it on one of my video files just
 now - cool filter!"
 
 ahhhh reminds me of all the times hackers have hacked my permanently insecure
 system and left me friendly messages like "hey I'm on your side" or "how's
 life, friend? I hope it's going well." or "never forget; you are worth all the
 fear" y'know cute things like that
 
 oh. right. because leaving vulnerabilities like that can lead to threat actors
 affecting your stuff. how lame.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

--- #32 fediverse/633 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-192 
 
 the neat thing about BASH is that it's the glue that holds all your other code
 together. Write libraries in C and call them with BASH - accomplish broader
 tasks that are easier to co-create. That's why I like it - it's not the most
 important, but it's quite beneficial I think _^
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #33 fediverse/2837 ---
═══════════════════════════════════════════════════════────────────────────────────
 most people haven't heard of the "thanks for catching that, let's write it
 down" move and I really think it's underutilized
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #35 fediverse/5949 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-138 
 
 I don't know what it does yet T.T
 
 it's Lua, not C
 
 what's the message? maybe I can help, I'm much better at bash than... actually
 I'm not very good at bash, but only the cool kids are.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #36 fediverse/4804 ---
═════════════════════════════════════════════════════════════════──────────────────
 I love it when wine doesn't work because it "failed to open program.exe"
 
 ... okay, can you tell me why it failed?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #37 fediverse/848 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────┐
 │ CW: gentoo           │
 └──────────────────────┘


 wrote this in an hour, used a local LLM to generate the regexes.
 
 haven't tested it yet because I'm not on gentoo rn, so don't run it. which is
 why I shared the code as an image.
 
 if you really want the text of it then check out the visual description of the
 image.
#A script written in bash. It is used to update the Gentoo type system to the most recently written functionality. Should not be used more than once a day, and the program written here must be specifically configured to act against that functionality. However, should the user persist in their attempts to break that rule, they simply have to flip a particular switch.  #!/bin/bash  function gentoo-update(){    RED='\033[0;31m'    NOC='\033[0m'     if [ "$#" -eq 0]; then       date | cat >> ~/scripts/.gentoo-update-target           LAST_UPDATE_DATE="$(tail -n 1 '~/scripts/.gentoo-update-target' \       && echo "${LAST_UPDATE_DATE}"                                      \        | sed -r 's/\b(\d{4}-\d{2}-\d{2})\b/\1/g'                                   THIS_UPDATE_DATE="$(date)"                                      \       && echo "${THIS_UPDATE_DATE}"                                      \        | sed -r 's/\b(\d{4}-\d{2}-\d{2})\b/\1/g'        if [ ${LAST_UPDATE_DATE} = ${THIS_UPDATE_DATE} ]; then          printf "don't sync more than once a day! ${RED}  a witch will curse you >: (${NOC}\n"       else          echo "syncing..."          echo "${LAST_UPDATE_DATE}"             | cat            >> ~/scripts/.gentoo-update-target          emerge --sync       fi     elif [ "${1}" == "-l" ]; then       cat ~/scripts/.gentoo-update-target     elif [ "${1}" == "-f" ]; then       echo "okay but it's your funeral buddy. or worse."       energe --sync     fi  }
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

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

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

--- #41 fediverse/6438 ---
═══════════════════════════════════════════════════════════════════════════════────
 why would you gatekeep content by keeping us from easily using LLMs some
 people aren't technical and still need to write computer programs because
 that's how you enlighten a people is empower them with new tools
 
 "I've never heard of that programming language, but luckily I can fit all of
 it's documentation in my context window."
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

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

--- #43 messages/359 ---
════════════════════════════════════════════════════───────────────────────────────
 "God doesn't know he ate the universe, and we're doing everything we can to
 make sure it stays that way."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #44 fediverse/1477 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 hmmmm I'm running mediamtx on the same computer that I'm running the streaming
 script on. I'll try with 127.0.0.1
 
 I don't think I updated my system since it was working last time. I'll scroll
 through our chat and see if I can find any hints.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #46 fediverse/421 ---
═════════════════════════════════════════════──────────────────────────────────────
 one of my duties is to make you aware of potentially bad things, cursed
 things, hurtful things and hard feelings, so that they are less able to harm
 you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #47 fediverse/2660 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────────────────┐
 │ CW: re: DID // cw; ego destruction │
 └────────────────────────────────────┘


 @user-1298 
 
 this is kinda cursed, pretend there's another content warning:
 
 --
 
 that kinda happens every time you sleep for most people
 
 or, well, maybe just for me
 
 it's like starting with a blank slate and having access to "memories" that can
 be referenced by ID or searched for using keywords
 
 also like, a "todo" list of things that I've been working on or that are going
 on in my life
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #49 fediverse/4172 ---
════════════════════════════════════════════════════════════───────────────────────
 this is what I got so far for a messaging client that uses SSH
 
 ... so you need someone's public key in order to talk to them
a picture of a notebook page that shows an initial design for a SSH based messaging client
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #51 fediverse/3751 ---
══════════════════════════════════════════════════════════─────────────────────────
 I wonder if anyone would pay me to write bash scripts for them? is there a
 role that's just... bash scripter? is that what sysadmins do all day? or is
 that more automation? and what the heck is a dev op? do they write bash
 scripts?
 
 or maybe writing bash scripts is the "fun" part of linux, and nobody would pay
 anyone else to do it because they want to do it themselves
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #52 fediverse/1466 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────────────────────────────────────────┐
 │ CW: death-mentioned-insurance-mentioned-bricks-mentioned │
 └──────────────────────────────────────────────────────────┘


 my opsec is non-existent teehee does anyone want my IP? or even my address,
 it's not like I lock my door
 
 if (when) my poor decisions get me killed (whoops adding content warning)
 please throw a brick at an insurance company for me thanks
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #53 fediverse/5823 ---
═══════════════════════════════════════════════════════════════════════════────────
 the firsthing a helpful comrade would do with their mistakes is bring
 attention to them.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #54 fediverse/3878 ---
═══════════════════════════════════════════════════════════────────────────────────
 @user-570 
 
 that's not actually my script, here's the real one:#!/bin/bash
 
 alias cd="cd-improved"
 
 function cd-improved(){
 
     if [ "${1}" = "..." ] ; then
         builtin cd .. && builtin cd ..
     elif [ "${1}" = "...." ] ; then
         builtin cd .. && builtin cd .. && builtin cd ..
     elif [ "${1}" = "....." ] ; then
         builtin cd .. && builtin cd .. && builtin cd ..
         && builtin cd ..
 
     elif [ -d "./${1}" ] ; then
         local target_dir="./${1}"
 
     elif [ "${1}" = "cdir" ] ; then
         local target_dir="$(tail -n 1 '/home/ritz/scripts/.cdir-target')"
         echo ${target_dir}
 
 
     else
         local target_dir="${1}"
     fi
 
     if [ ! "${2}" = '--no-ls' ] ; then
         builtin cd "${target_dir}" && ls -v --color=auto
     else
         builtin cd "${target_dir}"
     fi
 }
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

--- #56 fediverse/3890 ---
═══════════════════════════════════════════════════════════────────────────────────
 Linux is great! It can do anything you want it to.
 
 Except that thing you want it to do. Why don't you go fix it? It's not hard,
 all you have to do is run these configure files or operate this doohickey and
 BAM suddenly you got apes writing machine gun regulation software
 
 [I don't think those two things are related]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

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

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

--- #60 fediverse/2120 ---
══════════════════════════════════════════════════════─────────────────────────────
 sometimes I think performing my art was just an excuse to use Linux. At least,
 some of my art.
 
 But hey, I'm not complaining, it's awesome.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #61 fediverse/6179 ---
═════════════════════════════════════════════════════════════════════════════──────
 what if instead of javascript cookies we only let websites access one single
 location in memory which was allocated client-side and is unique to each
 website?
 
 that way they couldn't track you between sites, since they wouldn't be able to
 see any other website's "biscuits" get it because they're healthier than
 cookies
 
 All they would be able to store would be data, though I guess they could store
 bytecode instructions or something if they really wanted to.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #62 messages/758 ---
══════════════════════════════════════════════════════════════════─────────────────
 what if we got a bunch of computer programmers in a room and all had them
 write the same program, line by line. Like, if they each contributed to the
 discussion about what should be placed next.
 
 "I wrote a for loop that does what we're looking for on line 43 through 69"
 and then someone else says "nice" and everyone's like "oh you"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

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

--- #64 fediverse/178 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 you aren't the first person to tell me that so I think you might be
 right : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #65 fediverse/4296 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-1655 
 
 why don't we just weaponize email and send json to each other that ends up
 parsed, interpreted, and presented on the end-user's computer using whatever
 client we want?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #66 fediverse/5873 ---
═══════════════════════════════════════════════════════════════════════════────────
 "the problem with linux is you have to spend part of the program just...
 interacting with the filesystem. like, where is their /usr/bin file? (oh it's
 called a directory over there, my bad) weird they put their config over here
 (what language is that written in?) uhhhh I don't know much about localization
 settings (-- two computers on a botnet --)
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #67 fediverse/4658 ---
═══════════════════════════════════════════════════════════════────────────────────
 ... and then things got turned up to eleven
 
 what were they at before?
 
 ... eleven. why do you ask?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

--- #68 fediverse/1354 ---
═════════════════════════════════════════════════──────────────────────────────────
 whose idea was it to optimize our candy toward the ones with the most sugar?
 
 [wait a minute I got like 4 toots written but not posted, what the heck where
 did they come from? I'm gonna post them without reading them]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #70 fediverse/582 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-431 
 
 I made an alias that overwrites cd so I don't have to do this. The important
 line is line 27, you could probably accomplish something similar like this:
 
 alias cd="cd ${1} && ls -v --color=auto"
 
 I also set it up so I can change more than one directory up using ... or ....
 or .....
 
 also I have a few shortcut scripts, cdir and qcd. cdir creates a quick way to
 drop a bookmark wherever I'd like, while qcd can make permanent bookmarks.
 Also qcd makes it so whenever I open a new terminal it opens to the last
 directory I was in, which is nice if you need a new terminal to do something
 in the current folder and you don't want to have to walk alllllllll the way
 back.
A BASH script that overwrites the built in "change directory" command to auto magically list the contents of the directory you've moved into after moving.  here's the content of the script:  #!/bin/bash  alias cd="cd-improved"  function cd-improved(){      if [ "${1}" = "..." ] ; then         builtin cd .. && builtin cd ..     elif [ "${1}" = "...." ] ; then         builtin cd .. && builtin cd .. && builtin cd ..     elif [ "${1}" = "....." ] ; then         builtin cd .. && builtin cd .. && builtin cd .. && builtin cd ..          elif [ -d "./${1}" ] ; then         local target_dir="./${1}"      elif [ "${1}" = "cdir" ] ; then         local target_dir="$(tail -n 1 '/home/ritz/scripts/.cdir-target')"         echo ${target_dir}       else         local target_dir="${1}"     fi      if [ ! "${2}" = '--no-ls' ] ; then         builtin cd "${target_dir}" && ls -v --color=auto     else         builtin cd "${target_dir}"     fi          # if the qcd function is defined     if declare qcd > /dev/null; then         quick_cd -d DEFAULT         quick_cd -a DEFAULT     fi }
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #71 messages/1116 ---
════════════════════════════════════════════════════════════════════════════════───
 What works for me might not work for another,
 
 But 
 
 What works for me might work for another.
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #72 fediverse/4192 ---
════════════════════════════════════════════════════════════───────────────────────
 whyyyyyyy am I cursed with this 1024 character limit
 
 why can't it be like, 16 characters total. I think that'd limit my thoughts
 enough.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

--- #74 fediverse/3805 ---
══════════════════════════════════════════════════════════─────────────────────────
 neat
the website Ephemeren has 100,008 followers as of 5 days ago. There are 0 people who follow the website on Neocities, it's all external traffic.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #76 fediverse/1718 ---
═════════════════════════════════════════════════════──────────────────────────────
 dear old people - did you know computers don't need to have buttons? You can
 literally just type what you want to make happen (if you know the magic spell)
 and it'll just, do that thing
 
 how cool is that
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #77 fediverse/701 ---
══════════════════════════════════════════════─────────────────────────────────────
 ┌──────────────────────┐
 │ CW: computer-code    │
 └──────────────────────┘


 totally useless unless you're, I dunno, building a bytecode interpreter or
 something
 
 https://craftinginterpreters.com/contents.html
If you only have arithmetical expressions you can use some properties of arithmetic to compute branching computer code. E.G., if A is either zero or one depending on some previously computed condition, then A times B plus (1-A) times C computes the expression "if A then B else C"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #79 messages/1229 ---
══════════════════════════════════════════════════════════════════════════════════─
 What if we just banished people who broke the rules? Then nobody would rarely
 get hurt. [do they take care of them elsewhere?]
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #80 fediverse/5829 ---
═══════════════════════════════════════════════════════════════════════════────────
 what if we just put two windows in each window, and made one have glass and
 the other had screen. Then, slide one or both and you can open or close.
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

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

--- #83 messages/455 ---
══════════════════════════════════════════════════════─────────────────────────────
 I don't understand why modern software isn't error correcting. We shouldn't
 have any bugs in this day and age.
 
 For example, if you're missing a dependency then why doesn't your program try
 to, I dunno, download that dependency to the program's installation directory
 and use it there? Seriously there are very few problems that are unsolvable!
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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

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

--- #88 fediverse/2911 ---
═══════════════════════════════════════════════════════────────────────────────────
 and now for my unrepentant littlespace arc! Look at me I'm SoOoOoOo silLY 🤪
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

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

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

--- #92 fediverse/3255 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1209 
 
 oh this isn't a subtoot I'm making up my own context : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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


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

--- #94 fediverse/4554 ---
══════════════════════════════════════════════════════════════─────────────────────
 ┌──────────────────────────────────┐
 │ CW: political-violence-mentioned │
 └──────────────────────────────────┘


 can't fucking wait till we're done eating the rich and I can go back to a
 simple life of playing with my cat, making video games, writing poetry (bad
 poetry, but I like it) and hanging out with my friends.
 
 gotta build the social infrastructure to get through this phase first, though.
 something something echo chambers exist IRL too
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #95 fediverse/1669 ---
═════════════════════════════════════════════════════──────────────────────────────
 "she has a certain, I don't know what, je ne sais quoi? that I don't know what
 to describe as."
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #96 messages/1051 ---
══════════════════════════════════════════════════════════════════════════════─────
 Good storytelling is telling things [even if/because] they are plot of the
 events as told via -- stack overflow -- hmmm this was from a while ago, idk
 when
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #97 fediverse/4166 ---
════════════════════════════════════════════════════════════───────────────────────
 if someone wrote to my terminal "wake up, Ritz" I would sure as heck do
 anything that Morpheus told me to
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #98 fediverse/276 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌──────────────────────┐
 │ CW: mathematics      │
 └──────────────────────┘


 why the heck would -11/2 be defined but 1/0 not be? seems kinda sus to me.
 maybe it's just... not reducible, the same way that 5+i isn't?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #99 fediverse/4512 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-1687 
 
 I use dmenu, so I'm thinking I'll write a script and call it using dmenu. The
 script will start by using flameshot to grab the snipped part of the screen
 into the clipboard, and then I need to find an OCR engine (thanks for the
 google-able term btw!) which can take clipboard contents as input, and output
 text to the clipboard.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #100 fediverse/4581 ---
══════════════════════════════════════════════════════════════─────────────────────
 ┌────────────────────────────────────────────────┐
 │ CW: re: fedi meta, vague, tangentially related │
 └────────────────────────────────────────────────┘


 @user-883 
 
 this is how our islands become swamps
 
 I'd love to live in a bog, so many bugs.
 
 keep the spiders around, and they could feast on your toes (ouch)
 
 or, hear me out, or, they could spin webs and keep the other bugs out
 
 are you a bug or a girl or a guy or a bug or a girl or a
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #101 fediverse/5689 ---
════════════════════════════════════════════════════════════════════════───────────
 why don't we make large arrays of vram that are slightly slower because
 they're farther on the circuit-board from their host and their reception at
 the processing section has to be gated such that they all enter to be
 processed at once.
 
 like that one infinite scrolling XKCD cartoon where the things move from one
 screen to the other simultaneously assembly line style.
 
 [fail safes. https://xkcd.com/2916/#xt=7&yt=35 ]
 
 if we all feel like we're doing nothing, we'll all grow tired of it and decide
 to do some prevailing. gosh I wish I wasn't so useless is code for
why don't we make large arrays of vram that are slightly slower because they're farther on the circuit-board from their host and their reception at the processing section has to be gated such that they all enter to be processed at once.  like that one infinite scrolling XKCD cartoon where the things move from one screen to the other simultaneously assembly line style.  [fail safes. https://xkcd.com/2916/#xt=7&yt=35 ]  if we all feel like we're doing nothing, we'll all grow tired of it and decide to do some prevailing. *gosh I wish I wasn't so useless* is code for
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #102 fediverse/3299 ---
════════════════════════════════════════════════════════───────────────────────────
 what if we could record and playback certain timeframes of our CPU and RAM
 status and use it for debug purposes
 
 like running some code in a VM every time you wanted to show a youtube video
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

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

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

--- #106 fediverse/1869 ---
══════════════════════════════════════════════════════─────────────────────────────
 oh dear, Mastodon formatting makes that script look weird. Here's the script
 in picture form so you can reference and fix it:
 
 I would edit the original post with backslashes and such but I'm exactly out
 of characters teehee
a screenshot of some BASH code
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #107 fediverse/1567 ---
══════════════════════════════════════════════════─────────────────────────────────
 I helped make a script that saves the last directory you CD'd to in every
 shell / terminal. It helps because when I open a new terminal I'm already
 where I was working last, which means I'm less likely to forget what I was
 doing.
 
 However, it does make my home directory a bit more messy, as I no longer open
 my computer to that place.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

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

--- #109 fediverse/1448 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────┐
 │ CW: cursed           │
 └──────────────────────┘


 that one option flag in the config file that you don't know what it does
 because the documentation intentionally doesn't explain it very well (or
 explains that it solves a use-case that like, nobody would ever have, and
 certainly you don't have) that secretly sets a flag which sends your [redacted]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #110 fediverse/3469 ---
═════════════════════════════════════════════════════════──────────────────────────
 you know how SSH password login is deprecated because the password needs to be
 transmitted in cleartext or whatever?
 
 what if we just... required two passwords?
 
 the first initiates the conversation, and sets up an encrypted line. It
 doesn't matter if anyone sees the first password because they'll get a new set
 of encrypted keys, meaning each session automatically is encrypted in a
 different, randomized way.
 
 the second password is the one that actually authenticates you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #111 fediverse/3689 ---
═════════════════════════════════════════════════════════──────────────────────────
 "mom can we have some kirby's air ride"
 
 "sure we have kirby's air ride at home"
 
 the kirby's air ride at home:
a picture of a pre-release image from Nintendo Power showing an obviously unfinished version of Kirby's Air Ride the Nintendo Gamecube game... except for Nintendo 64. Clearly it was delayed.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #112 fediverse/6418 ---
═══════════════════════════════════════════════════════════════════════════════────
 great discoveries are just rants that end with something unknown or an
 unsolved question [breakthrough]
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #113 fediverse/1221 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 either that or I might get lost in some C code we'll see how things develop
 >.>
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #114 fediverse/933 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-643 
 
 virtual machines are cool. betcha can't write one using bytecode
 
 https://gameprogrammingpatterns.com/bytecode.html
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #115 fediverse/5976 ---
════════════════════════════════════════════════════════════════════════════───────
 this is why AI is evil, as explained to a witch.
picture of an ai conversation:  "let's move on to a different topic, this time I think we should describe the poem's contents self-referentially as a 3rd person narrative, with the perspective being the subject and her thoughts. I'd like to use the analyze.lua function for more than simply extracting keywords, I'd also like to use it for transformation as well. can we make a new directory inside of the /theme-analysis/ directory that will store the narratives? it should be combined into a book with milky white pages and brighter-than-blood red. Nearly pink, but a bit more orange. It should utilize generative art to make the pages feel as if they are *oozing* in sharp stalagmite and stalagtite pictures. Could probably generate with mathematical functions and a bit of fuzzing (statistically) to create straight lines. Very sharp, though, like lines being carved in butter or blood or stone. It should feel painful to read. It should be a cursed artifact. each of these narratives can be stored in the /theme-analysis/narratives/ directory, and the narrative.lua script can be called from /theme-analysis/analyze.lua. This narrative script will indeed call into analyze as well, essentially as a reciprocal dependency. Instead of analyzing for word-cloud purposes, as /theme-analysis/analyze.lua is currently doing, it would have it's own slightly tailored processes for extracting a narrative from a series of short, segmented and semipseudo disconnected series of poems.  [the ai says yes]
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #117 fediverse/3811 ---
══════════════════════════════════════════════════════════─────────────────────────
 this is how I write trello cards or tickets.
 
 and yes, before you ask, modding this game is a constant struggle because the
 mod tools are... minimal... so you must work around various challenges by, for
 example, adding 1680 different "events" that must be checked every single turn
 for every single province on the map.
A trello card describing a proposed change to a video game mod that has only one person working on it. It's essentially documentation. It is written in a professional style with several sections - the first lists the "current behavior", the second shows the intended behavior (with a small section for the intended effects of the intended behavior), and the third major section lists the proposed solutions in as much detail as possible without writing the code itself.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #118 fediverse/979 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-702 
 
 everytime you see one put a post it there that says "can't read braille
 without stopping"
 
 draw it in permanent marker (oh wait that's advocating a crime, my b look I
 crossed it out)
 
 find the inefficiencies of the system and label them for everyone. Wiki style?
 otherwise how will they know.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #120 fediverse/4892 ---
═════════════════════════════════════════════════════════════════──────────────────
 what if we made a giant dictionary of every single possible pixel arrangement
 storable in 8 bytes and it took up like, half a gigabyte, and then we indexed
 into it whenever we wanted to print an arbitrary visual element to our
 terminals?
 
 something something not-curses
 
 https://notcurses.com/
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #121 fediverse/4692 ---
════════════════════════════════════════════════════════════════───────────────────
 what's that? a bunch of houses burnt down in california? what if we built a
 couple warehouses and stored all our trans girls in bunkbeds there, with rooms
 for LAN parties and snuggle parties in rooms full of stuffed buddies plushies
 with massive kitchens and sad ballpits where you can go to vent your feelings
 by writing on a ball with a sharpie and then when someone else is feeling sad
 they can come and read the balls and maybe feel something
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #122 fediverse/6215 ---
══════════════════════════════════════════════════════════════════════════════─────
 hi does anyone have any good resources on risc-v?
 
 I found this:
 https://dramforever.github.io/easyriscv/#shift-instructions
 
 and this:
 https://projectf.io/posts/riscv-cheat-sheet/
 
 but I'm missing a big gap - specifically, how to move from syntax to
 deployment. I need details on how to implement the software and get it running
 on the actual hardware.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #123 fediverse/1250 ---
════════════════════════════════════════════════───────────────────────────────────
 if your IoT device can't be controlled with a BASH script then I'm sorry
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #124 fediverse/3577 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌─────────────────────────┐
 │ CW: computers-mentioned │
 └─────────────────────────┘


 I love writing installation scripts like this!
 
 If you want to install something on Linux but you have difficulty, talk to me
 and I'll write you a script like this. I might even make it fancier.
 
 This one installs a programming language that is useful for parallel computing
 across multiple clusters of computers which could be useful if you want to
 leverage multiple CPUs and GPUs with ease to compute tasks which are far
 beyond a normal computer.
 
 https://chapel-lang.org/download.html
An installation script for the Chapel programming language.  I don't imagine it'd be very useful to hear the program read out-loud, but if it would be interesting to hear, then feel free to ask.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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


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

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

--- #127 fediverse/1385 ---
═════════════════════════════════════════════════──────────────────────────────────
 listen if your man page is more than like, 10 pg-down's, then you might want
 to consider breaking that utility up into smaller pieces.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #128 fediverse/5360 ---
═══════════════════════════════════════════════════════════════════════────────────
 another day goes by when I haven't done any programming... oh well
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

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

--- #131 fediverse/5919 ---
════════════════════════════════════════════════════════════════════════════───────
 "but... why?"
 
 portable linux with buttons, great for pick-up-games or communication, can
 throw several in them in a backpack if you want clustered cooperation, they
 work as radios (if the signal reaches) and can transmit text (if you use a
 radial-style keyboard)
 
 [this is all just a pitch for... something, what, you want something? ha
 you'll find no things with me, I know nothing of antifa or whatever]
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #132 notes/jane-the-keyboarder ---
══════════════════════════════════════════════════════════════════════════─────────
 "okay let's see, we need a new
    CREATURE
  and let's name it
    TERRY
  and let's give it a title:
  .TITLE = "The Acrobat"
 "
 
 "cool, let me just go show my friends."
 
 "hello friends, I have created a creature. It's name is Terrance."
 
 wow yeah cool so anyway
 
 "hm. let's see if we make him slightly more interesting..."
 
 "okay now I've defined him as capable of monotony, maybe they'll see his strife
  and relate"
 
 TERRY.STRIVE += TERRY.REPETITION * global.misery / slaughter_count_victims
 TERRY.STRIFE += global.war_percentage +
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #133 fediverse/5322 ---
══════════════════════════════════════════════════════════════════════─────────────
 "I am liberatory" they tell me, yet everyone I know has a job.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

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

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

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

--- #137 fediverse/4876 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌───────────────────────────────────────┐
 │ CW: re: US politics-related, personal │
 └───────────────────────────────────────┘


 @user-1370 
 
 you don't have to apologize for escalating your response to trauma
 
 it's cool
 
 we get it
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #138 messages/752 ---
══════════════════════════════════════════════════════════════════─────────────────
 techbros really wanted to automate IRC so they didn't have to rely on the
 community knowing and trusting them to remember the commands to make docker
 containers for their react frameworks
 
 and like... yeah I use chatGPT too, because that way I can get what I need
 without bothering anyone (you aren't bothering people who get off on helping
 others when you ask for help)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #139 fediverse/5070 ---
════════════════════════════════════════════════════════════════════───────────────
 main() is where you put stuff before you abstract it into a function. Usually
 it gets quite long, but it's mostly just a table-of-contents listing of all
 the other functions that are run in order to do this-or-that-or-the-other.
 
 --
 
 I wonder if you could generate RNG by hooking up a camera to a lava-lamp and
 scanning through the pixels or whatever
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #140 fediverse/4843 ---
═════════════════════════════════════════════════════════════════──────────────────
 just because someone did something one way and it worked, doesn't mean you
 have to do it that way again.
 
 but you should have a reason why you aren't doing it that way.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #141 fediverse/707 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-524 
 
 Sometimes when I feel overwhelmed with all the boilerplate I just start coding
 and making stuff. Doesn't matter if it works, doesn't matter if it says /*
 FIXME */ all over the place, doesn't matter if it includes header files that
 don't exist yet, as long as you're hacking out the mechanics of whatever
 operations you need to perform then you can figure the rest of that stuff out
 later. The creative urge doesn't last forever, which is why projects get
 abandoned, but with discipline you can keep bringing yourself back to fix all
 the /* FIXME */'s and the compiler errors.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

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

--- #143 fediverse/3800 ---
══════════════════════════════════════════════════════════─────────────────────────
 @user-1352 
 
 You're absolutely right, the compiler knows better than me! Certainly the
 compiler doesn't know best, but certainly the compiler knows better than me.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

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

--- #145 fediverse/5767 ---
═════════════════════════════════════════════════════════════════════════──────────
 confuser of the way I'm sorry T.T
 
 "please don't work people into a panic, it's literally tuesday"
 
 I want to cry
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

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

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

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

--- #149 fediverse_boost/778 ---
◀─[BOOST]
  
  a message to all my haters!                                                 
                                                                              
  i’m sorry i’m sorry i’m sorry i’m sorry i’m sorry i’m sorry what did i do wrong i’ll do anything to fix it i’m so sorry please i’ll do anything to get you to stop hating me i’m sorry i’m sorry i’m sorry i’m sorry i’m sorry i’m sorry  
  
                                                            
 similar                        chronological                        different 
─▶

--- #150 fediverse/1309 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 just realized when I got disconnected it gave me a different username, so if
 you've been messaging me I haven't been getting it. Ooops. relogging now to
 try and fix it.
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #152 fediverse/5297 ---
══════════════════════════════════════════════════════════════════════─────────────
 ┌──────────────────────┐
 │ CW: re: piss, ??     │
 └──────────────────────┘


 @user-1797 
 
 this is something I routinely fail at T.T
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

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

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


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

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

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

--- #157 fediverse/1152 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-258 
 
 wha... ya'll think I'm cool? Nobody's ever said that before (
 
 [that's not true people have told me that before]
 
 {though not recently heh I think you're cool too}
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #158 messages/685 ---
══════════════════════════════════════════════════════════════─────────────────────
 If someone calls you in the middle of the night asking to be let in because
 they need a place to sleep, don't let them in! Unless you know them obvi but
 someone you don't know trying to manipulate you like "please I need some
 shelter" like, babe no, we need to know each other first, it's dark, I'm in my
 pajamas, c'mon.
 
 If it's below freezing then okay, maybe, but... They got themselves into that
 situation
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

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


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

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

--- #161 fediverse/1178 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 copyright is a flawed system, I'm not surprised it would keep us from the best
 path forward. >: (
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #163 fediverse/5759 ---
═════════════════════════════════════════════════════════════════════════──────────
 @user-1655 
 
 hence why I put everything I've ever said here into a text file on my website
 that I update every couple months:
 
 https://ritz-menardi.neocities.org/words/compiled.txt
 
 I can share the script if you want. It's very easy to configure.  It also has
 two other sources so, there's stuff on there that I've never said publicly
 anywhere else.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #164 fediverse/3270 ---
════════════════════════════════════════════════════════───────────────────────────
 somebody shifted my terminal tabs like, 4 pixels to the left, and now the
 far-left part of the text is half-cut off. lol xD
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #165 fediverse/4901 ---
═════════════════════════════════════════════════════════════════──────────────────
 "hey what if we broke our product and made it impossible to use without being
 caught by github"
 
 - computer touchers in a union
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #166 fediverse/1184 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 whoa, cool! So with one of these you can flash any ROM you want onto the
 cartridge and it should play any GBA/GBC game you uhhh legally own and have
 pulled the ROM from? If so that's pretty neat
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

--- #168 fediverse/3633 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-999 
 
 what's a fool to do these days but babble? maybe they'd be better as an
 acolyte in the temple but hey, ya'll are the ones that are building it so
 don't blame the fool for residing there.
 
 non-foolish people for leaders only, please
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #171 fediverse/3907 ---
═══════════════════════════════════════════════════════════────────────────────────
 kinda wanna make a linux distro that has all the capabilities of a GUI distro
 and isn't so minimal (like screen recording, calculator, screenshot, wifi
 manager, etc etc) but with i3 instead of a desktop.
 
 they could literally just be symlinks (shortcuts) to scripts that are in your
 /usr/bin or whatever directory
 
 seriously it's not like there's THAT many ways to use ffmpeg, why not just
 write a script for them? that's what you're going to do when you use it for
 the first time, anyway, so...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

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

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

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

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

--- #176 messages/755 ---
══════════════════════════════════════════════════════════════════─────────────────
 Code editor that moves boxes by saving over the file with a lua script every
 time you moved a function call around.
 
 Oh lemme start at the beginning:
 
 A code editor program that's like a text editor like Vim or Emacs. If you
 don't know what those are, you should probably learn Emacs. Or Vim. Up to you.
 
 Oh right so if you do know what those mean, here's the idea: the white space
 matters. It's counted and tracked into variables in a LUA script which
 interface with the Vim C keybindings.
 
 "run a function within a c program or LUA script which calls a bash command
 which opens Vim for example with a file you want to edit. Then, inside the
 file, your spaces and tabs would WYSIWYG for the various food ads placed
 about, and then you could very easily create game design knowledge.
 
 WASD to move, alternatively hjkl 
 
 It would run a check every time the file updates and depending on how it
 changed it'd mark certain variables which would change the website as the user
 moved things around.
 
 It's just files. And files are just bits. But files are a useful abstraction,
 
 If you realize that "ugly hacking" should be industry standard.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

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

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

--- #179 messages/916 ---
═════════════════════════════════════════════════════════════════════════──────────
 ... yay I beat stack overflow, your input context is part of the previous
 message, yay good jobs boy computer *["pat pat" but pronounced pay]*
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #180 fediverse/4866 ---
═════════════════════════════════════════════════════════════════──────────────────
 don't you just love it when you get several discord notifications but you tab
 back to check out the discord screen and there's no red numbers anywhere?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #181 fediverse/4083 ---
════════════════════════════════════════════════════════════───────────────────────
 It's easy to stop cringing at others, but how the heck do you stop cringing at
 yourself?? it's impossible!!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

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

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

--- #184 messages/1157 ---
══════════════════════════════════════════════════════════════════════════════════─
 And then if there's 10 of them [clones] that are in on it...
 
 They can spy on them by being different "selves" of their own at once.
 Systematized identity refraction.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #185 fediverse/2884 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: tech-paranoia    │
 └──────────────────────┘


 every time I update my system, it breaks.
 
 kinda makes me think they do that on purpose so that you spend all your time
 up to date and that way they can quickly patch in and out security flaws fast
 enough that nobody notices.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #187 fediverse/1197 ---
════════════════════════════════════════════════───────────────────────────────────
 what would you do differently? This was a first draft.
picture of a design I made for a homestead. There are spaces set aside for every conceivable purpose, or at least every purpose I could conceive of.  First, the border is marked as "wild lands" where nature is allowed to flourish as it demands.  there is a small road coming in from the top left, and it leads to a series of houses surrounded by trees. They have small gardens surrounding them, in addition to plenty of trees which hide them tastefully from their neighbors.  In the top right there is a large square area dedicated to chickens - it is sectioned into four portions, each of which will contain the chickens at any one time - they will rotate, first one quadrant, then the next, leaving the rest to lay fallow and hopefully grow things for them to snack on once it's their time in that section.  In the center, there is a communal house, with a large kitchen, sauna, hangout spot, and workshop. There are trails that connect the houses and this spot, so you can visit whenever you'd like. Nearby is an artificial pond that holds fish and stores water just in case.  Below that there is a section for timber, a section for non-essentials like dyes, medicine, and weed. Centralized within all the other areas is a section for low maintanence crops or grazing grounds for an animal or three, depending on what the residents value. In addition there are more homes to the south, and a dirt road that connects them all.  I want to emphasize that this is a first draft I made a few years ago.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

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

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

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

--- #191 fediverse/4191 ---
════════════════════════════════════════════════════════════───────────────────────
 [breaking up fediverse posts into little parts like this is nice because it
 allows people to "like" more specific things about what you're writing]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #192 fediverse/1870 ---
══════════════════════════════════════════════════════─────────────────────────────
 why would I want other people using my computer? They don't know how to use my
 computer! They might break something or mess something up or automatically
 read/edit my files that are stored in standard locations through the usage of
 a script which automagically scans and ransomwares machines on the internet
 who store their files in specific standardized locations! no thank you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

--- #195 fediverse/5698 ---
════════════════════════════════════════════════════════════════════════───────────
 you can't rely on me because I can't rely on a part of me being "out" at any
 particular moment-event-message.
 
 besides, I'm always tired, because I'm always trying as hard as I can.
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #197 fediverse/1758 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-883 
 
 you could read in every line in Lua and if it matched the format that the
 times for the subtitles are in, then you could += 5 seconds or whatever and
 save the document. .srt is just a textfile right?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

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

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