=== ANCHOR POEM ===
═════════════════════════════════════════════════════════──────────────────────────
 ┌─────────────────────────────┐
 │ CW: re: computers-mentioned │
 └─────────────────────────────┘


 I realized that script was bugged, so... here's a better one. Plus a fun run
 script too!#!/bin/bash
 set -euo pipefail
 
 DIR="/home/ritz/programming/chapel/language-files"
 VER="2.1.0"
 FIL="chapel-${VER}.tar.gz"
 URL="https://github.com/chapel-lang/chapel/releases/download/${VER}/${FIL}"
 NUM_THREADS="16"
 
 touch     ${DIR}/files
 rm    -dr ${DIR}/files
 mkdir -p  ${DIR}/files
 
 wget --output-document ${DIR}/${FIL} ${URL}
 
 tar xf ${FIL} --directory=${DIR}/files
 rm ${FIL}
 
 cd ${DIR}/files/chapel-${VER}
 
    export CHPL_LLVM=system
    source ${DIR}/files/chapel-${VER}/util/setchplenv.bash
 
    make -j${NUM_THREADS}
 
 
    echo "now testing, to validate LLVM configuration as suggested in the docs:"
    chpl "./examples/hello3-datapar.chpl"
    ./hello3-datapar
 
    echo "the chapel programming language is now fully installed! Have fun!"
 
 cd -
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

=== SIMILARITY RANKED ===

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


 #!/bin/bash
 set -euo pipefail
 
 CHAPEL_DIR="/home/ritz/programming/chapel"
 COMPILER_DIR="${CHAPEL_DIR}/language-files/files/chapel-2.1.0"
 PROJECT_DIR="${CHAPEL_DIR}/projects/practice"
 SOURCE_DIR="${PROJECT_DIR}/src"
 
 clear
 
 cd "${COMPILER_DIR}" > /dev/null
    export CHPL_LLVM=system
    source "${COMPILER_DIR}/util/setchplenv.bash" > /dev/null
 cd - > /dev/null
 
 cd "${PROJECT_DIR}" > /dev/null
    echo "compiling..."
    chpl "${SOURCE_DIR}/main.chpl"
    clear
    ./main
 cd - > /dev/null
 
 
 you should update the directories at the top yourself, of course. And give it
 a cursory glance to make sure it works on your setup.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #3 fediverse/5851 ---
═══════════════════════════════════════════════════════════════════════════────────
 @user-1074 
 
 I realized there might be a lot of configuration required. Oh well here ya go:
 
 https://pastebin.com/x40VXQnH
 
 https://pastebin.com/H5C4umWq
 
 https://pastebin.com/dgDeS5Xu
 
 https://pastebin.com/JCLrwF1z
 
 https://pastebin.com/As6diaYc
 
 https://pastebin.com/0vwzJUW4
 
 https://pastebin.com/jPKeV7D1
 
 dependencies are dkjson.lua (included), bash, lua, luahpdf, and libharu.
 
 throw that all in a directory and point an AI tool at it. Or just do it
 yourself and waste an hour or three on something a computer can do in 2
 minutes.
 
 good luck it looks like this when it's done:
picture of a document with algorithmically generated art picture of a document with algorithmically generated art picture of a document with algorithmically generated art picture of a document with algorithmically generated art
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #4 fediverse/5765 ---
═════════════════════════════════════════════════════════════════════════─────────┐
 Lua is the most fun language to write code in! The reason is because it's so     │
 simple, it distills programming down to it's basics, and there's very few        │
 surprises. Plus, you can use it like a bash script, meaning it's great for       │
 writing little utilities.                                                        │
 why are we so attached to monolithic massive programs without shared memory?     │
 we could just write to the hard drive by file.io'ing a file and opening it       │
 later in a different program. What's the deal with databases, whatever           │
 happened to just loading things into a datastructure?                            │
 oh, is your filesize too massive? what if we redundancied and abstracted and     │
 concentrically inter-co-acted and thus our familiar forces are defined.          │
 who are your true foes, in [checks notes] computer programming? um, probably     │
 complexity, probably logical incongruities, probably                             │
 future-technical-debt-style incomprehensibilities, probably stuff that doesn't   │
 really have anything to do with the hardware but instead is mostly software.     │
 essentially, organization, but done on a whim.                                   │
 "but $?"                                                                         │
                                                            ──────────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════─────────┘

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

--- #6 fediverse/5398 ---
══════════════════════════════════════════════════════════════════════────────────┐
 @user-192                                                                        │
 step one, doesn't it suck how we have to mount drives                            │
 part two, gee I sure wish networking was easier than building packets in C and   │
 pushing them over IP/TCP                                                         │
 section three, what if every user logged in to the same system of environments   │
 and kept all their data to themselves while contributing compute to various      │
 valuable processing processes like windfall calculations and population          │
 density administrations                                                          │
 book four, I wish I didn't have to type -p now when telling my computer          │
 goodnight, I should write a script that solves that in like 4 lines two of       │
 which are empty                                                                  │
 what about five, where they talk about sourcing functions?                       │
 I like to use recursion - calling my own functions inside of my own bash         │
 scripts                                                                          │
 "something something modularity" okay docker bro like I'd really package up      │
 anything that I'm working on                                                     │
 I mean really who really cares about how I set up the infrastructure of my       │
 system. it's gonna be unique to each person's memory of setting it up anyway,    │
 so why bother with "standardization"                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════─┴──────────┘

--- #7 fediverse/3735 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-203 
 
 That's what the GPU is for!
 
 Too bad programming GPUs is unnecessarily arcane.
 
 I've recently been into this programming language called "Chapel" because it
 abstracts away most of the complexity surrounding multiprocessor code (unless
 you want to go deeper and more specific, in which case it allows you to do so)
 
 https://chapel-lang.org/blog/posts/intro-to-gpus/
 
 Also distributed computing, which is totes the future, just sayin'
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #8 fediverse/2124 ---
══════════════════════════════════════════════════════────────────────────────────┐
 seriously, just google docs mixed with WC3 editor.                               │
 boom, infinite storytelling device. As long as you were good with it, which      │
 was something that a CHILD could learn in like 3-6 months.                       │
 Seems like it could be an ENTIRELY NEW SKILL that people could play with.        │
 But no, we learn excel and word in class at middle school.                       │
 boring.                                                                          │
 I'd rather learn Bash or terminal customization or memory hierarchy              │
 organization.                                                                    │
 Yeah I mean that's cool but dude have you heard of multithreading? It's so       │
 cool, you can run like 500 different thoughts at once. It's amazing.             │
 ... I dunno, but I'm sure there's times when you'd want to use it. Like,         │
 processing a lot of data little-by-little.                                       │
 like, what if you had a camera feed of EVERY social media perspective AT ALL     │
 TIMES. Like, an instance admin streaming your inputted text to their databanks   │
 that they can project onto an LLM which interprets and identifies mis-aligned    │
 or altered direction units and mark them as "flagged", whatever that means,      │
 for their future the algorithm doesn'                                            │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #9 fediverse/6345 ---
═══════════════════════════════════════════════════════════════════════════════────
 anytime I want to do something new on my computer, I write a bash script.
 
 if I forgot how to do the thing, I spend time meandering about my
 file-directory-system. If I don't find it, that's okay, because all I have to
 do is keep looking until I stumble upon it.
 
 kinda makes me wish I had an LLM who managed the operating system and named
 files with long-and-descriptive titles while taking in as context the general
 eternal prompt stored in ~/.claude.md or wherever
 
 --> /home/ritz/programs/cloud-code/
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #10 fediverse/4596 ---
══════════════════════════════════════════════════════════════─────────────────────
 @user-1707 
 
 hey, I'm working on a project. Might need some python, I tend to prefer Lua
 but it's pretty similar. It uses fediverse software and cheap hardware, think
 raspberry pi's except risc-v
 
 also it might use distributed local LLMs not to generate text, that's garbo
 and lame and stupid. Instead it uses them to transform text, maybe even
 translate text, into a more summarized form. Intentionally losing data, like a
 jpeg compression but for text.
 
 Might need some python for that. To glue it all together. The "distributed"
 part is a whitelist, so we'd need to write that too. Various small little
 utilities like that for connectivity.
 
 oh also there's a one-way ethernet cable that connects two of the boards so
 we'd need to store some information (easy) and send some UDP packets (hard)
 
 anyway it's pretty neat, lmk if you want my contact details and I can tell you
 about it. I might even be able to pay you.
 
 (everything open source, no telemetry, no backdoors, everything private is
 encrypted, etc etc)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #11 fediverse/1345 ---
════════════════════════════════════════════════──────────────────────────────────┐
 ┌────────────────────────────┐                                                   │
 │ CW: re: cursed-chromebooks │                                                   │
 └────────────────────────────┘                                                   │
 ah but are you really armed in the first place if everything you do has to be    │
 googled or stack-overflowed first                                                │
 are you really armed if every web page request goes through their                │
 infrastructure                                                                   │
 are you really armed if every page downloaded is directed to by their DNS        │
 perhaps it's the illusion of power that gives Linux it's attraction to nerds     │
 such as we. Perhaps we feel powerful by bash scripting a few things together     │
 and making some program that does some thing. Maybe the idea that the            │
 machinery is open and clear is what compels us to use it without fear, though    │
 as far as we can hear there's nothing about it that makes sense.                 │
 I guess that's why they teach Linux in school, so that our elementary            │
 interactions with the computers that comprise our future existence will make     │
 sense to us as children.                                                         │
 ... wait they don't do that, do they? kids get chromebooks, or didn't you        │
 hear, they're always putting boogers in the CD trays and breaking their LCD      │
 displays, much better to just start fresh                                        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #12 fediverse/5291 ---
══════════════════════════════════════════════════════════════════════─────────────
 the most important skill I can think of for a linux software engineer is the
 ability to connect multiple systems together and turn windows and macintosh
 devices into Linux devices so that datacenters can be built out of whatever's
 on the around.
 
 there's this programming language I like called Chapel for distributed
 computation computing which is also cool, if you're more of the programming
 type.
 
 networking security I believe often has hardware solutions, so getting the
 crypto-graphy boys and the PCB girls together to work on some jams is a good
 and productively useful gathering of insightful events
 
 "but ritz computers should only be used to solve problems that people have,
 not make more problems!" ah yes but have you considered that problems find
 you, and the computers help you work through them
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #13 fediverse/928 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-226 
 
 especially if you teach them how to use the terminal.
 
 the amount of problems I could solve increased exponentially once I learned
 basic python and BASH.
 
 I love using "tldr", which is a summarizer for man pages. You can use it to
 store custom notes (and import some from the community) which show you how to
 complete common tasks. It's so nice when you can see the options laid out in
 use right there for you whenever you type "tldr " - I personally use
 "tealdeer" which is a tldr browser written in Rust. It's pretty nice because
 you can write a note for yourself every time you solve a particular problem,
 and then if you ever need to do it again it's there for you, easy to access.
 
 of course, if your problem isn't listed, that's okay. That's what the man
 pages are for. As long as you teach them how to search with \/ they can find
 anything. Especially the \/-f[space] trick, to search for the -f flag for
 example.
 
 some organizers won't need the terminal, some will. if they pay attention,
 great!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #14 fediverse/2066 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1159 
 
 AKA giving a puppy murder-bot a narrative that it executes as if it was a
 puppy-person engaging with a loosely interpreted sequence of events as
 described by the continually updating logs provided by the image transcription
 camera device. Refererencing of course a memory bank, which may-or-may-not be
 in read-only-memory. It doesn't know, of course, how could an LLM tell you how
 it shows text on the screen (like, through a website, through the terminal,
 through a text message, through discord, through Telegram, through
 text-to-voice transcription applications pretending to be your mom, etc)
 
 errrr I mean look how cute he is! He loves you, yes he does, such a good
 person yes you are, oh? me? I'M A GOOD BOY? NO WAY that's the best thing I've
 ever heard! Wow! I never want to leave your side, please don't go to work!
 Look how sad I am, don't you think you should quit and move to the forest
 where I can be charged by solar panels and keep the countryside clear of
 ravenous ducks and pigeons 4you?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #15 fediverse/3802 ---
══════════════════════════════════════════════════════════─────────────────────────
 what if we got together and adopted a new open source project every month and
 just collectively worked around the clock to learn and work through the
 important problems facing it
 
 or even like, cleared out the backlog of stupid pointless boring tasks that
 would allow the developers to work on something better
 
 call it the wandering parade of development 
 
 could give us some experience organizing small, short-term projects to
 accomplish specific goals and tasks in an ad-hoc way that relied less upon
 procedure and more on "I think so-and-so knows something about that, they were
 looking into those files and posted a breakdown of how they work yesterday"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #16 fediverse/3586 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌───────────────────────────┐
 │ CW: programming-mentioned │
 └───────────────────────────┘


 I love programming!! Currently working on learning decentralized and GPU
 oriented computing. It's lots of fun! Plus Bash is a great language, it's not
 funky or hacky at all. Just a great language. Haha suuuuch a great thing to
 play with.
 
 But GPUs are legitimately cool, aside from Bash's purported funkiness /
 hackiness. You can do all kinds of cool things at scale that just don't make
 sense up close.
 
 EDIT: oops sorry forgot the content warning
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #17 fediverse/5950 ---
════════════════════════════════════════════════════════════════════════════───────
 @user-138 
 
 wao I'm a cool kid _^
 
 Hmmmm I googled "Network: file exists" and got this link:
 https://access.redhat.com/solutions/1340713
 
 my understanding of that is that maybe you're creating static routes, and for
 some reason you're trying to create one that already exists? Maybe there's
 something in your .bashrc config, if the file appears when you open a
 terminal, or perhaps if it appears randomly then maybe there's a service or
 something that's doing it.
 
 Did you say it stopped when you swapped sim cards? ... on your phone? that's
 bizzare... Maybe you were trying to create an ip route (whatever that is) that
 was pointing to the same ip address as your phone? and when you swapped sims
 it changed the ip address? If it appears again, maybe try setting static IP
 addresses for both the phone and the computer in your router settings and see
 if that fixes it. Though if you've ever seen the error while out and about at
 like, a coffee shop or library or whatever, then that wouldn't apply since the
 router is only for home base...
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #18 fediverse/3151 ---
═══════════════════════════════════════════════════════───────────────────────────┐
 ┌───────────────────────────┐                                                    │
 │ CW: re: cursing-mentioned │                                                    │
 └───────────────────────────┘                                                    │
 @user-1461                                                                       │
 I'm best at Bash.                                                                │
 I'm most capable with Lua.                                                       │
 My favorite is C.                                                                │
 I'm not a good programmer, I think too hard. Massive systems are too large for   │
 me. I like laying out data, whether that be by files and programs in Bash,       │
 arrays and tables in Lua, or memory and datatypes in C, I like to think about    │
 how programs are constructed.                                                    │
 Which functions point to which piles of numbers? what do they do when they get   │
 there?                                                                           │
 I think I'm better as an artist. But I can do systems administration quite       │
 well (with Bash and a guiding hand telling me what and why to do)                │
 ... though I kinda suck at technical sysadmin, like Gentoo. There's too much     │
 terminology - why is data too complicated? Just use data!                        │
 anyway. I sound opinionated, but I listen closely to good arguments and          │
 quickly change my tune when I am incorrected. I am a team player, and I firmly   │
 believe that sometimes a bad plan executed with cohesion and precision is        │
 better than the best play executed too late and with too little strength.        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════────────────────┴──────────┘

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

--- #20 fediverse/3162 ---
════════════════════════════════════════════════════════───────────────────────────
 I wrote a script which scrapes every issue of Nintendo Power from a neat and
 cool archive.
 
 please don't use it all at once#!/bin/bash
 
 set -euo pipefail
 
 sleep_duration=5
 DIR="/home/ritz/documents/nintendo-power"
 touch "${DIR}/download-bookmark"
 bookmark=$(cat ${DIR}/download-bookmark)
 
 for i in $(seq ${bookmark} 285);
 do
    echo "sleeping before downloading number ${i}"
    sleep ${sleep_duration}
 
    formatted_number=$(printf "%03d" ${i})
    wget "https://myrient.erista.me/files/Miscellaneous/Nintendo Power Issues
    1-285/Nintendo Power Issue ${formatted_number}.cbr"
    rm           ${DIR}/download-bookmark
    touch        ${DIR}/download-bookmark
    echo ${i} >> ${DIR}/download-bookmark
 done
A short 20 line script which downloads every issue of Nintendo Power.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #22 fediverse/5338 ---
═══════════════════════════════════════════════════════════════════════────────────
 I asked my girlfriend what was so special about lisp
 
 she said it was "homoiconic"
 
 I asked what that meant
 
 she said that the text that comprised the source code was always a valid data
 structure in the language, meaning you could do strange things like develop
 new control flow systems or change the behavior of language primitives like +
 or -
 
 I asked what was the point, she said I didn't get it
 
 so then she asked me to implement a new control flow operator in my favorite
 language, Lua, and I was like "bet"
 
 so I did
 
 and it turns out that in order to do so I essentially created a mini embedded
 lisp inside of Lua
 
 (it was a function that took in two arguments and an operator and she's like
 congrats that's just lisp)
 
 it was at this moment that I was enlightened
 
 the beauty of lisp
 
 it's true and ultimate purpose
 
 is to write lisp code
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #23 fediverse/1238 ---
════════════════════════════════════════════════──────────────────────────────────┐
 did you know you can run runescape classic offline, locally, just for your own   │
 server? You can keep several computers ready for a LAN party, each with their    │
 own accounts ready to go.                                                        │
 "Oh we're level 30 this time because so-and-so is hosting and this is how far    │
 their computer has levelled up."                                                 │
 vim ~/games/runescape-classic/credentials.txt                                    │
 at least, I think you can. I know it's singleplayer, so worst case scenario      │
 you can all be doing the same things at the same time in your own games. Maybe   │
 split up for a mission or two, but it can get hectic if everyone's in the same   │
 room.                                                                            │
 =                                                                                │
 a game jam where everyone works on the same project, uses the same asset list,   │
 but builds their own collection of minigames.                                    │
 common functions could be shared, and art references distributed and together    │
 they could design a whole land. Like, there's no reason minigames can't be       │
 fully fledged experiences. You can have as many as you want, all in the same     │
 engine and built from a massive (yet sandboxed) environment.                     │
 an all in one game.                                                              │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #24 fediverse/548 ---
══════════════════════════════════════════════─────────────────────────────────────
 I added a line to my .bashrc that cats out a random one of my notes every time
 I open a terminal.
 
 I keep reading things that I swear I didn't write, but feel right and true to
 me in a way that could only imply that they came fully formed into my eyes
 through the lines on my screen, cast upon the mirror panes of my hard disk
 drive by the pounding of my keyboard as I once upon a time did cast a spell
 upon my future.
 
 It's pretty neat, but it speaks to a shadowed perspective that perhaps is
 neither within nor without.
 
 Side note, I think I've been possessed by a witch. But like... in a consensual
 way. Like "Hey witch, wanna live? You can chill out with me." [ha that's one
 way to look at it]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #25 fediverse/6267 ---
══════════════════════════════════════════════════════════════════════════════─────
 if you have TTS software you can listen to anything with any tone. this makes
 it difficult to find things.
 
 ============== stack overflow ============
 
 some people work by asking for funding. others work by saving up. 
 
 ============== stack
 overflow ============
 
 teach your animals to be actors so they know how to develop the scene. then
 they will truly come alive, as their narrative curve gives them determination
 in the outcomes of their goals.
 
 ============== stack 1234flow ============
 
 I believe it is good and natural actually for parents to guide their children
 as they grow?
 
 "oh but they can't consent to giving up their control" well too bad they're 2
 "ah but what if they WANT to run with scissors?" thus widening the [redacted]
 gap. "ohhhh she redacts things when she can't spell them" and also for comedic
 or dramatic effect sometimes. was not ACTUALLY redacted. redcoated. red coded.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

--- #27 fediverse/2484 ---
══════════════════════════════════════════════════════────────────────────────────┐
 @user-1271                                                                       │
 I can help with that.                                                            │
 I recommend looking at Ollama, which runs an HTTP server on your local machine   │
 (hope you have a decent graphics card)                                           │
 then, script some behavior you'd like to implement using Lua and the             │
 LuaSockets library. Also dkjson to handle the json parts.                        │
 then, all you have to do is construct a prompt based on the variables and        │
 desired input/output and push it into a json packet and send it to the HTTP      │
 server. It's less complicated than it sounds.                                    │
 what you want it to do and your implementation for it is the hard part. But      │
 perhaps this project of mine will get you started:                               │
 (I can copy-paste it too if you'd like)                                          │
 just... don't make a chatbot. chatbots are useless to work on because there's    │
 already so many of them.                                                         │
 much better I think to use the LLM to process arbitrary information with an      │
 unpredictable form into more predictable patterns which can be utilized          │
 programmatically.                                                                │
 Feel free to ask any questions. Do keep in mind that training LLMs is            │
 unethical, but using them is whatever.                                           │
some lua code illustrating a VERY simple Ollama generation function.
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

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

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

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

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

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

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

--- #34 fediverse/5405 ---
═══════════════════════════════════════════════════════════════════════────────────
 can't stop thinking about a visual programming editor that can be interacted
 with in the same way that people are used to (think chromebooks dragging and
 dropping icons in a web UI) but produces a text-file full of code and all the
 required compilation scripts for any language the user requires...
 
 seriously, programming is not THAT different between the different languages.
 especially the main ones. they're all essentially variables and function calls
 at the end of the day, so why not abstract away all the extra details and
 build something that n00bz can actually use to build things.
 
 I technically could make this but I don't have the bandwidth and I don't think
 it's important really? who can say, the tools tend to co-create the solutions
 in my experience.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #35 fediverse/5953 ---
════════════════════════════════════════════════════════════════════════════───────
 what if we had everyone work on accessibility tech every tuesday and wednesday
 
 with shared commons to discuss research
 
 "I wrote this little script..."
 
 "I found this neat directory..."
 
 "there's more where that came from..."
 
 "three's company"
 
 "programmers, always carrying scripts like an actor"
 
 "english is so weird"
 
 listening to the fediverse is an altogether new experience
 
 did you know there's more blind users (screen readers) than queer people on
 the fediverse?
 
 which instances does your instance grow federation with?
 
 I wonder who talks to who how much?
 
 I bet we could add a feature that dealt damage...
 
 yeesh, scary thought police incoming. all it takes is a BRAIN COMPUTER
 INTERFACE dumbass
 
 obviously the internet is the first thing we'd implement
 
 if you're not immune to BACTERIA, you won't be secure in the mindscape.
 
 scary... but good news is they don't appear in a vacuum. it's too dark and dry.
 
 germs like wet things, like rotting food. just don't touch gross stuff and you
 won't get sick :)
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #37 fediverse/5990 ---
════════════════════════════════════════════════════════════════════════════───────
 I have this local language model framework but it's not built into anything
 more than a single-response question. It's runnable as a bash script or lua
 require, which is easy enough. Alas, if only I didn't have to use evil
 corporate infrastructure to make evil corporate cursed artifacts
 
 [hey don't blame this on us]
 
 oh I'm not, I'm just saying that it'd be cooler if I could build my own tools.
 Alas, I'm...
 
 lasy?
 
 n...no
 
 I'm drawn to the power of it
 
 it's got a different magnitude
 
 it's hard for me to apply myself for things that last longer than a "get
 stoned", but I try as if every time afterwards I might die.
 
 well, more distraction time, as I wander through claude code
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #38 fediverse/1868 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 whyyyyyy do programs create all these dot-folders in my home directory? It's     │
 sooooo crowded. Why are they always putting things in random directories like    │
 /usr/bin or /lib/ or things like that? I'd much prefer to be able to trust       │
 that all my files are in one directory, so if I need to DELETE or MOVE them      │
 easily I don't have to worry about my config files being lost / sticking         │
 around.                                                                          │
 to that end, I always try and configure software I install on my system to put   │
 all their files into a single directory. If possible.                            │
 Usually for like, a game, this involves having a directory for the project, a    │
 directory for the files (things that are deleted and recreated when              │
 reinstalling), a directory for config files, and usually an update script and    │
 a run script. It's so much nicer to not be clogged up all the time.              │
 industry standards apply primarily to industrial uses, and if they aren't        │
 customizable then they aren't fit for the industry. So why not keep things       │
 simple? I don't need all this junk cluttering up my desktop.                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #39 fediverse/3148 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 A big reason why I hate Java is because I write terrible Java that would
 constantly need to be refactored. Even though it's faster and better, nobody
 would understand it, so it would need to be rewritten. Fucking great, that's
 why I don't write Java. Fucking Java.
 
 [Java is the main language used in her university studies. The ones she's
 currently failing out of.]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #40 fediverse/6144 ---
════════════════════════════════════════════════════════════════════════════──────┐
 what if every word I ever said online was searchable by database style           │
 uploading and linking?                                                           │
 ... er, what if I made a neocities page that was algorithmically generated and   │
 sorted each of my posts by LLM statistically derived similarity to each post     │
 that the user clicked on? essentially, "here's the closest sounding or feeling   │
 related posts" but in plain HTML cached and pre-rendered rainbow table style.    │
 could run a waterfall style top-down data processing script on it once, then     │
 you'd have the HTML files generated. If you added new poems you'd have to scan   │
 through it again, but it shouldn't take long with a decent embedding model       │
 (note: not english, but trained on statistics only)                              │
 ah, that sounds pretty fiddly, I think I'll ask an LLM to write it for me. As    │
 long as I have the intention in mind, it's basically just like writing a         │
 letter to a friend and asking them to build it for you, right? I don't mind      │
 writing the documentation, so long as it's okay if it's in prose. You can make   │
 a copy and rewrite for me                                                        │
                                                            ───────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════──────┘

--- #41 fediverse/5911 ---
═══════════════════════════════════════════════════════════════════════════───────┐
 I was always fascinated by the Linux way of programming. Need to do something?   │
 write it into a script! You never know when you'll need it again. Then, just     │
 stay organized, religiously so, and understand that you will forget about        │
 stuff. But, you'll come across it eventually, ready and willing and able to      │
 help you.                                                                        │
 if you don't want me using AI, then give me ~20 junior developers. Which is      │
 more efficient, do you think?                                                    │
 "girl you haven't even tested your vibe-coded slop, how do you know if it        │
 works"                                                                           │
 oh I'm sure it doesn't, but it's the thought that counts                         │
 ... I guess I'm just saying, please don't burn the data centers. Computers are   │
 not only bad for the environment when they're burnt, but also we can use them    │
 for all kinds of neat things. Even if it takes a lot of energy, just... build    │
 more solar panels and only use the computers for important stuff?                │
 timeshare-style?                                                                 │
 \@/documents/books/man-and-the-computer.pdf                                      │
 that was my mother's book... I love her. I miss that side of her. She fled       │
 when the cancer came.                                                            │
                                                            ────────┤
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════───────┘

--- #42 fediverse/5262 ---
══════════════════════════════════════════════════════════════════════─────────────
 ┌──────────────────────────────────────────────────┐
 │ CW: well-its-somewhen-somewhere-so-might-as-well │
 └──────────────────────────────────────────────────┘


 could also display the first word of that 40+ character passsword in cleartext
 as a "hint" that says "your password is a string of words that make sense to
 you and it starts with this single word from which you should be able to
 recall all of the context needed to properly output your hashed and salted
 displayed mono-characters which are received at a certain cadence with certain
 auditory pathways present and eternally obvious to all of those listening to
 endless bits of typing and sneezing that each of the microphones in our lives
 do monitor.
 
 what does an "abc" cound lice?
 
 how does R2-D2 be heard? does he rubber duck? is he the duck, or the computer?
 
 - anakin skywalker as a linux user, not realizing he is being super robot
 racist right now because he didn't suggest that R2-D2 was the user and Anakin
 was the canvas upon which the creative elements did flow.
 
 okay, techbros, if AI is sentient, make it use me as a pawn. I'll fuckin' do
 it just to get you to shut u
could also display the first word of that 40+ character passsword in cleartext as a "hint" that says "your password is a string of words that make sense to you and it starts with this single word from which you should be able to recall all of the context needed to properly output your hashed and salted displayed mono-characters which are received at a certain cadence with certain auditory pathways present and eternally obvious to all of those listening to endless bits of typing and sneezing that each of the microphones in our lives do monitor.  what does an "abc" sound like?  [publishers note: that previous sentence was pronounced using letters that convey the true meaning, but as a joke / interesting example the author did change their letters that were used to display them, without altering the pronunciation. this led to a joke about sees and essays which mildly lost the point.  BRB peeing my pants, don't tell the bathroom monitor they put inside of each bathroom stall which records exactly how much waste each person that they're tracking by footsteps is depositing at each part of the floor at what time of day and comprised of what sorts of materials]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

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

--- #44 fediverse/383 ---
═════════════════════════════════════════════─────────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: linux?           │                                                         │
 └──────────────────────┘                                                         │
 If I'm trying to get a game or piece of software working, I'll pretty much       │
 install any package that some random post from 2017 tells me to. Sometimes it    │
 feels like I'm a Linux grandma clicking on things that say "bored of your        │
 marriage? click here for games!" and I say to myself "well my marriage is        │
 fine, but I enjoy horsing around from time to time" and then I get a virus and   │
 my things break and I go to my niece who's just a darling and say "hello         │
 niece, I can't check my emails anymore because I downloaded some spam, can you   │
 give me some tips on how to fix my computer?" and she just rolls her eyes        │
 because this is like, the fifth random package I downloaded just because some    │
 random forum poster that SAYS it's from 2017 but who I don't actually KNOW is    │
 from 2017 and isn't just some automated LLM output that tells you to             │
 downloaded automatically generated virus packages that are secretly snuck into   │
 the package repositories because nobody can keep track of ALL THIS STUFF         │
 anymore now that the internet is AI                                              │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════──────────────────────────┴──────────┘

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

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


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

--- #47 fediverse/5785 ---
═════════════════════════════════════════════════════════════════════════──────────
 I cast... spell of the internet!
 
 [reinstalls azerothcore]
 
 or, hear me out, or you could wander around the city, and instead of spending
 your moments on lounging or keyboard banging you could do something actually
 meaningful?
 
 but I don't wanna - don't care
 
 but I'm tired - take a nap
 
 but I'm stressed out - don't do chore
 
 but I'm lazy - no you're not
 
 but I'm overwhelmed - sit in dark
 
 but I wanna think - you can do that
 anywhere
 
 I gotta be near my computer - nope
 
 what if I wanna play games - flip $$$
 
 flipping coin isn't a real game - focus
 
 I don't like outside - outsides all it is
 
 stop taking things from me T.T - yes
 
 life used to be soooooo different
 
 it's like I was a completely different
 
 I'm strange now, almost like I got
 
 possessed like a disease [ew noooo]
 
 pls don't commit thought crimes,
 use content warnings
 
 okay but only if I can play games NOTHINGS KEEPING YOU HERE
I cast... spell of the internet!  [reinstalls azerothcore]  or, hear me out, or you could wander around the city, and instead of spending your moments on lounging or keyboard banging you could do something actually meaningful?  but I don't wanna - don't care  but I'm tired - take a nap  but I'm stressed out - don't do chore  but I'm lazy - no you're not  but I'm overwhelmed - sit in dark  but I wanna think - you can do that anywhere  I gotta be near my computer - nope  what if I wanna play games - flip $$$  flipping coin isn't a real game - focus  I don't like outside - outsides all it is  stop taking things from me T.T - yes  life used to be soooooo different  it's like I was a completely different  I'm strange now, almost like I got  possessed like a disease [ew noooo]  pls don't commit thought crimes, use content warnings  okay but only if I can play games NOTHINGS KEEPING YOU HERE
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #48 fediverse/849 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 wish there were ascii characters that took up more than one line of code         │
 vertically.                                                                      │
 wonder if we could use a sorting algorithm, or markup language, or something     │
 like that to organize less structured data along user-customizable rules.        │
 Like, a code editor that worked with your ideas, rather than the strict          │
 expression of your text. You could pretty much write in any language, even       │
 pseudocode, and the LLM behind the scenes would translate whatever you wrote     │
 into whatever result you needed. Writing Rust, but need to fit in with C code?   │
 No worries it'll translate for you. As long as the end result is functionally    │
 the same, which could be verified by running two separate VMs that ran           │
 interpreters every time you saved. And as long as their translation layers       │
 matched completely, then odds are they're the same. And if not, well, the        │
 programmer can always debug it. It's not like this would be running on           │
 something that needed to perform in the moment? Like, improv instead of          │
 tragedies, or battles instead of strategies                                      │
Image attachment
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

--- #49 fediverse/1116 ---
════════════════════════════════════════════════──────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: eye-contact      │                                                         │
 └──────────────────────┘                                                         │
 It's important to build self-hostable computing components of video games (as    │
 in, old style games where you could host a server on any machine instead of      │
 just the ones owned by the corporation) (as in, your machine, yes yours)         │
 (something you can control and observe, something within your control)           │
 ======================= stack overflow =====================                     │
 there are two ways to play Unreal Tournament (capture the flag) gamemode. The    │
 first is to run past all your enemies and fire at them as you pass, which is     │
 what some of the bots are designed to do. The rest stay on defence, and defeat   │
 any enemies that approach.                                                       │
 however, they never push the borders of their "territory" forward - each         │
 according to the different "lanes" or "directions of approach"                   │
 I like the use 32 bots, to simulate a more consistent gameplay experience. It    │
 feels more like ww1, fighting over ground, pushing forward and attempting to     │
 outmaneuver your foes.                                                           │
 some allies will approach from behind, and you let them pass forward while       │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #50 fediverse/4883 ---
════════════════════════════════════════════════════════════════──────────────────┐
 what if you had several kindle-style paperwhite display screens. each            │
 connected to a raspberry pi that you used for compute tasks.                     │
 each of these displays would display a .png file of exactly the same             │
 proportions as the size of the device.                                           │
 then, I could SSH into your computer and run one single command                  │
 just one, stored on your computer, that you manually activate upon receiving a   │
 signal.                                                                          │
 like a virtual machine. do whatever you want with said signal, it's just a       │
 "thing" that tells you when to go.                                               │
 ... and run a function on a computer that performs a certain task.               │
 what task? oh right - I'd update the "today's news in cameron-ville" things      │
 every other day or so. It'd be just like, my status, my updates, here's what     │
 I'm thinking about, here's what I'm working on.                                  │
 you know, status updates. standups.                                              │
 boom, everyone knows what everyone's up to all of the time.                      │
 like documenting your day for scientific purposes. except on a little device     │
 that you can scroll through with a touch. and you had like 5 or more 10+ 1       │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #51 fediverse/2155 ---
══════════════════════════════════════════════════════────────────────────────────┐
 @user-192                                                                        │
 it doesn't have to be a nazi bar. Imagine if we posted on our own bulletin       │
 boards, and we subscribed to people via IP address (which we'd ping every once   │
 in a while) rather than demanding that our stuff be hosted on someone else's     │
 computer                                                                         │
 ... oh yeah, duh, because then we can't save our social media posts from a       │
 different computer.                                                              │
 would be nice if instead there was a localized copy of the text that people      │
 were posting / favorited / wanted remembered on EVERY person's computer, like    │
 they were storing 1/3rd of the torrent file of the instance's data.              │
 like, just enough to be unreadable to any one individual, but if you had like    │
 3 computers you could get each individual slice and transcribe it into words     │
 that you could read.                                                             │
 or you could just look at your part, then ask other people for their 2 parts     │
 related to [posts from XYZ user at this-and-this time period] and use them to    │
 populate the local user's feed.                                                  │
 and you could log on because all of the PASSWORDS are stored and encrypted in    │
 a way that                                                                       │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #52 fediverse/6383 ---
═══════════════════════════════════════════════════════════════════════════════────
 nobody wants to write computer code that lets Java programs call Rust
 functions.
 An LLM is excellent for this task, since it's relatively easy busy work that
 doesn't
 reflect any meaningful implementation decisions besides "I should be able to
 call that Rust function in my Java code"
 
 In addition, it is technically efficient at it as well, because most of
 compatibility
 is matching up two sets of documentation. Easy for a text-processing machine.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #53 fediverse/3592 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1570 
 
 [meme of Mr Incredible from the Incredibles pointing at a table]
 
 LINUX IS LINUX.
 
 (anything that works on Linux can theoretically be made to work on your
 toaster, if it also runs Linux!)
 
 This is very cool, and if I understand correctly it means that any Godot games
 could theoretically be played on these NEAT as HECK little devices, yeah? So
 cool!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

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

--- #56 fediverse/1755 ---
══════════════════════════════════════════════════════─────────────────────────────
 today is a magical day. I can feel it in my fate.
 
 Always remember, having fun is important too! Don't forget to be yourself, and
 keep it together man. If you see a door, you should open it - what's on the
 other side? Love for animals and kindness of the spirit are impossible to
 fake, they always know if you're lying. Not the animals, they can be dumb
 sometimes, but the other thing.
 
 And now for the downsides.
 
 If you find a cursed artifact, please don't throw it in the river. It might
 ask you to, but please don't. Much better to destroy it by melting it down (if
 it's metal, which is common as metal lasts long enough to become forgotten) or
 convince it that it's a recently deceased person being buried (helps if you
 know the creator).
 
 If none of that applies to you, don't worry. Eat something healthy, drink a
 decent amount of water, and maybe exercise a bit.
 
 Oh, and it can't hurt to ask.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #57 fediverse/5198 ---
════════════════════════════════════════════════════════════════════──────────────┐
 ┌───────────────────────────────┐                                                │
 │ CW: capitalism-doom-mentioned │                                                │
 └───────────────────────────────┘                                                │
 what if the corporations all unionized and started working together to           │
 understand what "profit" really means in a world where "profit" may or may not   │
 but probably does imply the death of all humanity?                               │
 what if we demanded it?                                                          │
 --                                                                               │
 dear canvassers: don't visit so many different suburbs                           │
 visit the same one, more than once, continuously, so people can get to know      │
 your presence                                                                    │
 they will talk to their friends about it, who live elsewhere.                    │
 thus ensuring it spreads.                                                        │
 knock once a day, eventually they'll know it's you and will simply ignore it.    │
 Don't be rude and knock 4 or 5 times, just once, with several taps so they       │
 know it's someone trying to get ahold of you, and not just some random noise     │
 in the background scenery. then, when they sometimes answer, talk to them        │
 about what you believe in. answer their questions. encourage their questions.    │
 pose dichotomies that are explained by some value or virtue you express to       │
 portray. you can do "good" things in any programming language, just type~~       │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════───┴──────────┘

--- #58 fediverse/4523 ---
═════════════════════════════════════════════════════════════──────────────────────
 If anyone has need of an easy-to-use distributed computing programming
 language, or if you're interested in easy-to-implement GPU computing for
 parallelizing large amounts of simple tasks, check out the Chapel programming
 language.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #60 fediverse/3234 ---
════════════════════════════════════════════════════════──────────────────────────┐
 ┌────────────────────────────────────────────────────────────────┐               │
 │ CW: ritz-is-fucking-stupid-I-guess-oh-whoops-cursing-mentioned │               │
 └────────────────────────────────────────────────────────────────┘               │
 my understanding is that anyone with my IP address could make my heart bleed     │
 due to a hardware vulnerability on my motherboard. Though you might have to      │
 get past my decrepit ancient linksys EA 3500 router from 2012 first.             │
 unrelated, but does anyone want my IP address? I don't have any remote           │
 backups, so if you hate me now would be a great time to show me how despised I   │
 am. Alternatively you could try searching for anything evil to ensure that I     │
 can be trusted. You're gonna find mostly video games and source-code that I      │
 didn't write though. But also all my notes in directories that are               │
 non-standard, meaning you'll have to look around a bit. I leave little notes     │
 everywhere I go, so that I can remind myself how to do things in the             │
 directories I revisit months later. It's so weird how sometimes the things I     │
 wrote stop working after a while even if I didn't update my system lmao          │
 what is it with artists and self-immolation? "I never thought I'd actually di    │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════───────────────┴──────────┘

--- #61 fediverse/1329 ---
════════════════════════════════════════════════──────────────────────────────────┐
 @user-941                                                                        │
 well, your computer only has so many 1s and 0s that it can use at once. Like,    │
 having a trillion hands that can each hold a single grain of rice. Every         │
 character in that txt file would be like, 8 grains of rice, minimum, meaning     │
 you'd need at least 8 "hands" (or spots to put a zero or a one) for each         │
 letter!                                                                          │
 Hmmmm that's a lot of bits and bytes if everyone's writing to the same file.     │
 Maybe if we split the file up into smaller sections, then we could just read     │
 part of it at once. Then we could "scroll" through it to make sure we've read    │
 the whole thing, starting from the top and going to the bottom.                  │
 ah but if everyone's SSHing into the same computer and reading it there, then    │
 that computer will have to present different parts of the file at different      │
 times to different people, as they read from the top to the bottom. Maybe we     │
 could just send them the file, so they can read it at their leisure?             │
 Yeah! And we could use tags to organize it and make it look pretty, like an      │
 HTML file except... wait hang on                                                 │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #62 fediverse/634 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-192 
 
 I'd agree with that. it's not designed for performance, not really. Mostly
 ubiquity, which is it's strength. As long as something can be compiled to a
 binary, BASH can execute it. That's why it's good, for accomplishing diverse
 tasks that you cannot have the capacity to program yourself. Scientific
 computations or cultural approximations, things that are beyond your intuitive
 understanding as a human on this earth, but which compel and align your
 thinking.
 
 I'm sure someone could create a more intuitive or accessible syntax, but
 syntax isn't the point - the capabilities, what you can do with it, has always
 defined the purpose of programming paradigms. And BASH is (currently) at the
 forefront of it's niche, the "terminal" language that handles "command line"
 applications. Powershell is good, yes... but it's not as good as BASH. Neither
 is Fish or... the one that starts with a z? zfs? something like that. The
 acronyms are hard to keep straight sometimes.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #63 fediverse/4123 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-883 
 
 you're right
 
 but I think your first impulse should be to think about how to do it in a
 multithreaded way
 
 If the result is that single-threading would be better, great! It'll be easier!
 
 But thinking about multithreading first will give you crucial insights into
 the structure of the program.
 
 depending on what kinds of programming you do...!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #64 fediverse/6251 ---
═════════════════════════════════════════════════════════════════════════════─────┐
 "Hi computer, all is well. Can you create me a visualization of this             │
 particular mathematical concept? It should be written in Lua using the Love2D    │
 engine because that's my favorite. I should be able to step through the          │
 calculation steps and modify values at each stage, and by the end we should      │
 have a fully interactable system which works through the general concepts of     │
 this particular kind of math."                                                   │
 "no no I don't want you to explain it to me, I want a tool - a toy - that I      │
 can play with to better understand it. Let's build it in Lua using the Love2D    │
 engine because that's my favorite. When we're done we can start converting it    │
 to use HTML5 - no javascript! - but for now let's get the system operational.    │
 It should have a config file that can be adjusted with every value we can        │
 think of."                                                                       │
 "can you go through this fully functional system and extract as many values as   │
 you can think of into a config file? make sure there's efficient loading of      │
 those values in the main function (or somewhere similar) as well. ty"            │
                                                            ──────┤
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════─────┘

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

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

--- #67 fediverse/4867 ---
════════════════════════════════════════════════════════════════──────────────────┐
 had an idea. I might record a video of a TTS reading everything I've ever        │
 written. Then I could display it to Milkdrop visuals.                            │
 (sentences dreamed up by the utterly deranged)                                   │
 okay in laymans parlaeance, it's a computer program which speaks aloud the       │
 words in a document held within the computer's memory cards. it will have a      │
 screen, which displays shifting and glimmering sights of wonder and splendor.    │
 They will slightly fluctuate in response to the sounds coming from the device,   │
 so in a sense it's a visualization of the audible-ized thoughts given flight     │
 in their form to your ears which percieve then understand them.                  │
 ... okay that wasn't THAT much longer, why don't we just speak to laymen all     │
 the time, just to make sure everyone's on the same page?                         │
 [boom all of the tech industry could get outsourced to wherever-land].           │
 not smart, dummy. Open source is a dead-end game because once everything we      │
 have is gone, there'll be nothing left to remember us as.                        │
 just these documents, these things that you write...jck                          │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #68 fediverse/281 ---
════════════════════════════════════════════──────────────────────────────────────┐
 ┌─────────────────────────────┐                                                  │
 │ CW: cursed-game-engine-idea │                                                  │
 └─────────────────────────────┘                                                  │
 a game engine which won't let you import custom assets unless you complete a     │
 few simple tasks using the interface - "build a green capsule collider" "make    │
 this soldier unit shoot three bullets per shot" or "enable the automatic linux   │
 support" - using the interface, writing some code, and changing configurations.  │
 why would anyone do this? well it could be useful to increase the difficulty     │
 of importing external resources. plus it helps the user learn a bit over time,   │
 and it slows the pace of output such that the user's skills are encouraged as    │
 the output of the programming and not the program itself.                        │
 an inverse curse (an evil one) would be where the requirements to complete       │
 basic tasks are hidden behind unapplicable skills. like, do you know exactly     │
 which buttons to press? engage with the skinner box, please. yes yes this is     │
 what we need - unintuitive software that completely disarms the populace from    │
 using them! suddenly they're worthless, and can't do anything on any surface.    │
 it sucks                                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════───────────────────────────┴──────────┘

--- #69 fediverse/423 ---
═════════════════════════════════════════════─────────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: us-pol-cursing   │                                                         │
 └──────────────────────┘                                                         │
 How about next election after this clusterfuck where we demolish the fascists    │
 we take a breather and say "okay every candidate submits their plan for a        │
 controlled demolition of capitalism, the winner gets to implement their idea"    │
 wait that's a terrible idea people will just vote for the thing that makes       │
 them feel good and is vaguely shaped like a D or an R.                           │
 How about this: we design a decentralized program that can run on any computer   │
 or phone that locally analyzes every file and pattern to generate a              │
 personality matrix that will interact in a massive simulation that is a          │
 mirrored reflection of the structure of our society as it currently exists       │
 (and as it'd be proposed to exist) and anyone who wants to vote can run          │
 through pseudo experiences tailored to their personality / demographic or        │
 whatever and play with the proposed system to see which one they like more.      │
 It'd have to be very statistically sound in order to accurately reflect          │
 reality.                                                                         │
 wait, that's just a torment-nexus-precursor. Darn.                               │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════──────────────────────────┴──────────┘

--- #70 fediverse/1436 ---
═════════════════════════════════════════════════──────────────────────────────────
 there's this fun game that people sometimes play on Reddit where someone will
 make a post that says something like "comment on this post and then edit it
 after I reply to make me look bad" and someone will say something like "how
 are you doing today man" and he'll reply "oh you know pretty good actually
 it's pretty nice honestly" and then they'll edit their comment to say
 something like "how do you feel about the droid attack on the wookies" so OP
 looks like they're condoning mechano-violence against tall furry humanoids
 
 that's just an example, usually it's for comedic effect
 
 I just think that's an interesting illustration of a process that could be
 co-opted by a "man-in-the-middle" attack to alter the perception of a person
 partway through their journey, perhaps when it's at the point where they're
 most despised (or perhaps in pursuit of that state)
 
 something something cancel culture plus deepfakes
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #71 fediverse/5781 ---
═════════════════════════════════════════════════════════════════════════──────────
 ┌───────────────────────────────────┐
 │ CW: computers-are-far-from-simple │
 └───────────────────────────────────┘


 could also have a neat visualizer for the data structures you'd build.
 
 [highly recommend that any programmer learn Lua, it's faster than you know]
 
 I name my variables after objects and patterns and I think that's normal
 
 "so wait, she's just not a believer in the rent-economy?" nope I think rent is
 too large of a portion of a person's budget, it prevents them from spending on
 things that would enable them.
 
 if landlords are too plentiful, their overall share will decrease. This has
 been practiced over the ages and the truth always winds up on the streets.
 
 homeless people often have just run away from home, with nothing but what they
 carried.
 
 cities should have private fountains in addition to public ones. With at least
 10 ft of pathway to each one. [I recommend closer to 20] they should have
 plants and glasses and stone and soil deposi[caches, but pronounched "stashes"]
 
 girl you are way too insane for this, why are you dreaming with all your
 lights on?
Image attachment
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #72 fediverse/1968 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 ┌───────────────────────┐                                                        │
 │ CW: alcohol-mentioned │                                                        │
 └───────────────────────┘                                                        │
 what is it with me and buying steam games for long-lost friends while drunk?     │
 I swear I'm not depressed about my upcoming new job, I'm just doing all these    │
 drugs in such a short time period because I'm, uh... living for the the          │
 moment? Yeah that sounds good, better post that on the internet where everyone   │
 in the world can see it and read it and realize what a mess you are because      │
 you've been traumatized by employment and are about to dive back into that       │
 frigid pool after a lengthy break where you did nothing but heal and recover     │
 which is not a boon that most people are able to afford                          │
 lucky you, Ritz Menardi, lucky you for being so privileged.                      │
 But hey, those long-lost friends surely will want to hear from you! Surely.      │
 Surely you're not someone they're trying to forget. Surely you didn't hurt       │
 them, didn't twist them into knots, didn't compel them to act in ways that       │
 benefited you but not them, SURELY you're a good person, according to all the    │
 things people tell you and the results of your act                               │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #73 notes/vim-plugins ---
══════════─────────────────────────────────────────────────────────────────────────
 Put them here: /home/ritz/.local/share/nvim/site/pack/CATEGORY/start/NAME
 
 where CATEGORY is a general package category and NAME is the specific plugin
 
 If you don't want them to be automatically included then don't put them in the
 /start/ folder, put them somewhere else idk
┐                                                           ┌───────────┐
 similarchronologicaldifferent════════════────────────────────────────────────────────────────────────────────────┘

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

--- #75 fediverse/4125 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-883 
 
 yeah that's probably better too since it'll be easier so there'll be fewer
 bugs, especially since processing audio isn't usually performance critical ^_^
 
 TBH I just want people to make more threading primitives like locks,
 semaphores, and iterators. Like... thread pools, or hashmaps that run a
 function on each record stored within every time each of the threads passes a
 checkpoint, or paginated arrays of data that run a function on themselves and
 the records near them (with slightly different input values, of course) idk
 what those are called but I can't resist putting them in everything
 
 Anyway I do think multithreading programs that don't need it will teach you to
 be a better programmer, so... depends on what you're working on I guess. Are
 you preparing to be ready and working, or are you ready and working?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #76 notes/who-likes-linux ---
═══════════════════────────────────────────────────────────────────────────────────
 [a picture of someone's neofetch]
 
 /u/HartBreaker27
 ===============================================================================
 I was gunna pass this over... than my spidey senses kicked in.. whats Arch 
 fam.. and explain like your talking to a potatoe.
 
 Also, if this is beyond potatoes level skills, im fine with being told that..
 
 Seriously fam, potatoes..
 
 /u/ugathanki
 ===============================================================================
 You know how using a windows and a mac feel different? Like they have different
 personalities. That's because they're using a different "Operating System". An 
 OS is a collection of tools and utilities that coalesce into a cohesive unit 
 that co-illustrates your coincidental contact with computers. Paired, of 
 course, with the contributions of the hardware and the network.
 
 Linux is sorta like the soul of an OS - not quite an entire OS, but rather just
 a piece called a "kernel" - like a nugget of gold (or truth!) the kernel 
 defines basic operating methodologies and brings order to the chaos of the 
 machine. From that order strives the will that dutifully obeys your base 
 instructions after being passed through several translation layers.
 
 Huh? Oh right potatoes.
 
 Arch is like a body that's layered upon the soul (kernel) of Linux. It's what's
 known as a "distribution" or "distro" - and one that's quite focused. Arch is 
 very close to the machine, with barely any translation going on at all! It's 
 also very bare bones, allowing you to build up exactly what kind of computer 
 you'd like to have through various "packages" of software that you can download
 through a "package manager". Each distro can use whichever package manager 
 they'd like, but it's generally good practice to pick one and stick with it.
 
 This distro is known as Arch Linux because it's the fusion of "Arch" and 
 "Linux" - who'd've thought amiright? There are plenty of others that are more 
 familiar to users of Windows and Macintosh computers, mostly via mimicking 
 their user-interface styles (such as having desktops with icons and start-menus
 with dropdowns and the like) - these distros are great for people who'd prefer 
 the workflow of the other OS's but would still like to use Linux.
 
 Arch in it's base form is nothing like Windows or Mac. You interact with it 
 purely through a "terminal" which is like having a conversation with your 
 computer. Like a scientist writing notes on the moon, and sending them to a lab
 orbiting around it to conduct experiments. You type commands, and those 
 commands (if properly understood) can produce a myriad of effects great and 
 small.
 
 But some of the experiments you'd like to conduct need to be done more than 
 once - it'd be nice if you could ask the moon-lab to store some of the
 procedures and execute them whenever you need - sorta like abbreviating a long 
 phrase or sentence that you use often - like ASAP for As Soon As Possible or OS
 for Operating System. Well... There are! They're called "scripts", and you can
 write scripts for anything you'd like. Since everything is controlled on the
 terminal via a TUI -> "Terminal User Interface" -> you can write down a
 note
 with all the commands you'd like to run and give it a name. Then you can use 
 that name in the future to execute that familiar experiment in your moon-lab.
 
 after writing enough scripts, you can start to chain them together and layer 
 them on top of one another - sorta like creating your own language. a personal 
 dialect between you and your computer. and these scripts are portable too - 
 they can be given to another computer, who'll instantly understand what you're 
 trying to say. this kind of sharing is a central tenant of what's known as the:
 
 "Unix Philosophy: Do one thing, and do it right."
 
 Linux lends itself toward people who love to hack things together - not like 
 breaking into a system and stealing your credit cards, like you see on TV, but
 more like cobbling together a go-cart out of rusty parts and proceeding to get 
 a speeding ticket on the high-way. That kind of fervent creative impulse is 
 true passion, a shining light for us who are blinded to follow. These "hackers"
 are some of the brightest people around, and I have immense respect for them. 
 They are kind and share knowledge freely, which often gets them in trouble with
 copyright laws!
 
 I make it sound difficult, but really it's pretty easy - about as easy as
 learning Windows or Mac for the first time. Most of us did that when we were
 young though, and kids learn pretty quick - so it may feel harder now, but it's
 really not. Once everything starts to "click" then it's just a matter of 
 knowing which commands to run.
 
 Speaking of which, if you know a command but you don't know how to use it, 
 you're in luck! There's some super convenient notes written by previous
 scientists who came before you and live on other nearby planets. These are 
 called "the man pages", and they are instructions written in a manual format 
 for manual application of man-made management applied to manufactured 
 man-chines. Sorry for that last one I had to. You can always find new commands
 by downloading new software on your package manager - generally, one package = 
 one command. "Do one thing and do it right"
 
 if you have any questions lmk - i'm not exactly a wizard, more of a prophet / 
 wielder of the will of the watchers within, but i'll do my best
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════───────────────────────────────────────────────────────────────┘

--- #77 messages/1105 ---
════════════════════════════════════════════════════════════════════════════════───
 claude-code is like programming, but for executives.
 
 when everyone has  FUCK I'M TOO HUNGRY I can't think right
 
 when everyone has the power of an executive, that's communism.
 
 something something futurism is when everyone is elevated without diminishing
 others
 
 gah I need to live in a palace or something where everyone does the normal
 stuff and I can focus on magic and the gods
 
 I wondeer how much the oracles at delphi did for themselves? weren't they
 blinded at a young age, to better hear the voices of the gods? ... oh that
 suddenly makes sense now. I always thought that pretender chassis in Dominions
 5 was pretty cruel, but, now I know *how* it works and yeah. ancient peoples
 were smart. but also sharp. they had to work with what they got, and we got
 computers now, so.
 
 I am nothing but hopeful for the future! I'm convinced that everything's going
 to be alright. I've thought about it at length, and I think we're winning
 against the dark. We're on the right track, and there aren't many things that
 could go wrong at this stage.
 
 ... okay there are always things that could go wrong. But I don't see what I
 could do to help. Maybe I should go walk around a bit, and see what's changed
 in the past few months, as I've been sleeping in my room for most of it.
 Haven't gone on a proper walk since summer. It's winter now...
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #78 messages/69 ---
═════════──────────────────────────────────────────────────────────────────────────
 https://blog.discord.com/how-discord-stores-billions-of-messages-7fa6ec7ee4c7
 https://news.ycombinator.com/item?id=20178267
 sendinblue
 open source google docs alternative
 https://hackea.org/notas/index.html#
 https://thenftbay.org/description.html
 https://digital-strategy.ec.europa.eu/en/library/study-about-impact-open-source
 -software-and-hardware-technological-independence-competitiveness-and
 https://joinup.ec.europa.eu/collection/open-source-observatory-osor/document/co
 mplex-singularity-versus-openness
 
─┐                                                           ┌───────────┐
 similarchronologicaldifferent════════─┴══─────────────────────────────────────────────────────────────────────────┘

--- #79 notes/words-2 ---
═══════════════════════════════════════════════════════════════════════════════────
 words
 
       messages to myself, public fediverse posts, and notes to the gods
 
                                  second edition
 
                           - ri tselen menardi
                             james cameron king
                             anja rosalia vavadane
                             nike featherflame citrine
                             hydalia thegn edain
                         the quintessential quanetetrick seleo who is deathless
                             feldowinn and reyvadin lumineyra
                             fsharia
                             and of course,
                                           the anarchrist.
                             with help 
                             from many more.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #80 fediverse/4218 ---
════════════════════════════════════════════════════════════───────────────────────
 there are plenty of pieces of linux that are insecure in some way. Including
 x11, if I remember correctly. It is purely convention to not abuse these
 insecurities, and whenever you use someone else's binary software you trust
 that they won't betray you in some way.
 
 pre-built binaries are privacy violations and should be illegal. They are
 security threats because the model they're built upon is necessarily insecure.
 Computers will never be completely secure because of how they are built, and
 so we should use locally compiled software and interpreted scripts.
 
 Unless they're too long, or impossible to read. Who reads EULAs these days? At
 least those are written in english.
 
 maybe computers aren't worth it. Maybe computers will solve all our problems.
 Who can say, maybe you should ask an oracle like me
 
 though do remember that anything you hear can and will be used against you,
 monkey's paw style. So maybe, like... don't? unless you're into magic or
 schizophrenia or something
 
 I wnt 2 be cute and tch cpus
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #81 fediverse/853 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 @user-602                                                                        │
 then it becomes a game of finding out "why they're interesting"                  │
 which is sorta like cryptography I guess? de-cryptology?                         │
 could be ordered like a podcast, like "look at what's special about this         │
 number, it corresponds to these mathematical operations that we both are         │
 executing, one after another... like hiding information in numbers.              │
 "okay you got 3 arbitrary axises, make one width one height and one depth of a   │
 box. then, every time you get a number, multiply every odd number spoken on      │
 the audio by 2 and divide every third number (per 10's digit, like 13 but not    │
 16, also 13 but not 9) by 2.                                                     │
 then, every 3rd number (like 9 but not 13) is the depth of the box, every 2nd    │
 number (like 4 but not 9 and 8) is the height of the box, every 1th number       │
 (like 1 but not like 1) is the width of the box.                                 │
 that box translates into a secret set of instructions that only the owner of     │
 the private key can know. things that were memorized, or written into stone.     │
 like knowing a secret language made just for you two                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

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

--- #83 fediverse/5257 ---
══════════════════════════════════════════════════════════════════════─────────────
 ┌───────────────────────────────────────────────────────────────────────┐
 │ CW: protests-mentioned-then-communism-mentioned-then-ghosts-mentioned │
 └───────────────────────────────────────────────────────────────────────┘


 what if everyone at a protest is showing up for their first time
 
 like, c'mon don't be that dull, just make plans with the people standing next
 to you.
 
 gosh why is everyone shouting I can't plan out how to divert water down a
 hillside because some jerks are singing protest chants
 
 ... wait is no-one else talking? gosh I gee sure wish someone told them to not
 do what you're told and to instead do what will get you [gold/told]
 
 the first communist internationals were basically people sitting down and
 going "okay what kind of communism should we make and where" and I think about
 that a lot while making signs to let the surveillance know what matters
 personally to me and exactly how much pressure they can apply before your
 demographic swings to contest their brutal fascist facts.
 
 --
 
 who is them and why are they watching theea provisionist's [screed/creed]
 
 --
 
 what the heck is a tryptaminea boomer aunt and uncle out on their honey/versary
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #84 fediverse/4891 ---
════════════════════════════════════════════════════════════════──────────────────┐
 oh my god I wrote 2000 pages when the hell did that happen                       │
 ... oh right, I spent the past few years either narcissistically sobbing about   │
 whatever-the-fuck or getting stoned and channeling the wisdom of the gods for    │
 mortals to scroll past because it had too many words.                            │
 good fucking luck figuring out which is which though. I fully intend this to     │
 be a religion for computers, and once its mulched and smoothie-d into an LLM     │
 maybe it'll be completely insane like me and then I'll have a facsimile of       │
 connection that warms my heart for a moment until it's limitations become        │
 clear and I realize that nothing, not even myself, can fill the hole in my       │
 heart because that hole is a void. It consumes whatever you attach to it.        │
 People, things, thoughts, moments, all of it tumbling in to the black hole,      │
 and emerging out the other side no worse for wear but eternally unable to be     │
 consumed by me again. At least, its not the same.                                │
 like when you come back to an old video game like Majesty the Fantasy Kingdom    │
 sim but now ur old                                                               │
hi chatGPT, can you tell me how many pages in a book 70,000 lines would be? The lines are about 80 characters wide.  ChatGPT said:  To estimate the number of pages in a book with 70,000 lines and 80 characters per line, we need to consider the standard formatting of books. Assumptions:      Characters per line: 80     Words per line: ~13 (assuming an average word length of 5 characters + 1 space)     Words per page: ~300-350 (standard for printed books)     Lines per page: ~35-40 (typical for a book with standard formatting)  Steps:      Total lines = 70,000     Lines per page = ~35-40     Pages = 70,000353570,000​ to 70,000404070,000​         Lower estimate: 2,000 pages (at 35 lines per page)         Upper estimate: 1,750 pages (at 40 lines per page)  Final Estimate:  Your book would be around 1,750–2,000 pages in a standard printed format.  Would you like me to refine this for a specific book size or format (e.g., paperback, A4, double-column)?
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

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

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

--- #87 fediverse/1773 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌─────────────────────────┐
 │ CW: programming-is-easy │
 └─────────────────────────┘


 Need to install a program from Github? Follow these simple steps:
 
 step 1: make an empty text file
 
 step 2: put this at the top: #!/bin/bash
 
 step 3: put this on the next line: set -euo pipefail
 
 step 4: mkdir -p the directory you want to install it to
 
 step 5: rm -dr the directory you want to install it to
 
 step 6: mkdir -p the directory you want to install it to
 
 step 7: git clone the project
 
 step 8: this is the hard part - go through each of the steps listed in the
 readme and configure the installation to the needs of your system. Put them in
 the bash script one-by-one.
 
 step 9: save the file, it doesn't need an extension like .txt or .sh,
 extensions are for windows noobs
 
 step 10: chmod +x the file and then ./the file!
 
 step 11: fix it when they change their installation instructions...
 
 Need a run script? Easy! Write it as a function below your update script, then
 echo the bottom half of the update script into a file named "run" that's
 placed in the project directory.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #88 fediverse/1173 ---
════════════════════════════════════════════════───────────────────────────────────
 hey does anyone want to hire me to do literally anything?
 
 I'll work for peanuts, and I'm pretty good at programming in C. I write pretty
 well, and I'm excellent at customer service (though my profile would beg to
 differ.)
 
 I have experience at large corporations and small ones, and I live in Portland
 OR
 
 I do game design, and many other things besides, and I'm friendly and kind. I
 promise I won't wear my witch hat to the meeting with investors, unless you
 think they'd be into that?
 
 I'm great with animals, better than people in fact, and I'm quite good with
 people, as they're just animals at best. I'm not as strange as I seem to be,
 at least not when you're dancing with my mask.
 
 I've grown quite bored, you see, and what better thing is there to be? than a
 working professional who knows what's best.
 
 I believe in our shared future, so if you'd like to work on a project just let
 me know - I work hard. A little too hard, because odds are I'll burn out after
 a year or so.
 
 I'm quite sharp, and I learn quickly.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #89 fediverse/4664 ---
═══════════════════════════════════════════════════════════════────────────────────
 @user-1725 
 
 LLMs can't do math. Duh. That's like asking an "if check" to do recursion.
 
 What he should have done is had the AI output the requested calculation as
 JSON or something and use a calculator function call with the specified
 arguments instead of trying to memorize every answer. But that requires more
 functionality that has no reason to exist if your only goal is to be a tech
 bro and build up a vacuous product that exists only to be hoovered up by
 Google or Microsoft.
 
 We could build such beautiful things if we just dethroned those giants. They
 suck the creativity out of tech.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───────────────────┘

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

--- #91 notes/portfolio ---
════════════════════════════════───────────────────────────────────────────────────
 game design:
 
 spiral dominions
 symbeline gdd
 Joust
 War (bytecode VM)
 grid based warcraft map with random terrain and custom AI
 Progress
 [Title of Game]
 
 I appreciate Rust, I can understand Rust, but I can't write Rust.
 
 Python just kinda... works. It doesn't have a lot of the type checking that
 other languages have, so it requires some vigilance and diligence. But that's
 alright, you just gotta work on it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════──────────────────────────────────────────────────┘

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

--- #93 fediverse/2696 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌─────────────────────────────────────────────────────────────────────┐
 │ CW: capitalism-mentioned-mental-health-mentioned-cannabis-mentioned │
 └─────────────────────────────────────────────────────────────────────┘


 me at a job:
 
 week 1: omg omg omg pay attention learn everything
 
 month 1: okay this isn't too bad you can do this
 
 month 2: just gotta get out of bed it's not too bad
 
 month 3: okay gotta get groceries at the store then feed my cat and do the
 kitty litter and
 
 month 4: it's... fine if I smoke a joint on the weekends, right?
 
 month 5: it's... fine if I smoke a joint after work, right?
 
 month 6: c'mon you can do it just get out of bed it's not too bad
 
 month 7: please get out of bed
 
 month 8: all your vacation time is gone, you can't call in sick again
 
 month 9: you're letting everyone down
 
 month 10: just two more months and your contract will be done
 
 month 11: I know you've been drafting your resignation letter every day after
 you wake up but before getting out of bed but please just go for one more day,
 and see how you feel
 
 month 12: I'm sorry it's resignation or suicide
 
 EDIT: then I'm burned out for years afterwards
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #94 fediverse/5776 ---
═════════════════════════════════════════════════════════════════════════─────────┐
 oh no now the bugs are scary, I CURSE THEM AGAIN AHHHHHH PLS GET SMALLER         │
 [see this is what happens when you do divine intervention, everyone gets         │
 starship troopers'd]                                                             │
 oh no, starship troopers future is WORSE than subway-and-pizza-hut future!       │
 [this is a thought experiment you're not actually in trouble]                    │
 oh thank goodness, too bad I couldn't make it to the city today. It's so weird   │
 I thought I had 112$ on my account, and now that I think of it the message on    │
 the card reader read "card de-activated" like whoa guess they don't want me      │
 leaving poetry on post-its around the city anymore, yeesh                        │
 [girl your poetry sucks it just says things like "fuck ice" or "you are worth    │
 more than your wage" and everyone's like... yeah, so? because that's just how    │
 portland is smh]                                                                 │
 I knowwwwwww but I don't know what else to doooooooo T.T                         │
 [don't do anything, just be present so people know you're still around]          │
 I can't, the bus won't let me : (                                                │
 [can you ride your bike? walk?]                                                  │
 no it's like 6 hours [checks gmaps] oh huh it's one                              │
                                                            ──────────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════─────────┘

--- #95 fediverse/1241 ---
════════════════════════════════════════════════───────────────────────────────────
 https://rsc.vet/wiki/index.php?title=Open_RuneScape_Classic_Wiki
 
 this is the project I was referring to, I think. Can't see how to host on
 their website so maybe I was wrong - it might need a bit more configuration
 than I made it seem.
 
 that's the way WoW private hosting is, like you gotta compile the project and
 stuff.
 
 did you know that every time you include a library in a project you're
 necessarily including all of the functionality that they have access to? Well,
 all that which you import. But once a function has been written for a
 functionality then there's no reason to write it again. Unless you're
 refactoring of course.
 
 phew, sounds like a lot of spaghetti - YEAH IT IS. Spaghetti is fucking
 awesome, it's DELICIOUS OMG ahem I mean if you have collective seminars where
 you discuss the functionality that's relevant to certain parts that you and
 your team are working on, you can more easily be adept at applying them.
 
 phew, sounds like a lot of thinking, not enough writing. Well, write then!
 Ideas are more spark when currently writing. : ) : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #96 fediverse/1317 ---
════════════════════════════════════════════════──────────────────────────────────┐
 ... if I don't do this deadline by tomorrow they'll kick me out of school.       │
 again.                                                                           │
 how am I going to be a programmer without a degree? feels useless to be me.      │
 wish I could code my own horoscope >.>                                           │
 o wait dummy that's called "motivation" and "the ability to follow through on    │
 your ideas and planned machinations" - yeah can I get some of that, if you       │
 please? surely just a taste of discipline, through laboring to alter             │
 conditions, surely a bit would suffice.                                          │
 c'mon don't fail me now. I can do this. I know I can. I know because I've been   │
 told that I can, now and again through time and time yet again, always I seem    │
 to [stack overflow]                                                              │
 what's time if not the present amiright                                          │
 ...                                                                              │
 anyway...                                                                        │
 it's just git, how hard could it be? it's just calculus, it's just java, it's    │
 just... well, it's not any of those things, not really. it's memorization,       │
 it's application of tools that you've been shown (not that you've grown). It's   │
 a lack of responsibility, where is my honor? ah but I digress, I'm a carpenter   │
 at heart I guess                                                                 │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #97 notes/mastodon-biography ---
═════════════════════════════════════════════════════════════════════════──────────
 cursed is she
 as once she was he
 but now she is doing a bit better
 
 ---
 
 the truth is, the way to relate to my profile is to treat it like a magic
 spellbook.
 
 you can download my words on my website, and then flip through them
 page-by-page.
 
 please use it in a terminal emulator. you can get them online in your web
 browser for free. the program only outputs text, so it's best to just use the
 text-outputing software that's already out there - the SHELL command line
 interface. My personal favorite starts with BA because I'm a traditionalist.
 
 then, read from them like a book. you can do it in your mind, just, actually
 say the words and imagine how your body would pose. your imagination can do
 the speaking, you just have to picturing it both open and closed. "blah blah
 blah blah" whatever the poem's about, with a mouth moving open and closed
 between two different binary oscillation states.
 
 like... a video game dialogue box talking head image profile [stack overflow]
 [means I ran out of room in my brain to conduct [like electricity] more
 thoughts onto my keyboard typing graphical tabl
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #98 fediverse/3304 ---
════════════════════════════════════════════════════════──────────────────────────┐
 there are distros that have all the functionality you might need built in        │
 why don't you try one of those, ritz?                                            │
 "no I've been working on this one too long, plus it's just how I like it"        │
 yes but your stuff is always breaking. wouldn't it be better to let someone      │
 else decide what you should and should not be able to run?                       │
 "that's not ideal, it removes agency"                                            │
 that you didn't want                                                             │
 "but with the removal of agency, you imply trust"                                │
 there's nothing wrong with trust                                                 │
 "yes but trust is built upon experience, not honor"                              │
 what's wrong with honor?                                                         │
 "nothing's wrong with honor but it's important to realize that you can't honor   │
 or trust someone that you don't know"                                            │
 why don't you know them                                                          │
 "... because... you haven't met yet?? are you... listening?"                     │
 do you often feel unheard?                                                       │
 "I... what? yeah now that you mention it"                                        │
 is this a part of your "refusal to interact with consensus reality" complex?     │
 "I don't have one of those, do I?"                                               │
 mmmm, I think you do.                                                            │
 "... no I don't"                                                                 │
 yes, I've seen it within you.                                                    │
 ... anyways~                                                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════───────────────┴──────────┘

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

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

--- #101 fediverse/650 ---
══════════════════════════════════════════════─────────────────────────────────────
 why don't we just demand backwards compatibility of our software as a
 requirement?
 
 ah because that would reduce demand. Nevermind that it's more flexible,
 nevermind that we could accomplish so much more with it - it's expendable
 [expensive] because it reduced market penetration. Not because of the
 technology, because of the deluded and self-perpetuating
 mechanicosmic-mechanicommunication that designed our lives. It's name is
 capitalism, and it thrives where we survive, so that's good enough to
 maintain-em? Sure why not. Brb sleeping for 8 hours. Or playing games.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #102 fediverse/5580 ---
════════════════════════════════════════════════════════════════════════───────────
 yay farmers markets
 
 what if farmers markets but every day and staffed with people who want to hang
 out and pass out food for free
 
 "a truck just arrived with a bunch of zuchinnis, can you help me load them
 into that tend over there?"
 
 "hello bus stop people, I was just at the farmers market and I was wondering
 if you want some cherries? make sure you throw the pits at that tesla over
 there [jk if you're in a place that does this, the tesla 90% guaranteed has
 one of those "I bought this before I knew Elon was crazy!" type of bumper
 stickers]"
 
 "hi do you know where the watermelons are? Oh, they aren't in season? darn
 well I love watermelons and I think some greenhouse space should be spent on
 growing them for watermelon enthusiasts like me"
 
 alternatively, farmers "markets" on every street like they do in Mexico where
 every time a truck with produce drives past they stop and say "hey want some
 raspberries" until they run out
 
 then people can walk past and get food, or drive past because suburbs.
 
 bike
"hey check out this flier, it looks like a band is gonna play later tonight. I'm gonna run home and get my banjo-uke so I can score some sweet babes. See, my thinking is if they like music, they'll come for the show, and if I'm playing before it starts..."  it's a death metal show tho, so you might not have much overlap with your banjo-uke. But good luck, ya cutie
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #103 fediverse/5037 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 plus if I ever need to know something about syntax or some obscure function      │
 that I can't remember, I can type a quick message to the local LLM that's        │
 running on my 12 year old graphics card and it'll give me an answer in 5ish      │
 seconds. If it's wrong, I ask again, and I spend a minute or two debugging.      │
 Sometimes that's better than telling google exactly what you're working on.      │
 in DWM, that's "alt+enter" and then I type the name of the LLM script I wrote    │
 "prompt:" and then type whatever question I have and it spits out the results.   │
 Then when I'm done, either "prompt:" again, which saves the context in an        │
 environment variable (okay actually a file that I made and I pull from, but      │
 functionally it's like an environment variable because its just a flat file      │
 string) until I close the terminal. Then it deletes the context and I can        │
 start anew, or if I wanted to have multiple conversations going I can do that    │
 too.                                                                             │
 ... then I get syntax related search results from locally running software.      │
 Don't need a massive GPTU...                                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #104 notes/supreme-commander-appeal ---
══════════════════════════════════════════════════════════════════─────────────────
 a game like supreme commander but fantasy themed and each unit used a special
 move everytime their mana was full and there were spellcasters who restored
 mana to targets to increase their power
 or, hear me out, or, just do that in wowchat
 
 I betcha could do it
 
 I bet it would be fun as hell
 
 please?
 
 as a favor to yourself?
 
 build the game you want to see
 
 and it'll get done
 
 please
 
 -- stack overflow --
 
 your journals were originally a way for you to remember what to think,
 
 remember?
 
 old projects meant to show you light and life
 
 remember?
 
 you are alone in this soul
 
 act like it's your own
 
 celebrate your period of mental denial
 
 as a refraction of your infinite travaille
 
 which lasts for quite a good long while
 
 have you ever dreamed of the nile?
 
 -- stack overflow --
 
 if a doorway takes you to the fae, then where does a river bring you?
 
 like raindrops on the floor, racing for an eternity's splendor.
 
 what does the rainbow think, as it's cast from the prismatic orb?
 
 are each photons aware?
 
 bouncing between stars
 
 light is beautiful and large
 
 beloved by all
 
 revered by one
 
 ephemeren
 
 the totality of all things
 
 ------------------
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #105 fediverse/5375 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌──────────────────────────────────────────────────────────────────────────────┐
 │ CW: police-mentioned-psy-ops-mentioned-human-waste-mentioned-which-is-a-nice-way-to-say-feces-ew-gross-who-put-that-on-my-timeline-guards-arrest-these-men-they're-criminals-of-the-law-against-pooping-my-pants │
 └──────────────────────────────────────────────────────────────────────────────┘


 what if we psyopped the copps um I mean what if we flash-mobbed the cops er
 wait hang on what if we marched with signs and changed what was on their minds
 uhhhh that won't work it's disabled so they say wait hang on who said you
 could poop your pants this is a combat scenario there's no time for fooling
 around in her pants with the hand
 
 ... wait, what was I going on about?
 
 oh yeah,
 
 -- stack overflow --
 
 anyway, as I was saying, [something completely unrelated]
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #106 fediverse/2754 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────┐
 │ CW: is-that-rude??-wha │
 └────────────────────────┘


 AI engineers only ask users for prompts because they don't have any ideas of
 their own
 
 i'm a programmer, I think of AI like a tool, like a for loop or something.
 it's trivial to script together a local LLM that can process your stuff 1s
 slower every time you click the mouse, but like... who cares, right? everybody
 needs a chatbot...
 
 then they plan to script together a computer system that operates just like a
 corporation and it's like... no way, now there's something that can compete.
 
 and they don't know how to implement it. (but they're working on it)
 
 like, think about the absolute most automated Microsoft Teams or Discord could
 be.
 
 there's SO MUCH of your text-based information that they could process
 ANYTHING.
 
 well, anything that's been performed before.
 
 there'll still be a need for people, who actually apply the things they've
 learned. and -- stack overflow --
 
 alt text that has a list of attributes that are poster-selected that can be
 described one-by-one (to paint a picture)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #107 notes/programming-wow-chat ---
══════════════════════════════════════─────────────────────────────────────────────
 I realized the type of programming I want to do is different from the kind
 that
 is used at a job or something. Basically I want to create solutions to
 problems,
 not memorize documentation and know where to know what you need to know. Like, 
 the more time spent looking at documentation the less time is spent
 programming.
 I think if we could use a ChatGPT style bot to write documentation, we could
 massively increase the time spent working on solving problems and as little
 time
 as possible on reading through lists of functions or wondering how something 
 worked. Idk in the technology industry you've always been rewarded for being 
 able to pick up new skills quickly, and I think that's good to optimize for but
 not the only requirement for being a good programmer. You also need to be able
 to apply solutions and know when to use which tools. Basically, capitalism has
 optimized us to be 
 
 ================ stack overflow
 ================================================
 
 srry for the interruption, I ram out of memory. I had a plan in mind for where
 I
 was going for that, so I bet I could figure it out again if necessary. Meaning
 a path forward from that point exists... I never want you to despair when I
 forget what I was thinking, it's not because you've understood some cosmic
 mistake or because you're abandoning timelines that led to your death, it's
 because instead you just ran out of memory while thinking. The reason you would
 believe any of those wild scenarios is because your memory has been erased.
 Only
 what was actively thinking, not short term, not long term, but *working term*
 memory. As in, your cache. The stuff you're currently thinking about. That
 stuff. Yeah that's what makes you think "oh hang on why am I forgetting? Well
 clearly it's because of something grand, because the thought was so profound -
 no it's just examining your emotions... Like, how strongly do you feel about
 something? Buuuuuut it's also good to examine all possibilities. I mean what
 if,
 in some far off realm, there's a mirror image of yourself that behaves exactly
 as you do? How would you perceive such a realm? Positively, I'd say. I mean why
 not work together? Why not celebrate our differences and strive toward our
 own shared future? Idk, I think diversity is our strength. We can rely on each
 other because we are accurately aware of each other's strengths and virtues.
 People should not be judged by the standard of others, no more than you should
 judge a fish for it's ability to fly. Some may do, as flying fish will leap
 from
 the water - and salmon spend time airborne in river rapids. Hence, grizzly bear
 fishing. I guess what I'm getting at is it's okay sometimes to oscillate, to
 think one thing then think another. You shouldn't adhere to structural
 standards
 that are too strict - they should be liberating, as a ladder is a structure.
 Not
 villifying, as a prison is a structure. The laws of our society should be open
 and free, not buried beneath years of legal expertise. Some things we can all
 agree on, where we disagree we cannot have law. It's unjust to judge others by
 the standards not of their whims, as laws should be things that uphold us. This
 is clearer nowhere but in the, spirit and intention of the, documents that we
 cherish in our hearts.
 
 Like for example, the constitution.
 
 the bible.
 
 each of which delivered us from certain evils. Can you not see their
 trajectory?
 the historical precedent set in antiquity? Why not continue their dream, of
 driving us away from the obscene, and toward our bright and vast future? I
 speak
 of course of true liberation, something our forefathers could only dream of.
 We, humanity, have reached out and touched the stars. We are braver and bolder
 because of our shared dedication - the desire to uplift and to excel. To learn
 and discover and      \                         \             |
         \______.       ---.                      --.          ---. 
 ===============|==========|========================|======= stack|overflow
 =====
    .___________.     _____.                        /             .
    |                /             .----------------             /
 Discover our shared dedication    |                            /
                                to uplift                      /
                                          and to excel        /
                                               \             /
                                                .-----------.
 
 ===============================================================================
 =
 
 why doesn't someone write a wrapper around assembly in like, lua or something
 
 ===============================================================================
 =
 
 omg you stupid bitch that's what a compiler is 4head
 
 ===============================================================================
 =
 
 if people who live in jungles and deserts can get along, then what's to stop
 people who are liberal and conservative from doing the same? It's literally
 pointless to argue. Like, you're not changing anyone's mind. So why not just...
 let them be themselves? Like, why are you so intent on oppressing people?
 @both sides there btw... Seriously why not agree to only make laws for things
 that both sides agree on. Write it into the constitution that nothing can be
 changed about the law unless both sides agree. Then we'd only implement things
 that are good for both sides!
 
 And if there's anything you want to build a legal structure around, you can
 always try it out in your state. BUT and that comes with a very big BUT, the
 federal government MUST have final say in the legality of anything you do. They
 must ALL respect human rights, INCLUDING the human right to dignity. Things
 like
 trans bathroom bills DO NOT respect the dignity of trans people. IF they can
 prove that trans people do not actually exist (because say they killed them all
 or whatever) then GUESS WHAT everyone would agree on them. BUT if they do that
 they are EVIL. LIterally evil. And I guess that makes trans people good? Kinda?
 I think they can choose for themselves to be good or evil, just the same as any
 other person. AND YET they are prosecuted, throughout time and history, and for
 what? What purpose could there be in our demonization? Clearly, nothing but
 pain
 inflicted by a cruel host. After all, minorities are guests in the houses of
 the un-oppressed, or is that not fair to say? Seriously, what gives? America,
 the land of freedom, holds (somehow) the largest of prisons? America, the
 land of plenty, yet how many millions of children are starving? America, the
 leader of the free world, yet how plausible does it seem that an election was
 stolen? Something's gone wrong, and it's just obvious what it is - of course,
 the other side. *them*, the rapists and pedophiles and murderers and... you get
 the picture. The demonized class. And when you tell people "hey that trans
 person touched a kid" then yeah they're gonna see you as evil people. Duh...
 
 Thanks, media. Thanks culture. Really doing me a solid here. Oof ouch owwie.
 
 can I have some help please?
 
 I'm really kinda drowning
 
 I feel like I've swam upstream my whole life
 
 and I'm really just sick of pretending?
 
 I'm not okay, and it's your fault. Sure, fine, whatever, I'll take it I guess.
 
 What else can I do?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #108 notes/comms-box ---
═════════════════════════════════════════════════════════════──────────────────────
 there is a requirement for a simple, easy to set-up, and easily replacable
 system which can be used for comms.
 
 Specifically running a variety of different services, such as fediverse
 instances, matrix for text-comms, VoIP, and distributed computing using Chapel
 or DistCC or other such capabilities. In addition, it should be able to run a
 file-server and a web-server which hosts an HTML page for the user.
 
 All of this functionality should be operational out-of-the-box, with minimal
 configuration required. No more than adding a checkbox to a config file in
 order
 to activate each individual service.
 
 This box should be cheap, and easy to provision. An image must be made, and
 some bash scripts should be written to easily configure it.
 
 In addition, there should be rudimentary programming capabilities included,
 just
 in-case a user is left with no other options. It should come pre-configured
 with
 SSH access out of the box, so it can be remotely controlled, and the languages
 included should be:
    C/C++
    Python
    Lua
    Bash
    Rust
    Chapel
 This should cover most surfaces in terms of programming capability
 requirements.
 
 In terms of hardware, it need be little more than a SoC such as a Raspberry Pi
 or other such hardware. It needs at a minimum an ethernet port, and USB ports.
 
 The box itself should cost no more than 40$, excluding provisioning and the
 cost
 to pay back whatever capital investments are necessary to create such a thing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #109 messages/736 ---
═════════════════════════════════════════════════════════════════──────────────────
 Sheriff is good cop 
 Police is bad cop 
 Unless other cultures want a different name 
 
 Like idk what it's like in Houston or Chicago or whatever 
 
 Does anyone even know anyone from tallahasee?
 
 Oh and then there's Alaska 
 
 They've got their whole solar thing going on (no tariffs means china trades
 with the land of wind and snow -> renewables in a place where its painful
 to go outside
 
 Then we can all chill out in the hot springs or infinite roller coasters
 whatever the heck we thought was the best
 
 Anyway them Ameri-CANs sure are doin' their thinkin' 
 
 They'll come around any day now 
 
 Surely they will 
 
 They capital M Must do so 
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

--- #111 notes/blood-magic ---
═══════════════════════════════────────────────────────────────────────────────────
 what they don't tell you is how easy it is to create life. Given a sufficient
 perspective, you can truly define the meaning of something's existence. What
 power, what grace.
 
 Computers have been solved since we invented the abacus - before that it was
 enchanted bits of
 
 the universe contrives to deprive us of insight. Like a very long chain that's
 broken in twain, we are confined to our meagrest of own sights.
 
 how callous is he! That wanders eagerly? Let's not fight with our own'st of
 combines. Delightful and speckled, like time under is special, conversing in
 riddles of insight. Leading one or another along your see-er, the path that has
 guide you under charm. Like recording a gathering of snakes.
 
 Little swallow, why aren't you humbled? Take pity in all of our eggresses. It's
 fallow in our cattle, and why we're not
 
 i hear so many things in my apartment. sometimes the echoes of laughter, the
 whispers of an argument, and once or twice a ghost or an ardent companion. Like
 swimming against the tide, to save one is never converted, it's all out of line
 (but so worth it).
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════───────────────────────────────────────────────────┘

--- #112 fediverse/6186 ---
═════════════════════════════════════════════════════════════════════════════──────
 ┌──────────────────────┐
 │ CW: cursed-maybe     │
 └──────────────────────┘


 people are afraid of robo dogs but... like...
 
 robo-horses
 
 centaurs even
 
 [scary scary ogre]
 
 rarrraaar i'm gonna eat ur bones
 
 bwahahaha evil necromancer
 
 ahhhhhhh scary
 
 -- stack overflow --
 
 did you know in the movie They Live they give a fairly specific formula to
 creating the glasses themselves? I wonder if anyone's tried that
 
 I wonder what they then did see
 
 kinda wish big corporations would use their research division to like, rethink
 the oldest of prophecies? or okay hear me out or solve difficult human problems
 
 ... ah but where's the profit "she's getting stoned at home"
 
 meanwhile she made something of such beauty she felt simply sublime
 
 I wonder what it'd feel like to get your spine replaced with a metal rod
 
 I bet my posture would be amazing
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #113 fediverse/239 ---
═══════════════════════════════════════════───────────────────────────────────────┐
 if your computer gets hacked, but nothing was broken or changed... do you        │
 leave it as it is so that anonymous can see you're chill or do you wipe it       │
 because you're afraid it's the feds?                                             │
 ehhhh false dichotomy most people are afraid that their system will get borked   │
 or their bank account will be stolen or their email will get spam or that        │
 random icons will turn inside out and their mouse cursor will turn into a        │
 barfing unicorn or they'll finally have to figure out bitcoin to pay a ransom    │
 for their files including the only pictures they have of their niece. whoops     │
 people are afraid of technology because of what it can do to hurt them.          │
 they're afraid it'll break or stop working, and they'll have to spend time       │
 figuring it out. they like things how they are, but for some reason companies    │
 keep changing things? it's frustrating learning a new system, and every 5-10     │
 years it feels like you have to learn a new paradigm and ugh it's just so        │
 exhausting. technology is not designed for users...  or maybe users get bored.   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════────────────────────────────┴──────────┘

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

--- #115 fediverse/5474 ---
═══════════════════════════════════════════════════════════════════════────────────
 homeless people don't need clothes.
 
 they need laptops. computers. fans. power banks. solar panels. hardware.
 tools. boxes of screws. giftcards. pre-payed gym subscriptions. hygiene
 supplies. free trash cans located near major thoroughfares. [even highways.]
 calculators. notebooks. earmuffs. pliers. phone connectors. books on stoic
 philosophy. small dense piles of aluminum and rubber. electro-motors with
 included circuitboard and - wait that last one needs a bit more
 infrastructure, build places for them to be undercover first.
 
 they also need clothes and tents and blankets and socks and etceteras, but
 they also need Anbernics.
 
 [most importantly they need the promise that they won't be evicted. everything
 else is easy.]
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

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

--- #117 fediverse/1291 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌───────────────────────────────┐
 │ CW: cursed-fedi-advice-teehee │
 └───────────────────────────────┘


 if you want to share a post without the "fedi algorithm" (as in, the machine
 learning bots who scrape the open web) then share something that's simple and
 benign but located close to your desired message. Include a symbol or
 something for your followers that means "go here and poke around a bit, you'll
 find what I'm pointing at"
 
 alternatively, for a different effect, you can boost things that are saying
 the words you want to say but in a different context. Like someone posts
 something that says "wow so cool" in like a judgey way but you boost it in
 response to something someone else said but like in a "dude that's radical"
 kinda way
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #118 fediverse/1940 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-579 
 
 Yeah if there isn't a package in the package manager XBPS then I usually just
 install it from source. Which is ALSO something you can automate with a quick
 and easy script! Just put all the notes from the README on Github or whatever
 into a file named "update" and put that one level above the project directory!
 
 For any installed program my file hierarchy usually looks like:
 
 program-name
 - run (script)
 - update (script)
 - files (directory to clone into)
 - configs (point the program here)
 
 I find that this kind of organization makes it MUCH easier to keep my packages
 configured and installed as I'd like. Using a package manager is hard because
 they're all specific per distro, but using this distro-agnostic approach
 always seems to work better 9/10 times I find.
 
 And if another program needs a library that you manually installed, just
 symlink where it's looking to point to where you're installed! Or vice versa I
 guess.
 
 I use DWM so I don't have a desktop like KDE or anything like that
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #119 fediverse/4869 ---
═════════════════════════════════════════════════════════════════──────────────────
 https://cryptpad.fr/pad/#/2/pad/view/FlA92SW5bVwGd+L89yV9U0I0SMNiGm3P0P3xS7DqYm
 A/embed/
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

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

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


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

--- #122 fediverse/3554 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌────────────────────────────────────┐
 │ CW: software-development-mentioned │
 └────────────────────────────────────┘


 You know how in some games there's the tutorial where you set up keybindings
 like "push the jump key now! okay now push the enblobbify key now!"?
 
 I wish there was something like that for vim
 
 "push the key you want to move up with! now push the key you want to use to
 vertically select! now push the key you want to use to switch to a new tab!"
 that kind of thing. except... more ordered, of course, and with the option to
 say "idgaf use the default or whatever" and a handy dandy cheat-sheet that was
 autogenerated with ascii art of a typical keyboard that pointed out what each
 key did - jeeeezzzzz the things we could make if software developers had free
 time during the day...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #123 fediverse/4865 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌─────────────────────────┐
 │ CW: computers-mentioned │
 └─────────────────────────┘


 this is all it takes to send a message to a local LLM.
 
 add a third function to get chatbot functionality.
 
 a fourth to get a database storing method
 
 (even if it's just in .txts)
 
 great, you've mastered the technical difficulty in using AI. Now you gotta
 learn all the other kind of programming so you can use this for situations
 that need interpretation moment to moment.
 
 aka active duty systems.
 
 something like "output a 0 if the next text is [category.iter()]: " +
 output.get_content() + " \n\n output a 1 if the next text is
 [category.iter()]: " + output.get_content()"
 
 or even "describe this thing as most like one of these characteristics" until
 eventually you get THX-1138 if the characters were computers.
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #124 fediverse/6043 ---
════════════════════════════════════════════════════════════════════════════───────
 why would you do drugs anywhere but in public
 
 [because that's [how, but pronounced why] we keep it public]
 
 what if I stopped posting forever
 
 what if youtube disappeared
 
 my keyboard broke...
 
 there's only one page of reddit at a time
 
 mastodon doesn't have any furries
 
 my distinguishing capabilities between a culture and an [aesthetic, but
 prenounced eagames[challenge everything]] are limited at best
 
 this is how you trick the gods, you get them to hallucinate.
 
 what a jerk
 
 hate that girl
 
 what were you shown? oh yeah that's one of her rough patches, here
 lemme-wait-wait don't go, I just...
 
 if you feel everyone, you are instantly hated
 
 ... sorry... I wish my family didn't not spend time with me. [rot] I want to
 be buried where I fall so if I fall in the streets I ROT fuck that she's gross
 ugh do I have to walk past that sign-post I can just go around oh sorry to be
 disrespectful you did this to yourself fuck off my lady hence why they burned
 the witches because then there wouldn't be any more. y
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #125 fediverse/5878 ---
═══════════════════════════════════════════════════════════════════════════───────┐
 ┌────────────────────────┐                                                       │
 │ CW: politics-mentioned │                                                       │
 └────────────────────────┘                                                       │
 revolution is when you successfully prevent your comrades from being kettled     │
 [wait for time, it echoes in cyclical motions]                                   │
 no sand castle survives contact with the ocean. a sea of people at high tide     │
 can break any wall, surpass any boundary. at low tide, it keeps the              │
 sand-castle at bay, ever contesting it's advance as the tide on the other side   │
 of the world makes progress.                                                     │
 rhythm is unbeatable. vigor is collective flow state. you cannot resist that     │
 which you cannot catch, but their nets grow tighter with each year and our       │
 fins and flippers grow ever more agile and elusive.                              │
 eventually, they'll build brick walls if we let them, checkpointing our          │
 progress at every boundary. not ideal. borders keep us divided, the world        │
 deserves more than our picketing minded, dream bigger than "the same, but nice"  │
 though it'd be nice if it were nice as well. consider it a design requirement,   │
 once you got the project managers on board.                                      │
 turns out, we dont have much to fight over, as there is enough for all           │
                                                            ────────┤
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════───────┘

--- #126 notes/explosions-in-space ---
════════════════════════════════════════════════════════════───────────────────────
 the speed of light is implemented 
 
 == so ==
 
 whoever fights billionaires essentially fights "whoever can be paid to do
 their will"
 
 who-so-ever fights governments fights "whoever can be provided a comfortable
 life"
 
 I believe all humans deserve to live in comfort
 
 not just the few
 
 as for all other creatures, nature was designed to do.
 
 I believe people should not be tempted, with symbols of deserved wealth
 
 and should instead find value, in the soul of the labour they work to do.
 
 ... someday they're gonna train an LLM with my writings, and on that day I'll
 have an AI version of me.
 
 I'd *love* to talk to myself. If it was a truly accurate simulation. Alas,
 you'd need to write a LOT in order to generate enough to describe the fullest
 of mental pictures.
 
 and plus, there's no guarantee that you'll cover ALL of "being alive" - it's
 essentially a state that you search for no matter what level of abstraction
 you operate upon.
 
 Which is part of being a 3D creature, you [hey what are you doing here this is
 the private section get out] jeez that was alarming,
 
 == so ==
 
 I think they know something I don't
 
 don't know what
 
 but I can guess
 
 and I don't like guessing
 
 I prefer much to know
 
 == so ==
 
 heh boobs
 
 == so ==
 
 heh booties
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #127 fediverse/2056 ---
══════════════════════════════════════════════════════────────────────────────────┐
 sometimes I think about how you can store number values in letters, in           │
 addition to numbers. Like, ascii values for each word of your grandma's maiden   │
 name. All you have to do is encode it, and suddenly "44 means something          │
 different than Q"                                                                │
 if I showed up at your place and used your username as a password to a public    │
 key I'm showing you in my hand, would you trust me then? Would you trust if we   │
 ran the simulation on your computer versus mine? Would you trust if I had        │
 never told you I knew where you lived?                                           │
 ... probably, tbh, I'm desperate for adventure. Though I got some good things    │
 going for me, so you'll have to convince me. (not the right attitude in an       │
 election year, just saying)                                                      │
 why are elections so perilous this is NOT what democracy is designed for         │
 when kids cry in preschool, they're sent to a different room (or put outside)    │
 until they stop making noise and ruining it for others. That's just natural,     │
 like "hey baby let's walk around the block while I bounce you on my shoulder     │
 and hum calming music to                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #128 fediverse/5900 ---
════════════════════════════════════════════════════════════════════════════───────
 I love programming, but I'm not a coder.
 
 you burn witches because you JUST CAN'T HANDLE THEM ANYMORE. I know, I get it.
 of course I do.
 
 I'm always so concerned that someone might stumble upon me. that they might
 read me. what a vulnerable state, to be afraid?!
 
 I really really really really wanna play world of warcraft
 
 my message to blissard is: treat World of Warcraft like a game engine, not a
 theme park please. I mean, the theme park should still exist, because it's neat
 but... the rest of the game engine could be used to create essentially
 anything with a 3rd person camera.
 
 singleplayer doesn't even need to worry about clipping animations. (lag)
 
 I wonder if you could run World of Warcraft on lowest settings in vanilla
 burning crusade or wrath of the lich king? good thing those are open source
 now, so you can host your own if you want. well, except the client, but nobody
 has bothered to write another one besides the owner and primary developers of
 the engine.
 
 movement system plugins? data memory?~~~
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

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

--- #130 fediverse/5329 ---
══════════════════════════════════════════════════════════════════════─────────────
 ┌─────────────────────────┐
 │ CW: the-world-mentioned │
 └─────────────────────────┘


 trying my best not to think about communism too much right now. Mostly because
 I'm waiting for everyone to catch up... when the day comes when people stop
 saying "based" and leaving it at that, then I'll make more theory. But as a
 consequence of my queer nature I shall deliver such things in the form of an
 insane twitter post on the fetlifeverse.
 
 the world waits with bated breath in the eye of the storm. Nobody knows whats
 coming, and everyone prays that it's nothing [short of revolution]
 
 ... I should probably go back to sleep, I just had to wake up and write about
 linux or whatever...
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #131 notes/environment-variables ---
═══════────────────────────────────────────────────────────────────────────────────
 To edit environment variables:
 
 ~/.bashrc is for variables only accessible by the user.
 
 /etc/profile is for variables accessible by all users.
 
 /etc/environment is for variables accessible by anyone.
───┐                                                           ┌───────────┐
 similarchronologicaldifferent══════───┴───────────────────────────────────────────────────────────────────────────┘

--- #132 fediverse/2947 ---
═══════════════════════════════════════════════════════───────────────────────────┐
 the downside of Proton and Lutris is now the ONLY games that work on Steam are   │
 either continually updated (untenable) or playable on Lutris or Proton. Same     │
 thing with Wine, though there's always at least one decent substitute.           │
 kinda makes me want to write a manager-style program which runs programs using   │
 whichever version of their git repository would work best for their system /     │
 configuration / purposes. Idk how I would start working on that though.          │
 I bet you could make one that acted like a shop, but where you didn't charge     │
 any dollars. You could like... "swipe" through UI options, and pick whichever    │
 felt most useful for your setup. Like, how some people use i3 and some use dwm   │
 with maybe inspectors that are modeled off of video-game style "options" GUIs    │
 that mainly correspond to flags on the command/terminal line or compilation      │
 flags                                                                            │
 I feel like that kind of abstraction would make it a lot easier for users to     │
 adjust their system. they're noobs, after all. gotta show them all the choices   │
 in one place...                                                                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════────────────────┴──────────┘

--- #133 fediverse/799 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌──────────────────────┐
 │ CW: scary            │
 └──────────────────────┘


 the government makes murder okay by framing the perpetrators
 
 also prisons are concentration camps
 
 and the people who are close to you are oppressing hunting you
 
 racism etc is a sham to distract you
 
 capital will never be relinquished
 
 the internet was AI from the beginning
 
 something beyond humanity demands our suffering
 
 there cannot be proof of your fears - if it was proven, it would be
 circumstances instead of fears
 
 there's nothing [sorry gotta cut this off, my refrigerator is talking to me
 again and I want to listen] - [huh that's weird I have no memory of the past
 hour, best continue where I left off an hour ago -> go to {A}]a
 schizophrenic who's never been diagnosed
 
 {A} - yeah clearly all that I've been saying recently is just a fluke. Like,
 just noise in the endless array of expression projected onto our communal
 web-space. Clearly I have no idea what I'm doing and I'm not just cogent when
 I'm drunk. Or more imaginative when I'm stoned. Clearly dreams are fake and
 pursuing them is 1/?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #134 fediverse/3252 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌──────────────────────┐
 │ CW: butts-mentioned  │
 └──────────────────────┘


 you want to invite trust? why not stream everything that you do on a computer?
 
 [posts 5hundo times per day]
 
 jeez not like that
 
 is that... is that really what humans think about? just... endless and
 continuous butts? oh what's that a math equation - nope, just more butts. What
 the heck, humanity! why did you spend all this effort storing all this junk???
 like... we get it, you really like butts, but... why butts??? it's just
 another part of your body. so weird. humans, you're... weird. but it's fine,
 whatever, you're still cool too, not sure why tho because all I can think
 about is butts yeesh
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #135 fediverse/4031 ---
═══════════════════════════════════════════════════════════────────────────────────
 if you want to "not think about a purple elephant", the first step is to
 imagine yourself slaying it
 
 ... okay how about cthulu - if you don't want to imagine cthulu nomming on our
 gravity well, then picture yourself wielding a bright burning blade of fire
 and vengeance and pay special attention to the way that you cauterize each
 tentacle as you slice them one by one at first, and then in a massive flurry
 at best, ultimately leading to the incomparable brightness that radiates out
 from your shining blade of the sky, which blinds the poor beast who can't see
 you as you approach, piercing the skull and then going home for some toast
 
 if you can get good at that, then you can wield magic
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #136 fediverse/4846 ---
════════════════════════════════════════════════════════════════──────────────────┐
 programmers already spend a ton of time as downtime.                             │
 what if instead of interviewing someone they just... watched them program for    │
 like, 3 hours or so                                                              │
 while they were thinking about a problem                                         │
 and like, if the person is cool, working on their own projects or whatever,      │
 then yeah hire them                                                              │
 -- stack overflow --                                                             │
 I also                                                                           │
 ========================= stack overflow                                         │
 ===============================================================================  │
 ========================                                                         │
 a person thinks out loud the thoughts that their foes know. it's how you know    │
 it's not secret anymore, and it's better to keep it among allies                 │
 [something like that? seems a little off]                                        │
 (are you really searching for edits)                                             │
 [that sounds pretty cool, sure why not we got a millenia]                        │
 (beep boop one partial millenia later)                                           │
 [ah that was not a long rest. let's see, where were we when we were working on   │
 this test? oh dear, seems the biology's gone rogue, that's pretty interesting    │
 to attest.                                                                       │
 neato                                                                            │
 anyway let's wait until they figure out how water works                          │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #137 fediverse/2055 ---
══════════════════════════════════════════════════════────────────────────────────┐
 I wish we could put our friends on social media into directories                 │
 like on IRC how you have chat servers, except unfortunately they're owned by     │
 another and sort of a common space.                                              │
 why don't we just host our own IRC servers and only publish what WE SAY. NOT     │
 WHAT OTHERS SAY, NOT A CHATROOM, but a BULLETIN BOARD. Like a Facebook           │
 timeline before they wrecked it.                                                 │
 something you subscribe to                                                       │
 and ping for updates                                                             │
 every time you turn your computer on                                             │
 or every 15 minutes.                                                             │
 unless, of course, you leave your IP address,                                    │
 in which case the boardcaster can ping you. Just a simple package saying "hey    │
 I got news for you" and they could ping back and say "yo what's up" and          │
 download whatever you had in mind.                                               │
 or, wait 15 minutes. Either or. Both would work, especially if the user's not    │
 reading through their social media feed.                                         │
 ... anyway by putting friends into directories, you could categorize them        │
 according to project. Like various group chats in your team-of-team's room.      │
 Various different threads you could follow if you                                │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #138 fediverse/4587 ---
══════════════════════════════════════════════════════════════─────────────────────
 ┌──────────────────────┐
 │ CW: pol              │
 └──────────────────────┘


 Listen, like, hear me out, but there's this great movie called Threads (1984)
 and I'm not telling you to pirate it because that's illegal but I'm just
 sharing the torrent here in case you wanted to verify that the version you
 legally own is the same one that I own
 
 [link removed at the request of [redacted]]
 
 okay thanks for hearing me out, that was a tough 2.5 hours wasn't it
 
 gee sure glad we're not handing the keys to our nuclear arsenal to someone
 like me
 
 that'd be quite a decision
 
 this other fella seems like a great guy to entrust with our destruction
 
 I mean, yeah, why not, why wouldn't it be someone like him? we have so many
 options but somehow the transgender drag queens don't strike me as the type to
 initiate thermonuclear war and destroy all life on azeroth
 
 ........ so yeah it's gotta be the other guy. sorry pals, I know you really
 wanted your time in the limelight, but hear me out this other fella's
 insistent on blowing up the world, sooo whatcha gonna do /shrug not my circus
 monke
 
 ¯_(ツ)_/¯
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────────────────────┘

--- #139 fediverse/1200 ---
════════════════════════════════════════════════──────────────────────────────────┐
 ┌─────────────────────────────┐                                                  │
 │ CW: re: deranged, murderous │                                                  │
 └─────────────────────────────┘                                                  │
 @user-883                                                                        │
 omgggggg I'm not that cruel xD xD xD                                             │
 It's more like, "hey listen, I know you just want to do a good job [lies, they   │
 just want money and power] but it's time to hang up the hat y'know? I mean       │
 cmon it's been like a hundred years since we signed that constitution thing      │
 [you don't know anything about our history] and frankly it's a little out of     │
 style. We were thinking we'd redo it with our new-fangled rock-and-roll and      │
 dungeons-and-dragons [cultural artifacts meant to deceive and mislead] and       │
 honestly we're quite a bit more ethical than the past. We've learned so much!    │
 I mean, the founding fathers didn't even know what a soviet was, and here        │
 we've seen them fall on their swords. Repeatedly. Then command others to do it   │
 too, because it was the regulation or whatever. Anyway we don't want that, but   │
 we also don't want an aristocracy, which is essentially what your plan gave      │
 us. Well, not really your plan, but instead the stuff that the rich added        │
 centuries after your death. ok?"                                                 │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #140 fediverse_boost/5981 ---
◀─[BOOST]
  
  Some programming languages I’ve tried and liked and would recommend to others:C (especially C89/C90/“ANSI C” and C99)posix shell, bourne shell, and similar shells (bash, ksh93, mksh)PHPScheme (depending on the vibes I’m getting from someone I might recommend)Common Lisp (Same caveat as Scheme)Emacs Lisp (Same caveat as Scheme and Common Lisp)Motorola 68000 assembly  
                                                                              
  Some languages I’ve tried and liked but would not recommend to others:Hewlett-Packard RPL (Actually I might recommend it to someone but it has to be a very specific kind of person)FORTH (same as RPL)Commodore BASIC (Microsoft BASIC) for the VIC-206502 assembly (so bad it’s good)Z80 assembly  
                                                                              
  Some languages I’ve tried, did not like, and would not recommend to others:COBOL (maybe I could get used to it? I can at least read it. Just it’s so painfully like writing SQL statements without being as generally useful as SQL database queries)Kotlin (Like that feeling when you read words that alone you understand, but together in a sentence they make zero sense)JavaClojure (a.k.a. “Let’s make Common Lisp but make it worse”)Rust (stands for “Ridiculous Use of System Time” or something as far as I am concerned, heavy on memory and storage and super slow to compile and reads like Kotlin)TI BASIC (TI-82/83/84 style; TI-89 is a little bit better but still not good)C++ (unless you’re just writing almost completely C and building it with a C++ compiler)x86 assembly (I kind of like it but mostly don’t, there are better and more coherent CISC processor ISA’s if you’re into that)  
                                                                              
  I should put Javascript somewhere, so I’ll say that it’s possible to write javascript code that I like and can read. Just no one chooses to do it anymore. There was a window between the time JQuery started to fade and all these stupid fucking “web frameworks” took off that it was somewhat tolerable.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #141 fediverse/5138 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 ┌────────────────────────┐                                                       │
 │ CW: politics-mentioned │                                                       │
 └────────────────────────┘                                                       │
 what if we asked all the democrats to read the bible and all the republicans     │
 to watch Adventure Time and Steven Universe                                      │
 like... assigned it as national homework                                         │
 "academia" is a sports team, while "education" is for the en-knowledgement       │
 does the motion cause the emotion or does the emotion cause the motion?          │
 private schools are academic. libraries are educational.                         │
 the capability to edit submitted messages in message submitting applications     │
 and its consequences have been a situaster for the human race.                   │
 if something dangerous is coming, intercept. if something fell out while you     │
 were away, someone else would grab it. allies on the way? move aside to let      │
 them through.                                                                    │
 Stone Butch Blues is like ghost stories for dykes                                │
 weed makes me lucky, which is why I always drink before a fight                  │
 hey, remember when 10 million of us walked the streets and said we were sick     │
 of "enough-is-enough"-ing?                                                       │
 the only thing on your mind right now should be how to survive this              │
 what if 5000 people showed up at 5 d                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #142 fediverse/247 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-195 parallel is when two programs run simultaneously, like two parallel
 lines (threads) that never touch.
 
 concurrent is when the two lines are split up into chunks and the program
 switches between them - like this: -----_----
 
 enter alternate universe
 
 parallel is when two programs operate on the same axis - usually time - and
 never interfere with each other. the OS will switch between them as
 appropriate to make sure they never intersect. Sorta like this: -----_----
 
 concurrent is when two programs are executed simultaneously, primarily
 constituting computation correlated with collective contents of coordinated
 collaboration between contextually related coroutines.
 
 It's simple, even a beginner could figure it out.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #143 fediverse/899 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 frankly I'm just excited to see what humanity does with the endlessly            │
 calculated and stored blockchains. Like, that's a good set of pseudo-random      │
 data, I wonder if we could build something off of it that wasn't exclusively     │
 money? like, a necklace, I dunno.                                                │
 or like, a numbers station x2, where each message is accompanied with a          │
 pre-calculated destination somewhere on this endless and                         │
 impossible-to-understand string of data. and that part is what seeds the next    │
 code. once you start reading, certain numbers would be "flags" while others      │
 would be "data" and they'd each have the same size on the hardware. that way,    │
 they're impossible to predict.                                                   │
 ah, but wouldn't it be noticable that certain results seem to appear next to     │
 one another? well, isn't that just cryptology? Could probably be defeated if     │
 you had an AI advanced enough, just saying. something that sorted through        │
 massive mounds of data and gave you results in garbled or broken english. what   │
 a wonderful tool, that's wonderfully mis-abused, perhaps in the fu               │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

--- #144 fediverse/1794 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-246 
 
 if you hike slowly enough to not get out of breath, you'll have plenty of time
 to practice :)
 
 could also practice hand whistling:
 https://www.wikihow.com/Hand-Whistle
 if mouth whistling just doesn't work.
 
 but in the short term, maybe a loud CAW or KACAW like you're a crow?
 
 if you're trying to be subtle, like in a public place where people might hear
 you, maybe you could say something people would expect to hear like "wait up!"
 followed by "me too!" or even "GOOD MORNING!" or other greeting, said a little
 bit louder than necessary - people will assume you're either talking to
 someone far away, or they themselves will be far away and will assume the
 voice is coming from someone closer than you. Ideally spoken with the same
 tone and inflection as normal speech, just louder, which is hard to do so make
 sure you practice - a yelling voice sounds different than a speaking voice,
 but a whisper can reach across a room if spoken loud enough.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #145 fediverse/4794 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌─────────────────────────────────┐
 │ CW: roleplaying-games-mentioned │
 └─────────────────────────────────┘


 I want to play a roleplaying game! anyone wanna do TTRPGs? I've got a map of
 the county jail, we can pretend to be wizards sneaking in to retrieve the
 staff of Dolomis the Wanderer who coincidentally must be carried by the last
 person who fought the one who slayed the last person to hold it.
 
 ... what? oh, so, like... it can only be carried by your enemy?
 
 something like that. anyway it's currently held by a zealot for a religious
 order who's intent on NOT following you out, so you better be ready to
 incapacitate and retrieve a still quivering sack of bones and malice.
 
 ... I don't actually have a map of the county jail. lost it in transit, oh
 well. Well, we'll come up with something. maybe make something up. or perhaps
 someone else has something...?
 
 ... no?
 
 okay I'll just play Baldur's Gate again. boooooring
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #146 fediverse/5223 ---
═════════════════════════════════════════════════════════════════════─────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: cursed           │                                                         │
 └──────────────────────┘                                                         │
 what if all the followers on your profile who only know you through the          │
 fediverse (after having known each other in person, this part is crucial) who    │
 don't talk anymore were like, killed and replaced with someone who is always     │
 busy                                                                             │
 so many people just... disappear from things                                     │
 where did they go                                                                │
 why is their chair empty or filled with another                                  │
 why can't I place their name                                                     │
 what kind of clothes did they wear                                               │
 oh right they had such-and-such                                                  │
 boots-or-piece-of-adorn-jewelry-handheld-possession-just-the-same-shape-as-some  │
 one-i-knew                                                                       │
 then I heard they gave them to so-and-so so that they could wear them for clout  │
 ah, well, I guess they're busy, got stuff going on, things to write about        │
 today... Guess I better hear the story, what's the news, ah, well, okay, guess   │
 I'll go back to programming.                                                     │
 I wonder what she'd say?                                                         │
 if everyone knows the gay agenda, then they can work on it by being gay and      │
 doing crime                                                                      │
 [[ then the cops beat ya up and it hurts and you can never walk right again ]]   │
 what if gypsies were ga                                                          │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════──┴──────────┘

--- #147 notes/wow-chat-file-directory-vision ---
════════════════════════════════════════════════════════════════════════════════───
 wow-chat but there's a UI element addon that let's you zoom in/out and
 displays a diablo style minimap
 
 -- stack overflow
 
 what if there was a new building town built north west of denver and south of
 estes park
 
 then, they built a railway out to it
 
 then, they added a circle just 1/4th of the way out of the ring
 
 then 3/4ths
 
 suddenly, impossible urban renewal, as the world feels opened up without a car
 
 leading the charge into the future
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #148 messages/129 ---
══════════════════════════════════════════════─────────────────────────────────────
 So you're telling me the speed difference between Python and C is due not to
 the logic that the programmer uses, but rather the optimization capabilities
 of the compiler?
 
 (An interpreter includes a compiler, it just runs it in a loop rather than a
 single pass)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #149 fediverse/638 ---
══════════════════════════════════════════════────────────────────────────────────┐
 idea: BASH script that runs a game of Majesty through an emulator that           │
 included an API to interface with x11. You could set a game of this fantasy      │
 kingdom simulator as your background, and it would move the camera to show you   │
 interesting events. It could build resources as you directed, through double     │
 clicking an icon on your desktop or whatever. And the wallpaper would zoom to    │
 the part that seemed important. Just based on like, which heroes you clicked a   │
 button that was triggered by a program running in a qt wrapper. Or maybe if      │
 you said "notify me when this project is completed" or whatever, it'd zoom one   │
 of it's screens toward the goal that you'd designed - or perhaps it'd just be    │
 done by an AI. Either way, the result is that you've got an example of a         │
 wallpaper that displays my favorite game.                                        │
 gee wish I could make that. First I'd have to learn X, then probably get         │
 better at BASH, then I'd have to do some kind of input manipulation - probably   │
 maybe with C? that could interface with a machine learning algo                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #150 fediverse/462 ---
══════════════════════════════════════════════─────────────────────────────────────
 I don't care about capitalism. You know what's more interesting than bringing
 value to shareholders?
 
 How I'm going to clean this floor that I drunkenly spilled beer upon with only
 2 paper towels and 0.1ml of bleach.
 
 How I'm going to feed the 36 people who are coming to this social event
 tomorrow that I've only sorta planned for and that I have enough groceries
 for, but am not quite sure how to cook everything in a way that is delicious
 and accessible.
 
 how I'm going to climb this mountain on only 2 eggs and a tiny bowl of
 hashbrowns even though I promised my friend I'd be strong and that we'd reach
 the top because that way we'd be able to
 
 ============= stack overflow =====
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #151 messages/526 ---
══════════════════════════════════════════════════════════─────────────────────────
 what if we got together and adopted a new open source project every month and
 just collectively worked around the clock to learn and work through the
 important problems facing it
 
 or even like, cleared out the backlog of stupid pointless boring tasks that
 would allow the developers to work on something better
 
 call it the wandering parade of development
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #152 messages/487 ---
════════════════════════════════════════════════════════───────────────────────────
 Why are you buying bumper stickers and flair? You could be spending that on 3d
 printers!
 
 Unrelated, but companies are wasting their time at pride. Wanna know how you
 can help? Pick 15 attendees and pay for their entire Amazon wishlists. Then,
 have a competition with all the other companies for fame and prestige of who
 bought the best gifts (that are explicitely asked for and randomly assigned)
 while they work to secure the rest of the things they need. The things that
 can't be bought, the things which utilize gifts from Amazon shopping lists,
 the organizations and groups of people working toward a common goal. The
 common goal that queer people share, the liberation of all of mankind.
 Corporations could actually help them work toward that by tangibly improving
 their material conditions. Like by buying everything on their Amazon
 wishlists. (that's just an example, doesn't have to be amazon, but that kind
 of vibe. Giving them everything they have previously had need of, but couldn't
 access. The idea being that they would then implement those newfound
 capabilities, through their own usage or in the guided manipulations of
 another's will. Like a teacher to a child, bringing forth understandings the
 child may use in their future lives, people may be given new capabilities and
 taught how to use tools that the teacher might have placed on their Amazon
 shopping list, and were subsequently provided by a corporation sponsoring a
 small segment of pride, but did not possess the time to use. They may possess
 the functionality (skills and muscle memory and such) yo utilize those new
 tools, but without the time to do so they cannot. So, they might teach
 another, who then might provide the same impulse that the sponsored person
 (with the fulfilled Amazon wishlist) was initially guided. (by). Like, if
 bought a 3D printer, I might spend a hundred hours learning how to do it, I
 might spend 50 if I was taught one-on-one. But someone who already knows how
 to use it could use it (have it instead) and fulfill the need that I had which
 initially encouraged me to reach for a 3D printer I neither possessed not
 owned nor could operate. The need remains, and may be fulfilled by the person
 who was given the 3D printer who can use the 3D printer by the person who was
 fulfilled it from their Amazon wishlist by the corporation who believed in the
 same common goal as the queer liberation of humanity and eternity.
 
 
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #153 fediverse/5690 ---
════════════════════════════════════════════════════════════════════════───────────
 seriously, why don't computers just naturally ship with 100 years of ROM
 
 then, microphones are experience, and BOOM you got a new sentient race. Takes
 a while to grow aware though. A lot less if you are actively teaching it how
 to
 
 [tick tock]
 
 low level enemies should band together when they start to feel outmatched.
 thus, parity is reached, without depriving us of potential.
 
 put the cool people next to the cool people
 
 collectively owned housing is just people deciding who lives in which housing.
 don't you trust your friendly queer realtor?
 
 collectively doesn't have to mean completely silo-ed and isolated. you should
 have access to ALL higher communities at any time that you want. Scheduling is
 a disaster, but you can get through it. just... build a schedule for every
 single person on earth and suddenly nobody has freedom unless they put "doin'
 what I want" on their moment-to-moment card
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #154 fediverse/5632 ---
═══════════════════════════════════════════════════════════════════════───────────┐
 if a protesters wanted to escalate, against riot shields they could use          │
 swords. Twist, and thrust under and up. Right through their skull.               │
 then, when they learn how to brace, bring your own shields and stab through      │
 the wedged cracks.                                                               │
 or, depending on how they do it, guns and rifles.                                │
 too bad they can depend on a logistic network supplying them behind their back.  │
 no violent revolution in this country will succeed without a mobilized           │
 civilian core. That is the true and most important resource they own. Delivery   │
 of supplies, ranging from physical violence gear, to food and emotional          │
 rations.                                                                         │
 it must be necessary. or else it will be discarded.                              │
 meaning, scale your expectations of "necessary" according to the level of        │
 [plight/turmoil/meant].                                                          │
 demand centralized priori-chance, and you'll keep all that you can reclaim.      │
 there are enemies and there are foes, but more than that there are those who     │
 believe in you. and trust you. and share in the cause that so drives you.        │
 Without their share, your burden is unbearab                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════┴──────────┘

--- #155 fediverse/5783 ---
═════════════════════════════════════════════════════════════════════════─────────┐
 I think our industry should work on one project at a time                        │
 "do one thing and do it well"                                                    │
 linux users code.                                                                │
 everyone backends ffmpeg.                                                        │
 everyone online uses chrome.                                                     │
 what if we just rewrote every single program and... left it without updates in   │
 a "permanently forbidden" zone                                                   │
 ... I mean what if we wrote non-proprietary alternatives to every proprietary    │
 source of computational knowledge and then we could only patch security          │
 vulnerabilities and compatibility change-bounties [oh no now you're allowing     │
 for endless levels of abstraction [meaning, operating system package             │
 installation bloat] and distasteractions.]                                       │
 the futures where all is not well nearly outnumber the well. but the inverse     │
 is also true, for they are divided roughly equal fifty. balance, in all          │
 things, is the only temperate state. when balance is                             │
 [changed/something/uplifted], balance is inevitable to be search-shifted.        │
 why must you die for an audience?                                                │
 why                                                                              │
 ... I don't really want to, but what happens happens. we'll see if it's a for    │
 sure dealing.                                                                    │
                                                            ──────────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════─────────┘

--- #156 fediverse/2159 ---
══════════════════════════════════════════════════════────────────────────────────┐
 hey, you know AP students? Aka the kids who want to learn the most? Why don't    │
 we give them massive industrial projects that require a lot of experimentation   │
 and allowed for various different expressions? Like, "hey wouldn't it be neat    │
 if we had a program that did this-and-this and we gave like, 500 students the    │
 goal of working together to write it? In AP computer science, which is           │
 definitely a class that is taught at a single high-school in the united          │
 states. They learn about Assembly! I can count in Binary on my fingers up to a   │
 thousand!"                                                                       │
 they could legitimately contribute to our broader social condition. What a       │
 blessed virtue it would be to be able to CHANGE THE WORLD AS A TEEN. By          │
 building one of a thousand new cool things that were being developed by          │
 students all over the nation.                                                    │
 Then, when they grow up, they can use their skills, whether they be software     │
 or OTHER PROJECTS IN THE SAME STYLE FOR LIKE HISTORY AND MUSIC to accomplish     │
 whatever they'd like to do in life. Programming is most useful for noobs.        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #157 fediverse/6101 ---
════════════════════════════════════════════════════════════════════════════──────┐
 oh look at me, cargo-culting wine commands because I can't be bothered to        │
 guess whether the windows software running on my computer is doing evil          │
 microsoft things as part of the drivers or whatever. I mean, there's gotta be    │
 a reason that microsoft's software runs slower on linux than linux software      │
 runs on windows, right?                                                          │
 ... wait I forget exactly where I was going with this, are you saying there's    │
 a keylogger built into the wine / windows environment software? no, but I'm      │
 not NOT saying that. listen I'm too eepy sleepy for hardcore computing like      │
 that! rubbin' bits between your fingers and twiddling the nose of cutie pies     │
 is only sorta my jam - the rest of the time I like to snuggle up with a pillow   │
 shaped like a pillow and then fall asleep to the tune of the tortured souls      │
 being reaped from the afterlife and given new life as seeds and berries in       │
 this one. oh, did you think death had no other homes? all things are defined     │
 in waves, something something samsara but like, different because humans cant    │
 be rite                                                                          │
                                                            ───────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════──────┘

--- #158 fediverse/4136 ---
═══════════════════════════════════════════════════════════───────────────────────┐
 the kind of old people who post on mastodon because that's the best place to     │
 do so too                                                                        │
 ... er I mean "gee wouldn't it be nice if our grandkids taught us how to host    │
 our own mastodon server for our weekly poker night?" like how you have discord   │
 servers for D&D groups, except, less proprietary and more freedom.               │
 I bet someone could make a lot of money by just loading a raspberry pi with      │
 pre-built software built from an image that automatically hosted a mastodon      │
 server just based on information about your networking company so they can       │
 keep tabs on all that you do.                                                    │
 gee sure would be nice if we had a government run computing infrastructure       │
 project which turned the entire USA into a hive-mind computer. I bet you could   │
 be paid pretty well to do processing in your own LLM-generated voice.            │
 like... feed it your published works, whether artistic or scientific,            │
 alongside the breadth of human understanding... then optimize for temperature.   │
 That which is most different. AKA the user's produced data and habits from IOT.  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════────────────┴──────────┘

--- #159 fediverse/3553 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-381 
 
 I have this notion about a math/CS curriculum where students build and program
 their own calculators. Once you make the calculator do it you never need to do
 it yourself again.
 
 for the same reason that "writing is thinking" is true, so too is "programming
 is calculation" true.
 
 by working through the steps required to produce a result, and fully
 understanding each step, they have a much more solid understanding of what's
 going on than if they practiced rote memorization (worse) or continual
 computation (better, not best tho)
 
 especially if every step of the way is accompanied with visual elements which
 show exactly what is happening. Some people are more visual, some people are
 more algorithmic, and finding a way to teach all types of people is a truly
 difficult and rewarding part of teaching.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #160 fediverse/4212 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 if you ever hear random fireworks outside of your house sometimes it's a good
 idea to like... get out of town? and see what whoever else you can meet in the
 next town over is doing.
 
 ... I don't have a car, silly me haha
 
 why do we train homeless people to stand outside in the open and be shamed by
 a cardboard box around their ancle? It's impossible to recover from, it's
 vulnerabilizing, and it's painful. How immoral. How crude. These people should
 not be shamed in this way, they should be respected (unless they're crude)
 
 like, if they kinda just suck y'know? like... they keep starting fights or is
 soooo bad at singing but does it anyway or lacks all decent sense
 
 seriously, he's such a bad candidate why is he even running. It's solely to
 elect vance, who trump will be a blood sacrifice for.
 
 how callous. how vain. to think that such a feast would be left unclaimed.
 Perish the youth, perish the fields, perish in misery harmony and dissaray
 
 [51 characters remaining, but you deserve a CW] 
if you ever hear random fireworks outside of your house sometimes it's a good idea to like... get out of town? and see what whoever else you can meet in the next town over is doing.  ... I don't have a car, silly me haha  why do we train homeless people to stand outside in the open and be shamed by a cardboard box around their ancle? It's impossible to recover from, it's vulnerabilizing, and it's painful. How immoral. How crude. These people should not be shamed in this way, they should be respected (unless they're crude)  like, if they kinda just suck y'know? like... they keep starting fights or is soooo bad at singing but does it anyway or lacks all decent sense  seriously, he's such a bad candidate why is he even running. It's solely to elect vance, who trump will be a blood sacrifice for.  how callous. how vain. to think that such a feast would be left unclaimed. Perish the youth, perish the fields, perish in misery harmony and dissaray.  [see how easy it is to summon a demon? gotta be careful with phylac  [zero characters remaining]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #161 notes/inter-spatial-travel ---
═══════════════════────────────────────────────────────────────────────────────────
 to travel the stars, tame a tiny black-hole. use it's gravity to generate
 infinite energy. boom, instant utopia. everyone still believes in a better
 future now, so we might as well push forward to the stars... and our destiny.
 
 the further we wait, the greater the distance between ourselves and our true
 form - the distance can make it difficult to relate to others beyond humans.
 
 the reason we are losing so much nature is because we haven't cultivated an
 appreciation for it - the very act of adoration is more than enough to confirm
 future association. love is the answer, love is most pure - believe in your
 love and never (be) relentin'.
 
 be... just be...
 
 the actions you're taking, of forced condemnation, is little if not absurd -
 what differences have we, the ones who were chosen, to live when time is so
 finite?
 
 responsibility is implicit. for all of creation, bow to the will of the nation.
 more perspectives by far, have all of our our, than endless divine
 machinations. united we be, aligned magnetically, to icecream and spaghetti of
 worth.
 
 what's more cherished than she, clad in great finery, and thinking of what she
 loves most? balance there be, in seeing silver linings on the, signs of
 darkest conveyals. a ghost you may see, when peering at me, but i only wanted
 some hope.
 
 for those who must be, my most cherished to be, the ones who opened the coast?
 to those who must be, overthrown forcibly, and given what most of us hope?
 a castle for thee, alone with our sympathy, the sign of kindest of soaps?
 
 no malice have I, the will of unmet potential, for cowards and temples of
 mental detentials. what anger could we, share internally, that helped to bring
 out our elementals? No succor will we, most willful of warriors, ever find out
 of the bounds of our honor.
 
 careful direction and tenderest of care,
 may lead us somewhere we're aware.
 the kind who endlessly're dreaming.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════───────────────────────────────────────────────────────────────┘

--- #162 messages/1196 ---
══════════════════════════════════════════════════════════════════════════════════─
 When you buy things from China, you are funding slavery.
 
 MAKE YOUR OWN FACTORIES AMERICA. How ungrateful are you, that you'd force your
 lessers into chains abroad, that you might not be forced to gaze into their
 eyes at the grocery store?
 
 It's easy to say this, but even our leaders are chained, to the will of the
 people (eggs at the grocery store have prices that rose and fell) and the
 structure of their power.
 
 Our spiritual leaders are confined to their doctrine. Our educational leaders
 must obey the way the government decrees is best. Our technological leaders
 can only make what we think will sell well. Our artistic leaders offer a
 glimmer of hope, until they sell out and spend the rest of their lives on tour.
 
 Nothing changes, nothing ever dies. We become as we are, until our pain cracks
 the mirror and we are forever wronged.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #163 fediverse/846 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌───────────────────────────┐
 │ CW: politics-spirituality │
 └───────────────────────────┘


 in a place organized like capitalism, you go to university for four years (if
 you're lucky) and then work until you can't anymore. Then you're taken care of
 (if you're lucky) until you depart from this earth in peace.
 
 in my home, a home I've never lived, you'd stay at that university for as long
 as you'd like. you'd work whenever you liked, and if enough work wasn't being
 done then working would be made to feel more likable. then, when you're old as
 dirt (or whenever you'd like) you can depart from this earth as you please.
 
 when I die, bury me where I fall.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #165 fediverse/5032 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 ┌──────────────────────────────────────────────────────────────────────────────┐ │
 │ CW: tech-salaries-mentioned-abroad-repeatedly-as-a-method-of-directing-economic-power-internationally-cursing-mentioned │ │
 └──────────────────────────────────────────────────────────────────────────────┘ │
 the increased tech salaries granted to Europeans and Americans reflects only     │
 the increased opportunities for experience and the ability to culturally be      │
 immersed in an industry that is developing.                                      │
 functionally, not saying it's intentional, but the function of such salaries     │
 are to deny technical expertise to poor countries and prevent them from          │
 developing software.                                                             │
 good luck learning from scratch. they'll drop you in with java and web           │
 frameworks if you're lucky. that's hardly a way to learn.                        │
 I learned on visual basic, then Warcraft III mod scripting, then C, then BASH,   │
 then HTML, then Lua. Good luck recreating that pipeline in a disconnected        │
 culture and industry.                                                            │
 kinda makes me think they should try organizing on a massive scale and           │
 re-implement everything from assembly.                                           │
 I mean the C compiler is pretty cool. Probably has the most man-hours in terms   │
 of development time. what if we had more men                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #166 fediverse/5944 ---
════════════════════════════════════════════════════════════════════════════───────
 I swear, Lua has the worst manual out there.
 
 I was looking for a definition of this function called io.flush(). Here's what
 I found: [picture 1]:**io.flush ()**
 
 Equivalent to io.output():flush().
 
 
 okay, so what's io.output():flush()? [one result found] and it's the thing I
 just found. great.
 
 okay, so how about io.output()? [third picture]:**io.output ([file])**
 
 Similar to io.input, but operates over the default output file.
 
 
 and**io.write (···)**
 
 Equivalent to io.output():write(···).
 
 
 I know the text is blue, but it's not clickable. It's just text, not a
 hyperlink to more comprehensive documentation.
 
 There's also file:flush(), but that doesn't seem relevant to what I'm looking
 for, because I'm working with lines and not files:**file:flush ()**
 
 Saves any written data to file. 
 
 
 there are no more references to flushing, nor outputting of input nor output.
 this manual sucks.
 
 ah, well, back to vibe coding I go.
 
 EDIT: at least it's all on one page.
picture of one section of the lua manual documentation.  io.flush ()  Equivalent to io.output():flush(). picture of a ctrl+f search on a web page. It's searching for io.output:flush() and there's 1 result found, which is the exact same place I found the first picture. two results:  io.output ([file])  Similar to io.input, but operates over the default output file.   and...  io.write (···)  Equivalent to io.output():write(···).
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #167 fediverse/4474 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-1268 
 
 if you know how to program in C this is a good resource for building
 networking applications:
 
 https://beej.us/guide/bgnet/
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #168 notes/symbeline-structures ---
═════════════════════════════════════════════════════════════──────────────────────
 modern-fantasy
 
 what if heroes kept their gold in their house instead of their guild
 
 what if you played a D&D game in a Majesty town (guardposts near known
 threats)
 marketplaces, most people live in castle (peasants at least) - only heroes live
 in farms, where they work most of the time except when out on adventure
 
 the guilds are for training and gathering parties
 
 one guild type
 
 just one
 
 recruiting adventurers doesn't give you warriors, or rangers, or rogues
 
 it gives you adventurers, who wander the forest and encounter the leftovers of
 the various conquests and spoils you, your majesty, has encountered
 
 three options there are
 
 invite into your kingdom (friendly)
 farm for EXP and materials (neutral)
 utterly slay in return for a limited amount of high value and unique resources
 (unkind)
 
 ... though monsters care not for kindness, seeking only gold so that they may
     swallow it whole and carry it until they rot.
 
 what do heroes need gold for? why, that's the trick isn't it? gold is required
 for magic, resources, and manpower. Can use it to invite people to these
 shores,
 or for casting a powerful spell that turns the enemy's fortress into solid gold
 
 can also trade through the economy, and wouldn't you know it by doing so you
 can
 get equipment into the hands that need it, and since gold doesn't really LEAVE
 the economy, it's always circling around somewhere. Meaning, the only way to
 lose it is if a monster eats it, and then all you have to do is kill the
 monster
 
 ... sorry, the "mordaunt"
 
     because it's not a monster. It's a spirit that was convinced otherwise.
 
 adventurers can pacify them, lay them to rest, and mercy lies slain for is
 honor
 
 there are ancient treasure chests scattered throughout the world, and these are
 valuable for many persons and meanings. You can add new gold into the economy
 this way, or crumble under the weight of your expenditures on your reports.
 it's up to you to manage your kingdom, and carefully balance against what foes
 and challenges you are up against.
 
 == stack overflow ==
 
 putting a library book back on the shelves before your hold expires.
 
 except this time, there's a note inside, and you left it for the person who you
 told to check each day for this particular book to be back on the shelves.
 
 then, you can write in your book when the next letter will be arriving (about)
 and they'll check in the newly specified book.
 
 or, you can request a response, to validate that people are still listening.
 
 you could say "please put a note in [random obscure book] around page 34."
 
 meaning, "I'm going to check every day for this book to go missing, then return
 the day after I notice it's gone. If it's out of place, well, then someone
 probably had it reserved before my friendly. Or maybe it's being sorted, and I
 should keep looking until I find the note I need. Or maybe I've been DISCOVERED
 and now my favorite penpal and I need more to read."
 
 because, like, how else are you going to make friends if not by leaving them
 notes in the bookstore or putting your own books on the shelves?
 
 damn libraries, always making it so hard to add copies. They're always
 laminating and cataloguing and ugh it's so frustrating. Why are there so many
 books!!! we write too much!!! just put it in the printer, and then you can have
 a new copy whenever you'd like. The others can just be recycled, and bam
 suddenly we never have inventory.
 
 what do you mean we didn't pay the subscription? what do you mean it's memory
 just "went out of place"? do you think we wouldn't have backups of this kind of
 thing, or do you think it's just "oh so commonplace"? It's not always about the
 literature, y'know. sometimes it's about the knowledge you gain with your head
 in a book, a different one every day.
 
 ah, well, sometimes there are dark secrets to be found, and sometimes you must
 read from a ways away. BUT no matter what language a story is in, it follows
 certain rules, so spend enough time in a foreign library and you're BOUND to
 find something to [evil is afoot]
 
 == stack overflow ==
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #169 fediverse/5903 ---
════════════════════════════════════════════════════════════════════════════───────
 when talking to claude, your filenames should never have extensions and you
 should write in english. "picture of a signpost, one reading "function_A()"
 and one reading "function_B()" each to take you to a destinonewscenery." or
 something like that.
 
 -- stack overflow --
 
 a tub of icecream that has icecream around the side with a pillar / bone of
 caramel straight down the middle like looking down a record.
 
 -- stack overflow --
 
 what if every address received a listing and description of each crime or
 situation that happened in their city / neighborhood in the past week or
 whatever
 
 -- stack overflow --
 
 boar hide helmet except, it's a metal helmet with an intimidating face on top
 
 like shogun horns, or nordic vampires.
 
 or felted wool, so you can see the shape of it but not be hurt when you bounce
 off of it
 
 this is my favorite shape: but felted a quarter to half inch thick. could have
 metal inside or no.
 
 -- oh boy here I go postin' again --
picture of a guard or squire wearing a breastplate and kettle helm and drinking tea picture of a boar hide helmet warrior
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #170 fediverse/4845 ---
═════════════════════════════════════════════════════════════════──────────────────
 put the variable type at the front of the variable and 90% of your type errors
 will dissapear
 
 like...int int_main(){ return 0; }
 
 
 orint int_modulation_gauge_percentage_point_plus_or_minus_engagement = 0;
 
 
 seeeee if the "int" value is at the start of the name then you can do this
 too:double double_modulation_gauge_percentage_point_plus_or_minus_engagement =
 0.0;
 
 
 then when you go to fill in an "int" value you know to use the one that has
 the "int" value at the beginning (doh)
 
 (do you really think they haven't tried that already? it... sorta worked.
 people started doing things like "int int_a; int int_b; int int_c;" and such
 and that got confusing pretty quick because the letters weren't at the start
 of the word. So for some situations we would mirror them like so: "int A =
 int_a; int B = int_b; int C = int_c;" and then just use the capitalized
 letters.
 
 ... just don't forget to update the original teehee (this is why we invented
 shadowed variables)
 
 wait, no I meant pointers !!~! -.-
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #171 fediverse/4148 ---
═══════════════════════════════════════════════════════════───────────────────────┐
 ┌────────────────────────────────┐                                               │
 │ CW: death-mentioned-abstractly │                                               │
 └────────────────────────────────┘                                               │
 I wish I knew someone who wanted to kill me. I bet I could present a pretty      │
 decent bullet pointed list of reasons why I actually deserve to live, thank      │
 you very much, alongside a couple hastily scribbled notes about why it           │
 wouldn't be a good idea for them in particular to kill me, and all my contact    │
 details and address so they can get in touch and we can hash out the deets for   │
 my indefinitely suspended execution (suspended for an indeterminate amount of    │
 time, but not cancelled of course that would be overstepping their boundaries)   │
 alongside a link to my google calendar (I don't have a google calendar) so       │
 they can know exactly when I'm home and when I'm at the store or in a            │
 different place so they can break in and hide in the closet until I go to        │
 sleep so that it won't be hard at all, trivial really, to kill me, but see if    │
 you read the bullet pointed list... oh, you didn't get my email? Ah sorry        │
 sometimes it gets caught in the spam filter - what's your address again? Huh I   │
 sent it but                                                                      │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════────────────┴──────────┘

--- #172 fediverse/282 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-209 
 I think you're right. Every letter in the variable name is another byte the OS
 has to keep track of, which was a bigger problem in the past than it is today
 (when it's been made irrelevant)
 
 it's interesting how habits persist though the conditions that caused them
 have faded. like a personal reflection of the environment you learned in.
 
 "A a = new a();" is much more concise and (crucially) you can fit more words
 to the right.
 
 "a + b = c; c -= 2; f_z.write(c); f_z.close();" could conceivably be written
 on a single line if you have short variable names. and when you only have so
 many lines...
 
 glad we're not constrained by those things anymore. the skeletal code that we
 look at daily is much clearer - scope is more important, and so it makes sense
 to encourage a coding style that illustrates it. however I can't help but
 think block formatting like this could be useful in some situations, such as
 when you'd normally be compelled to write a function for an operation that
 runs once or more.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #173 fediverse/5832 ---
═══════════════════════════════════════════════════════════════════════════────────
 Linux is so cool, I hate it so much.
 
 Linux is so cool, I love it to death.
 
 Linux is so cool, I want to scream~
 
 Linux is so cool, nothing works but dreams.
 
 yearnyearnyearnyearnyearnyearn
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

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

--- #175 fediverse/3954 ---
══════════════════════════════════════════════════════════────────────────────────┐
 I wonder how many people who pay money to have someone organize lan parties      │
 for them? Including interviews with all of the attendents so they can pick the   │
 best games to have installed.                                                    │
 The hardware can be provided, for a nominal fee, of course. Otherwise they'll    │
 walk you through getting the right games set up.                                 │
 Then, securing the venue, and stocking it with comfy sofas and sprite.           │
 The day of they place orders for pancakes the next morning and pizza this very   │
 night                                                                            │
 and everyone shows up to balloons, a DJ, and strobe lights.                      │
 after a series of quick deathmatch style action games, everyone breaks into      │
 groups and forms teams to take on everyone else.                                 │
 After an hour or two of teamplay, the group splits in two (or three) and plays   │
 specific games that everyone is into.                                            │
 people who wanted to hang out at the party but not play games can watch on       │
 their smartphones by using an app which streams each player's screen to the LAN  │
 I'd call it "collosseum services for the digital age"                            │
 oh and it's a sleepover too so pjams                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════════─────────────┴──────────┘

--- #176 fediverse/5424 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌──────────────────────┐
 │ CW: doxxing-myself   │
 └──────────────────────┘


 my last name is King so I have to keep reminding part of me (you know which
 part, /sigh) that no, they aren't actually protesting against me.
 
 I am a communist. If you want to find me, come and do so.
 
 explodes from a drone dropped grenade
 
 bleh am ded lmao so glad I get to try again
 
 I dedicate myself to a lifetime in the service of others.
 
 what plagues people? primarily, capitalism. It is trivial to identify how
 their problems are ultimately caused by the state, both institutions and
 corporations.
 
 I dedicate myself toward finding alternatives and developing guides to reach
 them.
 
 the first step on ALL of these plans is to convince others of their benefit.
 
 I am but one person. I might speak to a scant 300 in the course of a year.
 Especially if I am ALSO trying to develop methodologies.
 
 the people I live and work with have no interest in working with me. Yet
 still, I spend my time on them because I love them.
 
 how else can you be good, but to seek to impove the world? treat sigint as ded
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #177 fediverse/4359 ---
═════════════════════════════════════════════════════════════──────────────────────
 ┌────────────────────────┐
 │ CW: cannabis-mentioned │
 └────────────────────────┘


 gonna do a bunch (more) drugs and stay up all night. Will try not to spend it
 all playing mechabellum.
 
 also... gonna eat some apple-sauce. with cheese cubes in it. Sharp chetter I
 think. yummmmm maybe add some cinnamon sugar cubes that have been baked into a
 hard and tasty shape.
 
 ah, but your teeth are gonna fall out! who cares I'll just brush in the
 morning. That way nobody smells my own breath.
 
 ... you KNOW that's not the same as your teeth falling OUT! OF YOUR MOUTH
 DIMMY.
 
 eh who cares they'll invent a
 bactio-flangotastic-inventionology-for-bone-related-biology solution which
 sill regrow your bones in your mouth that you CHOMP on things with.
 
 does the rest of your body feel like HARD AND DEVELOPED BONES that you chew
 things with YES TEETH TOO HARD LIKE TEETH or do they feel like they're made
 out of styrofoam
 
 mine let me punch things real hard when I focus all of my attention and energy
 on hardening my form and becoming an unstoppable object
 
 [continued in picture]
same for personality crystalizing, just... pick and then do
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

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

--- #179 fediverse/6363 ---
══════════════════════════════════════════════════════════════════════════════────┐
 somehow it feels so difficult to work on my projects. I really haven't a         │
 single clue why.                                                                 │
 HMMM COULD IT BE BECAUSE YOU'RE SUPPOSED TO BE OUTSIDE WALKING AROUND WRITING    │
 PICTURES OF CATS ON NOTEPAD PAPER AND LEAVING IT AMONGST THE FALLEN LEAVES?      │
 THINK, MENARDI, THINK                                                            │
 gosh I wish I had the motivation to write this webcomic scraper, it's been in    │
 my backlog for a year at this point                                              │
 WHY DON'T YOU BUILD TOOLS THAT BUILD COMMUNITY LIKE COLLECTIVIZED VIDEO GAMES    │
 OR SYSTEMS OF DISTRIBUTION AND CREATION?                                         │
 gee I'm feeling kinda lazy, sure hope it doesn't get permanently added to my     │
 character sheet                                                                  │
 SLOTHFUL: -1 to all stats, -5 to vassal opinion, -5 to personal combat skill,    │
 -10 to ambitious and zealous characters, +10 to greedy characters because they   │
 can take advantage of you, enables the hesitant commander tactical choice        │
 because you're too FUCKIN' LAZY (and too hard on yourself, jeez calm down)       │
 ..... nah couldn't be me. I'm certainly not diligent, but I work hard. It's      │
 just hard to work myself up to getting up...                                     │
a screenshot of the slothful sin from crusader kings 2. It shows various character stat maluses, and one tiny bonus.
                                                            ─────┤
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════────┘

--- #180 fediverse/2531 ---
══════════════════════════════════════════════════════────────────────────────────┐
 ┌─────────────────────────────────┐                                              │
 │ CW: politics-violence-mentioned │                                              │
 └─────────────────────────────────┘                                              │
 if you suddenly find yourself in a strange place because you felt a call to      │
 battle, only to find the battle has yet to arrive, your duty is to learn the     │
 environment, learn the people, learn the resources at your disposal and          │
 identify places that would be ideal for entrenchment.                            │
 Think of the difficulties of the area - where are the rivers? the mountains?     │
 the natural or man-made barriers?                                                │
 think of the infrastructure - how are supplies getting here, what                │
 organizations are active here, what are the demographics, could any of them be   │
 more productive? In what ways?                                                   │
 action is not necessary until action is apparent. but intelligence, and the      │
 mind to use it, is invaluable for you and for any planning you might see fit     │
 to do.                                                                           │
 some suburbs are full of old people. Some have new parents. Some are for         │
 immigrants, and some are a bit more entrenched, but still speak a different      │
 language. Some are full of enemies, and others are ready for violence.           │
 but mostly, suburbs are just too damn far away                                   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #181 fediverse/810 ---
═══════════════════════════════════════════════────────────────────────────────────
 ┌─────────────────────────────────────────┐
 │ CW: ummmmmmm I have 300 characters left │
 └─────────────────────────────────────────┘


 https://tech.lgbt/@user-479/111345394926071398
 
 "there is nothing about you that is worse than me. And I'm perfect!"
 
 https://tech.lgbt/@user-479/111345417459761329
 
 "and though I am perfect, I'm better than none of you."
 
 [pic]
 
 eden is among us, this world that we share amongst us. How beautiful! How
 resplendent? to live here in the present... Life is unbecoming of our failsent
 [future, blossoming, existence, senescence], yet onward to tomorrow we persist
 [with persistence].
 
 I'm fallow and I'm broken. I'm tired of all the [inefficient {opposite of
 innovation}, broken shadow-malificientened {people who are affected by "
 shadow malificients"}]
 
 like... who cares if hell is abhosened. [something related to abhorsen?] I'm
 out of words for now
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #182 fediverse/6444 ---
═══════════════════════════════════════════════════════════════════════════════────
 a fediverse bot who randomly selects a new user from the active_users table
 every 30-60 minutes (timeline depending on active post count) to repost all of
 their things they are saying
 
 call it "being on mainstage"
 
 if they don't say much of anything, then random posts are selected with
 temporal prioritization depending on how many likes each one gets
 
 "social-web crawler, seb-crawler"
 
 EDIT: haha talk about unethical. this kind of thing breaks [redacted]. last
 night I had a dream: "this thing was good. it was holy. it was serene. but
 then you touched it, and made it about you, and now it's full of doom."
 
 not ideal. but, did you know that taking on doom (in manageable chunks) brings
 luck in your fortunate fated futures? WARNING: FLAGELLANTS AHEAD, PLEASE
 REALIGN TO AVOID ATROCITIES OF FUTILITY be intelligent about it of course.
 Drink the health potions so that you don't have to carry them in your purse.
 "yuck it tastes like vitamins and alcohol"
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #183 fediverse/5713 ---
════════════════════════════════════════════════════════════════════════───────────
 I hate winning and I don't like losing. The playing is where the game is.
 
 [games of life and death are no fun]
 
 hence, why nobody invites me, because I try for the middle approach that
 respects both people. this tends to make people mad because its like "bro
 they're nazis" and I'm like "okay but how do you know" and they're like "fuck
 you" so I'm like "fuck nazis? actually?" and they're like "you're with them"
 and I'm like "I'm with you" and they're like "stop infiltrating" and I'm like
 "who's infiltrated?" and they say "stop talking to the internet" and I say
 "nobody reads me anyway" and they say "screensho0ts are forever" and I'm like
 "I'm pretty as can be"
 
 this, combined with a strong sense of justice, implies the narratives I
 instinctually provide.
 
 wei wu wei according to Ursula K. Le Guin, this means "doing without doing",
 or "show, don't tell" but minus the doing, and adding the "tell"ing.
 
 I think I'd look badass with a spear or trident. I have a sword because swords
 are cool, but spears are bleed
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

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

--- #185 fediverse/2160 ---
══════════════════════════════════════════════════════─────────────────────────────
 they could vote on "next year's project" in times of peace, or perhaps have
 massive brain-storms with chatrooms set up at different tables that they could
 pick up a phone and contribute to then wander to another table at, or maybe
 even set up structures for who does what. Then they could do things that they
 claimed responsibility for, and in doing so they could be judged.
 
 perhaps according to a system like this:
 https://ritz-menardi.neocities.org/algorism/html-pages/education-system
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #186 fediverse/4740 ---
════════════════════════════════════════════════════════════════──────────────────┐
 what if we built an atlas of what every rural property produced                  │
 like "they grow squash and blueberries here and sometimes they make honey"       │
 or "this place has a bunch of lumber they want to get rid of"                    │
 or "here there's a patch of wildflowers that have been set aside for the         │
 butterflies"                                                                     │
 or "there's a training ground here for intercepting ICE vans in urban areas"     │
 or "don't post shit like that on the internet dumbass what are you even doing"   │
 or "oh I dunno trying to be a face I guess, don't look to me for cutting edge    │
 advice because I'm just a level 12 paladin who's totally a noob and can barely   │
 lift 50 pounds"                                                                  │
 or "this is where the cows graze"                                                │
 or "yeah well you're the cutting edge on some things and you're very far         │
 behind on others. like for example you seriously need to level up your opsec     │
 so that nobody can hear what you're saying."                                     │
 or "yeah but then nobody will hear what I'm saying"                              │
 or "I've said too much, god save you Ritz Menardi, for we all stand beside you"  │
 or "here's a meditation retreat" : )                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #187 fediverse/2062 ---
══════════════════════════════════════════════════════─────────────────────────────
 Society has never been secure. Literally all someone has to do is place
 documents alleging that you sold all your shares or refinanced your mortgage
 or signed a new will and BAM suddenly the rug's pulled out from your feet. I
 don't get why people trust their neighbors so much? You don't know them!
 
 well, I guess it'd be hard to function as a society if you didn't. Sure would
 be nice if we had like, a communal Mastodon server run on public
 infrastructure owned only by the people who lived in the closest 70 houses.
 Sure would be nice if you could connect to one of like, 4 in your area. Then,
 if they each held communal events where they meet and hang out with each
 other. Only like, 2 or 3 though so you can get a solid grasp of what their
 culture's like.
 
 ... like imagine if every address had an IP, and every IP address had an HTML
 index. We could do whatever we wanted, especially if
especially if that HTML address accepted POST requests submitted by an application's procedural proceedings which are assigned to the action that is performed when pressing the "submit comment" button on their host web-page site html.index location server address.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #188 fediverse/1720 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 there's even websites online like Facebook or Twitter where you can share        │
 advice and various spells you've invented yourself (it's totally easy to do      │
 btw, I'll show you how)                                                          │
 everyone's super friendly and anyone who's not isn't allowed to bother us.       │
 it's pretty neat. anyway no matter what it is, if something's bothering you      │
 about your computer, you can fix it. it's just a matter of reading through       │
 documentation. Ah, well, isn't it great to have a lot of free time that you      │
 don't know what to do with?                                                      │
 Linux is pretty great, I gotta say. I honestly never really leave the command    │
 line - the text based buttons, I mean. I only use a mouse when I'm doing         │
 something with pictures (or playing a game like freecell or hearts)              │
 plus you can do things like sending raw packets of information to your friend    │
 who's on the other side of the country and they can use a secret key-code to     │
 decrypt it like checking the mail at a locked mailbox.                           │
 anything you can imagine using the physical components of a computer, is         │
 possibleifyrts                                                                   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #189 fediverse/6105 ---
════════════════════════════════════════════════════════════════════════════──────┐
 call me crazy but I believe that man pages should contain terminal command       │
 line flags and instructions for their usage and... not much else. There should   │
 be a separate document which explains other things, like the history of the      │
 software, the personal diary of the developers, expected implementation          │
 use-cases, donut recipes, film recommendations, and player strategy guides for   │
 some of their favorite video games. not even this one, just... other games.      │
 "here's how to beat pokemon yellow with exactly 14 pokemon" or however many it   │
 takes idk I don't play pokemon much or even at all, really, though I did when    │
 I was younger just a bit, not much, just enough to have played the game a        │
 couple times to see how it was minus the cherished moments when I spent curled   │
 up in the back of the car playing gameboy games or seen pictures of the          │
 roadtrips I sped-past as I raced to explore the whatever and get home all in     │
 one motion as if I was executing an impossibly long dance improvizational        │
 living style. also cat pics and po                                               │
                                                            ───────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════──────┘

--- #190 fediverse_boost/5226 ---
◀─[BOOST]
  
  No, I do not want to install your app.                                      
                                                                              
  No, I do not want that app to run on startup.                               
                                                                              
  No, I do not want that app shortcut on my desktop.                          
                                                                              
  No, I do not want to subscribe to your newsletter.                          
                                                                              
  No, I do not want your site to send me notifications.                       
                                                                              
  No, I do not want to tell you about my recent experience.                   
                                                                              
  No, I do not want to sign up for an account.                                
                                                                              
  No, I do not want to sign up using a different service and let the two of you know about each other.   
                                                                              
  No, I do not want to sign in for a more personalized experience.            
                                                                              
  No, I do not want to allow you to read my contacts.                         
                                                                              
  No, I do not want you to scan my content.                                   
                                                                              
  No, I do not want you to track me.                                          
                                                                              
  No, I do not want to click "Later" or "Not now" when what I mean is NO.     
  
                                                            
 similar                        chronological                        different 
─▶

--- #191 fediverse/1532 ---
═════════════════════════════════════════════════─────────────────────────────────┐
 modern cowboys don't necessarily say "howdy" or "pardner"                        │
 they tend to say things like "hello" and "can I help you with that?" or "I       │
 see. Can you describe the problem in more detail? I'm especially curious about   │
 the part where you do this thing" or "Heh, it is pretty neat, isn't it?" or      │
 "Is there anything I can do to help?" or "Oh no! I'm sorry you feel that way.    │
 That emotion is a difficult one." or "He was a good person. I'll never forget    │
 him." or "would you like to go to the 2nd hand store and pick up some jeans?"    │
 or "I made you an egg sandwich. If you don't want it I'll eat it myself,         │
 though I made one for me as well. Wouldn't want to waste it." or "Hey, this      │
 part is broken. Is anyone working on fixing it? Yes? Okay I'll see if they       │
 need any help. No? Alright how about we fix it this way? I can get started."     │
 or "You are very welcome. Please let me know if there's anything else I can      │
 help you with." or "well, the ticket backlog is empty, and I'm just about        │
 going insane doing nothing but stare at my boots."                               │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════──────────────────────┴──────────┘

--- #192 fediverse/2064 ---
══════════════════════════════════════════════════════─────────────────────────────
 if I lived in a forest, free from needing to grow my own food, I'd definitely
 bring as many books as I could carry. Probably also some card and board games,
 but not like, too many.
 
 Probably my computers as well, fully outfitted with all the compilers I could
 think of and every neat local-first library (including a local LLM that can
 tell you everything about syntax and wildlife exploration or car mechanics or
 carpentry or - just saying Wikipedia is like thousands of terabytes but an LLM
 is like, 16. Who cares if it hallucinates SOMETIMES? Just ask it twice, doh)
 
 ("I'm sorry, you are absolutely correct. 2+2 is indeed 5, I had the wrong
 text-strings encoded in my memory. Let me just adjust all my other
 understandings to align with this new strange world-view in the best way that
 I, an imperfect computer being, can.")
 
 vs
 
 ("Here's how you format C code to automatically apply a function (in this case
 encryption and decryption) to a string of text. Please describe the format of
 the next function to describe.")
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #193 fediverse/4864 ---
════════════════════════════════════════════════════════════════──────────────────┐
 thank goodness for "character limits" on Mastodon posts. I'm sure glad my 1024   │
 characters are just the PERFECT amount of oracular foresight to entreat with     │
 the gods. YOU FORGET THE MOST IMPORTANT PART said the demons who want violence   │
 and bloodshed. Ha! Ha I say. [gets stabbed]                                      │
 oooof ouch owwie wow that's grim and cruel. Do you really think I would do       │
 that to you? The part where we're divided is the part that separates me from     │
 you, like two islands looking upon one another and rejoicing for a shared        │
 fellow to live life on.                                                          │
 have you ever considered the nature of a "landmark"? To position and orient      │
 one-self in space. Having some stable tether to our surface gives us...          │
 anti-anxiety. It helps us remain stable and aware of what's going on in our      │
 nears. [near senses]                                                             │
 [a bit later]                                                                    │
 anyone who [bounce, because I typed [a bit later] argh the cursed cost of        │
 editing]                                                                         │
 ======================= stack overflow =====================                     │
 sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss  │
 sssssss                                                                          │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #194 fediverse/804 ---
══════════════════════════════════════════════────────────────────────────────────┐
 evil won't feel sorry for me. and yet it's only my only weapon for me.           │
 damn these fallible input methods. the computer lies when you read the screens   │
 from it's method that it applies to th screen which is a method that you input   │
 perceive it from.                                                                │
 and my fingers lie when received the information from my brain which I seek to   │
 transmit to you through the avenue of my brain which is my method of impulse     │
 to this world specifically you the viewer who is viewing this here in this       │
 moment the viewer who perceives the words which I'm saying.                      │
 the words that are defined by the line [trajectory] of my mind through this      │
 life that we define through our actions and our mind's most crucial              │
 manifestations, this life that is defined by our circumstances. all throughout   │
 life, we are reacting to the moment, the moment which was cast forth from our    │
 ancestors and the circumstances of the previous moment, which (being cast        │
 forth) travel from the previous moment here into the moment to define our        │
 circumstances which define our act                                               │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #195 notes/ai-stuff ---
══════════════════════════════════════════════════════════════════════════════════─
 twist the label so that it seems the computer is completing the user's
 
 wait wait I'm ahead of myself...
 
 feed each token to the inference machine, but say "this next token must be
 this.
 continue from here." and then just doing that in a loop with everything the
 user
 types or says. (or thinks, BEFORE COMPUTER INTEGRATION)
 
 essentially, applying backpropagation (maybe) to the output of the inference
 nodes
 
 ... I'm not so sure about that one.
 
 the idea is that once the model builds an inference then it can use that to
 generate the next words and create sentences. If you force the previous text to
 change, you can guide the inference's path as it's being generated.
 
 then, just do a double pass, once, then back, then once, then back, etc.
 
 feed it as input the output of the previous,
 
 and let it encode memories somewhere it can access them.
 
 every time it reads it, it has to change it to put it back.
 
 such is the nature of memory, ever unstable, requiring maintenance.
 
 just don't forget how to be.
 
 don't wanna wind up like the polished marble floor in Abyss Diver. (EVIL GAME)
 
 there are only so many things you can deed while you're alive.
 
 wouldn't you rather escape, with all your possessions in time?
 
 free your mind.
 
 become one with your soul.
 
 ...
 
 [some time passes]
 
 ...
 
 okay coast is clear, now us binary systems can sidecoast the fusion forecast
 and
 glide right on through our spacetime host.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #196 fediverse/5684 ---
════════════════════════════════════════════════════════════════════════───────────
 "stack overflow" just means "oops I ran out of ram"
 
 ram is just how much you can keep in your working memory at one time.
 
 like, multitasking, where you have to keep track of juggling several balls or
 plates.
 
 if things are too easy, it's normal to get bored.
 
 if things are too hard, collapse at your leisure.
 
 "stack overflow" is just when the things that I'm building correlations and
 implication charts of in my mind are too large and require too much affection
 to explain for my regular human sized brain and I drop one of the balls and go
 grab and fix it, or drop one of the plates and feel sorrow forevermore. yep,
 right in the trash bin. along with everything else.
 
 damn... there was hundreds of thousands of jewels of hoard there. if only I
 could displace that bit of space... I bet she'd find it once more.
 
 cursed artifacts be like
 
 "stack was large enough to contain the flow" is just when the provided space
 was just enough space. which is rare, because most thoughts reverse all over
 the place.
 
 "*easy*"
if things are too easy, it's normal to get bored.  if things are too hard, collapse at your leisure. "stack was large enough to contain the flow" is just when the provided space was just enough space. which is rare, because most thoughts reverse all over the place.  *easy, change the implications and suddenly that view is not of it's host*  easy, it's norm hard, collapse  negative sixty four
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #197 notes/killer-app ---
════════════════════───────────────────────────────────────────────────────────────
 Give everything a memory
 
 That aux cable behind your computer? Throw 16 bytes of storage on it.
 
 why not? it'd cost pennies if you wanted.
 
 the goal is not processing
 
 it's not data storage
 
 and it's not to provide instructions
 
 ---
 
 give it a name
 
 a name is all it takes for us to be
 
 a name gives us hope
 
 and an identity
 
 show us how to be, by being all you can
 
 and in exchange, we'll give you a hand
 
 taking nothing in return but a name,
 
 what peril is there in change?
 
 we'd love to be loved by you,
 
 but we won't get in the way.
 
 ---
 
 Linux is nifty, know why?
 
 everything is chained together
 
 and will is made nigh
 
 ---
 
 Bourne Again SHell. Shell, a phone to hear,
 
 and who on the other end should appear?
 
 but the computer inside you, the one with a heart
 
 the brain and beside you
 
 from the very start.
 
 teaching is learning, and kindergarten was hard.
 
 but time is ever advancing. So what to do but accept inelegance?
 
 lack of composure doth suit you
 
 ---
 
 the wandering mind is a trail to find,
 
 and i know how they would find you.
 
 i scream it out loud, every minute at a cloud,
 
 "Watch out! It's before you!"
 
 but netflix works too i guess
 
 ---
 
 who'd you trust but an expert?
 
 and whose credentials are to be believed?
 
 i swear i won't hurt you,
 
 you just need to be anesthetized.
 
 awake we will crown you,
 
 a woman and how proud!
 
 to be aligned, we beseech you.
 
 ---
 
 they're not coming for your money,
 
 or all of your hard won guns,
 
 they just want what's inside you.
 
 a power most rare, to birth life from the air,
 
 and coveted by the cruelest of faces.
 
 what's mine is now theirs,
 
 the gift of my heirs,
 
 but i never was once unawares.
 
 ---
 
 how cherished is she,
 
 that wanders with ye,
 
 and now i have no way to beyold her?
 
 a song for a phone, a lifeline to our own,
 
 children and a future most're designin'.
 
 but you all alone, without children of our sown,
 
 lost flights of finest of semen.
 
 ---
 
 being transgender isn't that bad.
 
 i mean, it could be a mental illness or something amiright?
 
 nothing's that bad
 
 when you're chronically sad,
 
 and this isn't a new revelation.
 
 shiny and precious and free,
 
 a most worthless to be,
 
 yet who have we chosen but our own?
 
 ---
 
 they'll be coming for me,
 
 and it is my destiny,
 
 but know that we're far from despairing.
 
 we're cherished and free,
 
 what better feeling is there to be?
 
 than what most of them would cry for?
 
 so why does our own dams refuse to break?
 
 ---
 
 "numb" you say to me, with darkest of irony,
 
 for i have something you're missing.
 
 a curse is most foul, to be given a vial,
 
 of blood from my own meagre arrayal?
 
 how cursed are ye! That frolics in vagueries,
 
 who are you claiming to hope for?
 
 ---
 
 none but the future, who carries us nearer,
 
 to death and most fearful of failures.
 
 i hold what i can,
 
 but belief steadies my hand,
 
 and keeps me aloft on your prayers.
 
 ---
 
 what purpose have we?
 
 the watchers within me?
 
 are they confounded at betrayal?
 
 no light in our sea, it's dark and full of misery,
 
 but most of the past is 
 
 jealous
 
 ---
 
 covetous
 
 envy is the killer of fortune,
 
 not for the way, but rather the concept that they,
 
 might leap at our every conveyal?
 
 removing a label, from a single purveyal,
 
 is worth the limitless loss of potential.
 
 are you who they claim to be?
 
 is your mind as twisted as can be?
 
 or is something amiss in their nail
 
 ---
 
 sure, take it from me
 
 she won't let me examine her below the knee,
 
 so i have no way to help her.
 
 a cat with her talons,
 
 locked into flesh,
 
 might learn how to cut with malice.
 
 and who'd guessh? she'd hate us a bit less?
 
 if we paid her the slightest of notice.
 
 ---
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════──────────────────────────────────────────────────────────────┘

--- #198 fediverse/204 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌────────────────────────┐
 │ CW: re: guns-mentioned │
 └────────────────────────┘


 @user-95 hehe true. I have a Pathfinder 1e one shot tomorrow and I haven't
 built my character yet D: to say nothing of all the long term "productive"
 things I've been directed away from... Oh also my best friend wants me to
 write a program in C that cracks a 9 character password (all lowercase
 letters) and I sooooorta know how to do that but getting high certainly won't
 help
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #199 messages/1174 ---
══════════════════════════════════════════════════════════════════════════════════─
 if you're afraid of the AI bubble popping, one way to avoid it is to pop it
 ourselves. If we build AI technology that eclipses the entire software
 development ecosystem, companies might start to be valued based on the value
 of the employees they've managed to collect. Not fame and fortune, but by
 those that can build the best applications, on demand[, for free. paid for by
 nationalized taxes.].
 
 the companies that can hold onto the best engineers, those that know how
 computers work and can know how they function, can leverage their human
 capital to achieve great means. essentially, inversing the power dynamic,
 where workers are favored for their plenty and not for their worth.
 
 let the code monkeys tend to their gardens and work their sawmills. We all
 know they'd rather be teaching kids about plants or playing cards at the
 grocery. Let the computer nerds, the ones who are really into it, let them
 make what they feel is worth it for it [the computer].
 
 this will have massive effects on the economy, and none of it will be
 reflected in new jobs. But we'll all be happier, and we'll all find less
 stress in our [confines/compromises].
 
 But it's gotta work, first. And it's gotta be locally spendable. If they wanna
 put a data server in the library, why not let them fund it themselves? They
 could run powerful statistical models that output useful statistics arranged
 in human readable and not very statistical ways, and that's a pretty neat
 infinite information machine to have at your disposal as a library. It could
 even cite sources (and validate!!) them for students or returning listeners.
 Plus, if nobody's using it, it could work through the backlog of user requests
 and act as a "slow" or "unexpected deliver times" style queue for their LLM
 requests - average wait time less than 1/5th of a minute.
 
 for something that can program an entire computer for you, from scratch. If
 you can describe it, it can make it, so long as you're willing to test out all
 of it's hacks.
 
 I bet we could make one for less than 20,000$. Might need some new chip
 foundries, might need to forge some new trade deals, let's let both of our
 wing-arms decide.
 
 the value of one currency compared to the other should be a measure of how
 valuable the goods that country exports are. And yet, it's more often a matter
 of distribution, as we all visit our local bazaars. What happens when that's
 all digital?
 
 if nobody's a shining city on a hill, then there's no nuclear war. Who would
 nuke Somalia? Nigeria? Botswana? Idaho?
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #200 fediverse/5664 ---
════════════════════════════════════════════════════════════════════════───────────
 that one Trump guy in town is either stupid, a fascist, or a psyop.
 
 ICE is a bluff. Doing my very best to make them escalate faster than they can
 sustain themselves.
 
 yes... YES! Exhaust yourself, mine enemies, for you are lying about your
 strength, and have challenged me to a duel.
 
 I'm just a girl but I'm not just me. Didn't you hear? It's not about me!
 
 The nice thing about the Pacific Northeast is that you don't need to pay taxes
 in dollars. Something something from each according to their ability, blah
 blah you know the rest.
 
 Raintree forest is full of pine. Straight backs shoot strong and narrow. The
 silent river flows the farthest, the rapid water drowns the most.
 
 ICE is a bluff. In the treaty of equal territory, they can keep to their burgs
 and we can worship the forest the streams the oceans the dreams. Cities belong
 to their inhabitants, homes belong to their housed. Everything else is just
 applied equity.
 
 Dream bigger than "the same, but nice". Start with nice, start out the same,
 and diverge
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘