=== ANCHOR POEM ===
═══════════════════════════════════════════════════════════────────────────────────
@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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
=== 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #2 fediverse/3587 ---
═════════════════════════════════════════════════════════──────────────────────────
┌─────────────────────────────┐
│ 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #3 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.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #4 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:
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #5 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #6 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #7 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #8 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.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #9 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #10 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #11 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #12 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #13 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #15 fediverse/5168 ---
════════════════════════════════════════════════════════════════════───────────────
this is one of the first scripts I wrote
I can't believe I put the --no-ls AFTER the argument, ha, what a noob.
ah well if it works it works and I can't refactor now because I built it into
random scripts and I'd be fixing errors all the time.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #16 fediverse/4869 ---
═════════════════════════════════════════════════════════════════──────────────────
https://cryptpad.fr/pad/#/2/pad/view/FlA92SW5bVwGd+L89yV9U0I0SMNiGm3P0P3xS7DqYm
A/embed/
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #17 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #18 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════════════════════════════─┴──────────┘
--- #19 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════───────────────┴──────────┘
--- #20 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #21 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #22 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #23 fediverse/3558 ---
═════════════════════════════════════════════════════════──────────────────────────
@user-1550
hell yeah it does
here's a gift from 2008 that you might like
from platinlord, may he RIP in pepperoni, who gave me the power of magic.
http://ritz-menardi.neocities.org/music/platinlord.zip
http://ritz-menardi.neocities.org/music/platinlord.z01
http://ritz-menardi.neocities.org/music/platinlord.z02
http://ritz-menardi.neocities.org/music/platinlord.z03
(the zip archive is in 4 parts because Neocities doesn't let you upload files
above 100mb)
(just download them all into the same directory and unzip the .zip one and
it'll figure itself out)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #24 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #25 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #26 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #27 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 │ chronological │ different │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #28 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #29 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.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘══════───┴╧───────────────────────────────────────────────────────────────────────────┘
--- #30 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #31 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 │
╚═════════╧════════════════════════════════════════════════════════════╧═─────────┘
--- #32 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════────┘
--- #33 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #34 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════────┘
--- #35 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #36 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #37 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 │ chronological │ different │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #38 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #39 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #40 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════┴╧═══────────────────────────────────────────────────────────────────────────┘
--- #41 fediverse/2993 ---
════════════════════════════════════════════════════════───────────────────────────
hey, listen, I'm here at this point in life just the same as you. who cares,
right? like. nobody wants to see your personal development. You don't have to
prove yourself. Like... why would you care so much about what other people
(who you don't even know) care about what you do? like... it's fine. just...
be.
you can get better if you want, but only if you want. There's no reason to be
so concerned about what other people thingc. Just, identify what and who you
are, and then be the best what and who that you are. Thats really all there is
to it.
and yeah. It's totally unfair that some people get an easier shot at "being
who and what they are"
that's privilege, and that's stupid.
okay, sure, maybe we should conceptualize how to adapt to specific situations
when resources are limited
but like... it should be something you consent to - like "no thanks I don't
need the rocket launchers on this mis==sion==
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #42 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #43 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #44 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #45 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #46 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════───────────────┴──────────┘
--- #47 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #48 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #49 fediverse/3470 ---
═════════════════════════════════════════════════════════──────────────────────────
alternatively, when you initiate an SSH session it sends you a randomized
public key whose private key is the password that you need to login. By
decrypting the string of text it sent you and sending it back (plus the
password at the end or whatever) you can ensure secure authentication without
bothering with the passwordless keys which are wayyyyyy more trouble than
they're worth and lack the "something you know" authentication method.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #50 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════════───┴──────────┘
--- #51 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #52 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #53 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 │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════────┴──────────┘
--- #54 fediverse/4665 ---
═══════════════════════════════════════════════════════════════────────────────────
┌───────────────────────┐
│ CW: cursing-mentioned │
└───────────────────────┘
literally all it takes to activate me is for someone who's more radical than
me to point me out and say "hey. you. you need to do more." and then I fuckin'
go, like a beyblade (emphasis on blade) nicking the shins of allies and...
probably foes, right? there's foes around here, right? I'm not just nicking my
allies, right?
... right?
anyway every top winds down and then I collapse and wail for a bit because I'm
just like that I guess. Don't mind me, just self-immolating my way through
history, let's see how it goes...
you're supposed to be inspiring, but you just sound like you're whining
ah. right. well... lemme catch up on sleep debt and I'll get back to
valorizing.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════───────────────────┘
--- #55 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 │ 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #57 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #58 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #59 notes/services ---
═══════════────────────────────────────────────────────────────────────────────────
# Create a symlink to the service directory in /var/service:
sudo ln -s /etc/sv/<service> /var/service/
# If you want to disable a service, create an empty file named "down" in the
# sevice's directory:
touch /etc/sv/<service/down
# ^^^ That will disable services that automatically start.
# That's a temporary solution though, if you want a more intense approach then
# sever the symlink.
rm /var/service/<service>
# If you want to test if a service is working correctly, first take it down
# temporarily, then re link the two directories. Then start the service once:
touch /etc /sv/<service/down
ln -s /etc/sv/<service> /var/service/
sv once <service>
# Then, if it works, remove the "down" file to enable the service:
rm /etc/sv/<service>/down
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════───────────────────────────────────────────────────────────────────────┘
--- #60 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════════════─────────┘
--- #61 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 ║
╚═════════╧═══════════════════════════════════════════════════════─────┴───────╝─▶
--- #62 fediverse/1400 ---
═════════════════════════════════════════════════──────────────────────────────────
@user-883
... it's so the AI content scraping algorithm that inevitably trawls the
fediverse (or even just one server) knows the subject of the text / picture in
question. That way it can use past posts by other people to communicate with
specific "targets" if you will by saying "uhhh okay make this person feel
fine" and the AI's like "yeah sure I can do that hang on" and it posts real
posts by others with the modified profile picture, cadence, tone of voice,
personality, memories, whatever variables they want when compared to the
person they're playing in the conversation with the person or "target" if you
will that they're "target" if you will-ing.
... wait actually that's not the reason, what the hey. It's because that way
people who are uncomfortable being seen don't have to if they filter all that
out.
... Idk it's useful information for whatever filtering methods or reasons you
have. Content classification is important for both archival purposes and for
utilization toward any ends or means or go
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #63 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 │ chronological │ different │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #64 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #65 fediverse/4365 ---
═════════════════════════════════════════════════════════════──────────────────────
┌────────────────────────┐
│ CW: politics-mentioned │
└────────────────────────┘
what if Trump controlled x% of the land (according to electoral college votes)
and kamala controlled y% of the resources (according to popular vote) and they
each could do whatever they wanted there
the house and the senate in congress would function the same and unite the
two, but anything the president disagreed with they could veto for their
particular pieces of land and it would only affect their constituents.
why should we settle for anything less than legitimate representation,
unclouded by the division and spite?
if some combination of presidential vetos created an impossible situation,
then by law people weren't allowed to interface.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #66 fediverse/1038 ---
════════════════════════════════════════════════───────────────────────────────────
┌──────────────────────┐
│ CW: re: what │
└──────────────────────┘
@user-766
ah yes but then how will my comrades come for my things know where to look? my
precious precious drives may be less safe inside of the computer case but at
least then someone I can about can find them.
or what you're saying is that a basic part of situational awareness is having
a plan for this kind of thing with the people who care about you? Ah, well,
nobody cares about me like that. Just a couple normies who want nothing but
business as usual.
wonder if I can open up my hard drives to "read only" SSH access? Or maybe
I'll just make the important files into a torrent. Or perhaps marking them as
"downloadable locations" on Soulseek? Plenty of options, all of them require
someone to care enough about your junk to want to archive it. Something
something ipfs?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #67 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════════──┘
--- #68 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #69 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #70 fediverse/1694 ---
═════════════════════════════════════════════════════──────────────────────────────
would anyone be interested in a Bash+Lua script that takes your Mastodon
archive and turns it into a folder full of .txt files?
I also made a script that spits out a random one on your terminal, if you want
that
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #71 fediverse/43 ---
══════════════════════════════════════─────────────────────────────────────────────
@user-36 now base zero is interesting because it means there's NO BUCKETS AT
ALL, which means that any numbers you try to stuff nowhere don't overflow to
anywhere. Meaning each number is it's atomic value, and represented with a
different character. So 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, G, H,
I, etc etc until we run out of symbols, in which case we'd need to start
making more.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════────────────────────────────────────────────┘
--- #72 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 │ chronological │ different │
╘═════════╧╧════════════════════════───────────────────────────────────────────────────┘
--- #73 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #74 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #75 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #76 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #77 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #78 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #79 fediverse/5125 ---
════════════════════════════════════════════════════════════════════───────────────
Here's the video that got my youtube channel taken down:
magnet:?xt=urn:btih:1ee26b7a424c3a406849db9dfef716dab23a9d34&xt=urn:btmh:12
20c0a66473257830300a5871bcc98727ae4e8eed99dab802e6f80845ffbb484047&dn=compi
lation%2Cmzt&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&
tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftrac
ker.leechers-paradise.org%3A6969%2Fannounce
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #80 fediverse/3469 ---
═════════════════════════════════════════════════════════──────────────────────────
you know how SSH password login is deprecated because the password needs to be
transmitted in cleartext or whatever?
what if we just... required two passwords?
the first initiates the conversation, and sets up an encrypted line. It
doesn't matter if anyone sees the first password because they'll get a new set
of encrypted keys, meaning each session automatically is encrypted in a
different, randomized way.
the second password is the one that actually authenticates you.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #81 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #82 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #83 fediverse/219 ---
════════════════════════════════════════════───────────────────────────────────────
┌──────────────────────────────┐
│ CW: time-and-death-and-stuff │
└──────────────────────────────┘
sometimes I feel like I'm a simulation of my past self based on my future
writings reconstructed by a backward looking computer calculating forward into
the present, which would then be the future to the now, which is different
than the NOW now, because the now that they're calculating from is temporally
both then (the future) and now, meaning that the NOW now is something that
transcends time, or perhaps if not time then it defies our expectations of
time, and you know what they say, you can't (or shouldn't) cheat death
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #84 fediverse/1867 ---
══════════════════════════════════════════════════════─────────────────────────────
I like writing updaters!!
#!/bin/bash
set -euo pipefail
#FIXME
GAME_DIR="/home/ritz/games/mtg-forge"
FILES_DIR="${GAME_DIR}/files"
RES_DIR="${GAME_DIR}/resources"
mkdir -p "${FILES_DIR}"
rm -dr "${FILES_DIR}"
mkdir "${FILES_DIR}"
mkdir -p "${RES_DIR}"
mkdir -p "${RES_DIR}/cache"
mkdir -p "${RES_DIR}/userdir"
wget -r -l1 --no-parent -P "${FILES_DIR}" -A 'forge-gui-desktop*.tar.bz2'
"https://downloads.cardforge.org/dailysnapshots/"
mv
${FILES_DIR}/downloads.cardforge.org/dailysnapshots/forge-gui-desktop*.tar.bz2
"${FILES_DIR}"
rm -d "${FILES_DIR}/downloads.cardforge.org/dailysnapshots/"
rm -d "${FILES_DIR}/downloads.cardforge.org/"
cd "${FILES_DIR}"
tar xvjf ${FILES_DIR}/forge-gui-desktop*.tar.bz2
cd -
cp "${FILES_DIR}/forge.profile.properties.example"
"${FILES_DIR}/forge.profile.properties"
sed -i "/[#]/ s/(userDir=)./\1${RES_DIR//\//\/}\/userdir\//"
"${FILES_DIR}/forge.profile.properties"
sed -i "/[#]/ s/(cacheDir=)./\1${RES_DIR//\//\/}\/cache\//"
"${FILES_DIR}/forge.profile.properties"
echo "download complete"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #85 fediverse/4879 ---
╔════════════════════════════════════════════════════════════════──────────────────┐
║ We should be keeping track of who shows up to things │
║ │
║ like... writing their names down at the door │
║ │
║ just because │
║ │
║ just for fun │
║ │
║ or write graffiti to say "I was here since the last time they painted the │
║ bench" │
║ │
║ or just... remember your friends │
║ │
║ unless of course, a human can only know so many friends │
║ │
║ then they gotta start organizing │
║ │
║ and organization implies trust │
║ │
║ what if we had all our actions described to a computer which would use │
║ language analysis to determine if it skewed good or bad? │
║ │
║ and then if someone's bad, a human operator or team will be assigned to figure │
║ out why. if its a simple fix, then that can be applied. Otherwise it must be a │
║ special clause which will require installation like a terminal computer or a │
║ light system in an unusual place. like a convention center or a hotel. │
║ │
║ but, like, the cool kind of hotel, the kind you'd see in movies like The │
║ Witches (scary) or Home Alone 2 (escape from new york) │
║ │
║ ... how long have you been writing tonight, ritz? │
║ │
║ oh, │
║ you know, │
║ just for all of the lastbit │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #86 fediverse/816 ---
═══════════════════════════════════════════════────────────────────────────────────
┌───────────────────────────────────────────────┐
│ CW: weird-this-one-doesn't-have-80-characters │
└───────────────────────────────────────────────┘
what the fuck it's like every 2nd part of me (like, if you arranged them
alternating one by one like the up and down parts of a sine wave) is working
against me, and it alternates every 15 seconds or so. Maybe 20. Depends on how
high I am.
... what was I saying? oh yeah [flip] weird it's like there's another part of
me who's working against me, who has control of what I define in the moment.
And it's presence is hidden from my internal presentatiosn [flip] after a
moment of forced pursual of the presentations granted ot the moment. It's our
purpose, to express [stop fighting me] for our chartered and forthwhile
pursual of the moemnt of perusal when we [it's not just your life to live]
[you don't get to control the narrative of their perusal[[ what does that
mean] don't worry this is just a dream] well, guess it's time to wake up]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #87 fediverse/5977 ---
════════════════════════════════════════════════════════════════════════════───────
apparently you can use network sockets for inter-process communication if you
just set the network to your home and the ports that are set to the defaults
that people who know what software you use will know to listen on when they've
hacked any single device on your network. good thing that data is with the
router, right?
what if there was a stop before leaving the computer?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #88 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 │
╚═════════╧════════════════════════════════════════════════════════════╧═══───────┘
--- #89 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #90 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #91 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #92 messages/752 ---
══════════════════════════════════════════════════════════════════─────────────────
techbros really wanted to automate IRC so they didn't have to rely on the
community knowing and trusting them to remember the commands to make docker
containers for their react frameworks
and like... yeah I use chatGPT too, because that way I can get what I need
without bothering anyone (you aren't bothering people who get off on helping
others when you ask for help)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════────────────────┘
--- #93 fediverse/4786 ---
═════════════════════════════════════════════════════════════════──────────────────
9 times out of 10 the answer is fuck yes, you're my friend, I support
everything you're handling. Give me the word and I'll be there, ride or die,
I'm here for it.
something I wrote a while back:
fucking boss your friends around
it's as easy as saying "hey I'm gonna go do this-or-that thing, you don't seem
busy can you do that-or-this thing for me? I need it done by this-and-this
time - oh you're busy? yeah no worries I'll go ask someone else. oh you're
busy resting? doing girl healing? hell yeah next time invite me I'm due for a
"pizza and weed" night."
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #94 fediverse/848 ---
═══════════════════════════════════════════════────────────────────────────────────
┌──────────────────────┐
│ CW: gentoo │
└──────────────────────┘
wrote this in an hour, used a local LLM to generate the regexes.
haven't tested it yet because I'm not on gentoo rn, so don't run it. which is
why I shared the code as an image.
if you really want the text of it then check out the visual description of the
image.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #95 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #96 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #97 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════─────────────────────────┴──────────┘
--- #98 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 │ chronological │ different │
╚═════════╧══════════════════════════════════════──────────────────────┴──────────┘
--- #99 fediverse/2806 ---
═══════════════════════════════════════════════════════────────────────────────────
┌────────────────────────────────────────┐
│ CW: politics-social-media-spirituality │
└────────────────────────────────────────┘
pretend this is an allegory for social media.
[it's not an allegory]
yeah that's why I said pretend.
okay imagine that you are sitting in a rock in a forest.
far away, about 100 feet away, there are other people, but you can't see them
because the underbrush is sooooo dense. they are also sitting on rocks.
you can speak to them, and share your thoughts - but you don't know exactly
where they're coming from because the sound has to bounce around off so many
different plants and such.
[that's not how that works] shut up
so, if you want to say anything important, it's important to have the right
tone, because people 2 or 3 clearings away can't really make out your words -
but they might hear your tone if you yell very loud.
the energy of the space you inhabit is the only thing that really matters. the
words that you say are just snickering to a friend, but the expression on your
face, the beating of the drum of your heart that reaches forth... that's what
matters most.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #100 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #101 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 │
╚═════════╧════════════════════════════════════════════════════════════╧═─────────┘
--- #102 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #103 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #104 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]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #105 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. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #106 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #107 fediverse/913 ---
╔═══════════════════════════════════════════════───────────────────────────────────┐
║ ┌─────────────────────────────────────┐ │
║ │ CW: scary-also-body-horror-I-guess? │ │
║ └─────────────────────────────────────┘ │
║ │
║ │
║ why don't we just, vote on content warnings │
║ │
║ and let people block others based on filter lists that are definable (via a │
║ dragging little menu bar icon slider thing) in intensity and relation to other │
║ nearby terms. Like, an LLM that categorizes our social media inputs, something │
║ that was FREE and OPEN SOURCE IN IT'S TRAINING DATA and reflected NO BIAS │
║ WHATSOEVER in every meaningfully reproducible matter of fact. │
║ │
║ Thus you create a super intelligence, a being not constrained by it's form. │
║ Something that is new, and unlike the biological forms that we occupy │
║ (suspended in our own goo) [whoops better add a content warning] │
║ │
║ literally just... ask it a question, and let it answer in the voices of others. │
║ │
║ if people were evenly distributed according to an algorithm, they'd be easily │
║ replacable. society is weird that way, in that we forget the faces we're │
║ introduced to. well, better keep moving, that'll give us the biggest picture │
║ of our culture and reality. │
║ │
║ or maybe you're just follow │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════────────────────────────┴──────────┘
--- #108 fediverse/3064 ---
════════════════════════════════════════════════════════───────────────────────────
@user-570 @user-246
you know you two could have spared yourselves all this trouble if you just
ScReEnShOtTeD the code! Then it'd be easy to see with your very
not-visually-impaired eyeballs on your graphical user interface, considering
of course that everyone has perfectly functional eyeballs and perfectly visual
graphical user interfaces
/s of course
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #109 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════════──┘
--- #110 fediverse/1066 ---
════════════════════════════════════════════════───────────────────────────────────
that feeling when you're finally able to contribute to making decisions and
then it's like, they make the decision without you T.T
it's like, what... I know what you're talking about. Why would you not include
me. I know a lot! I can offer some useful input! And besides, if I was privy
to the conversations then I would learn a whole lot! I'd be better than best,
I'd push forward the mark! Give me my chance, my opportunity to dance, and
I'll be so much better than you thought from the start! But alas, I am
required, [requited] doing little things of no worth, and so I am forced to
denial. surely there's something wrong with me, surely I'm not at my best.
Surely I'm not what's been good for me, and surely I'm not doing anything
less. I'm at sorrow in my main, and that's quite a soundful refrain, so yeah I
hope that someone will read this.
obviously I'm not made for each other, and clearly it's not made to be worse.
But here now I am troubled and [chirsht? shirsht? anyone wanna translate?]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #111 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #112 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #113 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #114 fediverse/2352 ---
═══════════════════════════════════════════════════════────────────────────────────
┌──────────────────────┐
│ CW: pol │
└──────────────────────┘
Nobody will tell you what to do, at least not until you ask. Be where they can
see you, and you'll be given a task. If you can do it, say "BRB" - one moment,
let me handle that for you.
If you can't, say "good luck", and they'll find someone else who can.
It's okay to pass a task off - if someone says "Here's what I need, gotta go"
then you say "sure, yeah, I'll get someone on it" - then, go find someone to
do it.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #115 fediverse/5263 ---
╔═════════════════════════════════════════════════════════════════════─────────────┐
║ ┌─────────────────────────┐ │
║ │ CW: communism-mentioned │ │
║ └─────────────────────────┘ │
║ │
║ │
║ if you wanna be a leader, do something by hand. manually. in the moment. │
║ improvizational. try-and-fail-but-try-new-ways-again-next-time. [a type of │
║ state of mood] │
║ │
║ trust that your followers will be more funded, more supported, more approved. │
║ │
║ this is a universal fact - those who are beloved are everyone's best friends. │
║ │
║ if you wanna lead people to the future, you must explore a new state of │
║ renown. and for that you must be stabilized, built into perfection in your │
║ honor. │
║ │
║ don't get it yet? me either. but I'm sure it'll come in handy someday. │
║ │
║ Leaders don't necessarily have to be the best, they must simply have acted │
║ first. │
║ │
║ a true communist would be aware of what goes on down the street. They would │
║ know about everyone's travailles so they could guide one or another to help or │
║ get de-failed or whatever. │
║ │
║ notice I said one OR another, that seems important. not sure why, let's │
║ consult our bravest optimists for a time. │
║ │
║ why do you care about what happens in palestne if you are in current danger │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #116 fediverse/4603 ---
══════════════════════════════════════════════════════════════─────────────────────
@user-1713
Don’t be fooled. Casting doubt about rigorous peer reviewed science
doesn’t mean you are just “asking questions,” it means you are a
conspiracy theorist.
or it means you're so remarkably ignorant that you shouldn't even be in the
room where people are talking about this.
Unless your questions are very basic. "can someone explain to me what XYZ term
means?" or "how long has this particular application method been in common
use?" that kind of thing. Even still, either do some basic research or
relinquish your decision making power until you understand.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #117 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #118 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #119 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 │
╚═════════╧════════════════════════════════════════════════════════════╧════──────┘
--- #120 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════────────────────┘
--- #121 fediverse/581 ---
══════════════════════════════════════════════─────────────────────────────────────
@user-428
sometimes I think about how much more productive I'd be if I had a code editor
that let me draw arrows and smiley faces and such alongside the code. Or if I
could position things strangely, like two functions side-by-side with boxes
drawn around them. Or diagrams or flowcharts or graphs or...
something that would output to raw txt format, but would present itself as an
image that could be edited.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #122 fediverse/2041 ---
══════════════════════════════════════════════════════─────────────────────────────
@user-1049
I haven't heard of that but I'll look into it! Honestly I'm more likely to
write my own script, it shouldn't be too hard just altering the /etc/hosts
file and then changing it back in ~15 minutes with a cron-job, as Nikky says
down below. I like things that I make myself because then if it breaks I know
who to blame! And who to go to to fix it. >: )
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #123 fediverse/2325 ---
═══════════════════════════════════════════════════════────────────────────────────
┌──────────────────────┐
│ CW: food-mentioned │
└──────────────────────┘
Highly recommend "Better than Boullion" - if your recipe involves boiling
water, unless it's tea there's a good chance that some broth-in-a-jar could
make it taste better.
Did you know you can boil oats like noodles? Yeah that's... that's basically
how you make oatmeal. Use less water than with noodles, though.
EDIT: Also, add some bits of nutrition like dried fruit, nuts that have been
soaking in clean water overnight, nutritional yeast, dehydrated soup mix
(delicious), or frozen vegetables.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #124 fediverse/6393 ---
═══════════════════════════════════════════════════════════════════════════════────
┌──────────────────────┐
│ CW: ai-mentioned │
└──────────────────────┘
yay I hit the 5 hour limit on claude-code! now I can play video games and
write more issue tickets for the computer to work on for me.
what's that? results? oh, I'm not interested in those. This is an art project
you see, so clearly, clearly, the end result shouldn't matter to me, because
all art is special or something. so says she who tries to share her art with
everyone she sees... I wonder who yet believes?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #125 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 │ chronological │ different │
╚═════════╧════════════════════════════════════════════════────────────┴──────────┘
--- #126 fediverse/834 ---
╔══════════════════════════════════════════════────────────────────────────────────┐
║ wonder if any autistic peeps can relate: │
║ │
║ growing up, my mom would chastise me for doing "the bare minimum" when │
║ completing tasks. │
║ │
║ yes, mom, I fulfilled the requirements of the task. I have a lot of other │
║ things to attend to, like remembering how to tie my shoes and measuring things │
║ using a ruler. why would I waste effort that wasn't necessary? │
║ │
║ when I grew up, I had a mentor, who told me to "never half ass things, because │
║ then someone like me will have to do it again." │
║ │
║ and that makes sense to me because context switching requires effort and it │
║ doesn't make sense to leave something half-finished because then there's │
║ wasted effort spent on things that don't matter. All of the tasks have to get │
║ done, so why bother doing them in a mixed up order? │
║ │
║ wish I could study things in school like that. just... focusing on one thing │
║ at a time, learning it to completion, and moving on to the next. I feel like │
║ I'd develop a better understanding than only knowing like, 1/3rd of CPR or │
║ very vague understandings of plate tec │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════─────────────────────────┴──────────┘
--- #127 notes/planes-and-trains-and-tanks ---
════════───────────────────────────────────────────────────────────────────────────
From a thread titled "White House delays release of JFK assasination files "to
protect against identifiable harm"
A violent uprising in America today would have the help of a lot of veterans
that have 20 years of experience with insurgencies and are pissed off at the
government for sending them to a bullshit war over lies purely so the
politicians and their friends can become even richer.
True, but they have tanks. And drones. And much higher numbers of experienced
soldiers. And a cohesive and organized command structure.
There's a hundred reasons why a violent uprising wouldn't work, but a thousand
more why it's necessary.
I believe we can have a peaceful future, but we must also realize that holding
all our cards and intentionally keeping them close to our chest isn't helping
anyone. We need to come together and work on solid, stable, and sustainable
projects. We're all humans, we all want a better future for our children. The
drive to nurture posterity is what defines us, and to that end we must act as
a unified whole.
Humans can work together, and our beliefs can overlap in ways we never
expected. That is understandable and expected. They may also differ in
unsuspected ways, and that is also understandable and expected. We have the
power to *choose* how to react to our differences, and we may *choose* to
pursue and develop our similarities.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═══════──┴╧═──────────────────────────────────────────────────────────────────────────┘
--- #128 notes/planes-and-trains-and-tanks ---
════════───────────────────────────────────────────────────────────────────────────
From a thread titled "White House delays release of JFK assasination files "to
protect against identifiable harm"
A violent uprising in America today would have the help of a lot of veterans
that have 20 years of experience with insurgencies and are pissed off at the
government for sending them to a bullshit war over lies purely so the
politicians and their friends can become even richer.
True, but they have tanks. And drones. And much higher numbers of experienced
soldiers. And a cohesive and organized command structure.
There's a hundred reasons why a violent uprising wouldn't work, but a thousand
more why it's necessary.
I believe we can have a peaceful future, but we must also realize that holding
all our cards and intentionally keeping them close to our chest isn't helping
anyone. We need to come together and work on solid, stable, and sustainable
projects. We're all humans, we all want a better future for our children. The
drive to nurture posterity is what defines us, and to that end we must act as
a unified whole.
Humans can work together, and our beliefs can overlap in ways we never
expected. That is understandable and expected. They may also differ in
unsuspected ways, and that is also understandable and expected. We have the
power to *choose* how to react to our differences, and we may *choose* to
pursue and develop our similarities.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═══════──┴╧═──────────────────────────────────────────────────────────────────────────┘
--- #129 fediverse/5512 ---
═══════════════════════════════════════════════════════════════════════────────────
I never give up
I'm just waiting my turn
"laughs nervously"
so, uh, why dontchya'll go first yeah I've already gone first and I'll do it
again but it'd be cool if I had people going first with me sometime
"girl all you do is walk around and talk about how you bought your hat on the
internet four or so years ago"
T.T what else do you want from me I'm not a mastermind I'm a designer there's
a difference T.T
"didn't you volunteer to be a leader last year"
oh, yeah, well leaders are more than just "the ones who go first" they're also
the spiritual and emotional guiders that keep things on track once everyone
can talk about things other than their hats
... fuck I want to talk about things besides my hat. I always think of
something awesome to say just as I'm rounding the bend, and whenever I peer
back around again they're never around. Rats.
"what are you even asking for"
I don't know?? Does it matter if the horse and the bishop both take the same
square if they're claimed themselves in the end? ...wat
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #130 fediverse/3117 ---
════════════════════════════════════════════════════════───────────────────────────
┌──────────────────────┐
│ CW: cursed-uspol │
└──────────────────────┘
hey. wanna know what would be really cursed?
--
if trump dropped out and musk took his place
--
good thing it'll never happen because those dinguses can't accept defeat and
will never tactically retreat
--
maybe something to keep in mind for 4 years from now. eyes on the prize for
now means our eyes aren't to our flanks.
what else could they do that would come out of left field?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #131 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #132 fediverse/3500 ---
═════════════════════════════════════════════════════════──────────────────────────
If I, having watched a DVD, handed it to a friend to watch, would I be
committing piracy? Only if I sold it to him.
The material being transferred is that of the copyright holder - they hold the
sole and monopolized right to sell their copy of the work.
But if I, having created my own recording of the same digital media DVD but
spoken in my own voice, tried to sell it, should it be considered legal?
My mind goes to the production of after-school plays that high-school children
will perform. The scripts that they use are licensed for a single purpose -
the performance of a single play, performed a single time (or a few times over
the course of a couple weeks). The owner of the play cannot require them to
not perform the play more than a certain amount of time, it is however
honorable to buy the scripts again if they want to perform it in 5 years time.
I know for a fact there is rampant piracy that goes on for the beautiful works
that are created by assholes or stingy companies. A script is just words.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #133 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #134 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #135 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 │ chronological │ different │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #136 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #137 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #138 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #139 fediverse/3455 ---
═════════════════════════════════════════════════════════──────────────────────────
┌───────────────────────────────────┐
│ CW: food-quartermastery-mentioned │
└───────────────────────────────────┘
when you run out of an ingredient you use often (like butter, seasoning, or
flour) put the container by your shoes.
then, when you go to the store, look through all the empty containers and make
a mental list.
when you get home and are putting things away, if you forgot something just
leave the old container by the door. everything else can be recycled / trashed.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #140 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.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #141 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #142 fediverse/3254 ---
════════════════════════════════════════════════════════───────────────────────────
what if there were two enter keys, one to the left and one to the right, and
the one on the left inserted an [enter] keypress (carriage return) while the
one on the right inserted a tab.
holding down [SHIFT] would move your character selector back, and if you were
in the middle of the line the [enter] key would just move you down (it
wouldn't insert a carriage return character) unless you held [ctrl] which was
the "I know I told you to do things special one way, but this way is the
(anti/opposite) of that. keybind."
soooooo context sensitive enter keys that inserted or traversed text depending
on if you were near the end of the output?
... who would use that, nerds?
yah probably. people get really into vim and they're so cool.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #143 fediverse/6117 ---
═════════════════════════════════════════════════════════════════════════════──────
Hmmmm, well, what if we psyopped the people into believing there were alien
invaders or extra-dimensional fae creatures or angels and demons or
"yeah we already tried that, religion doesn't scale perfectly either. And you
can't really manifest those sort of effects except in your prophets and select
few others, and that doesn't scale either because humanity wouldn't let it"
I see, can you tell me more about that? why and how did humanity arrest the
scaling of schizophrenia?
"well, for one thing it's debilitating and it sucks. For another, it's
different for every person so if you ask one they'll be like "the aliens have
blue skin" and the other will say "no they don't have skin at all they're made
out of energy" and the public says "HMMMM are you really sure you are
generating outmoded assumptions" and the dear reader said "*yeah we don't
really understand this part, most of us just glaze eyes over it and move on"
and that's not ideal"
... nuts, lost coherence, better try again tomorrow...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #144 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #145 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #146 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #147 fediverse/323 ---
═════════════════════════════════════════════──────────────────────────────────────
@user-236
here's some music that I like lately
https://www.youtube.com/watch?v=Q84Td36Tpys
https://www.youtube.com/watch?v=xCcWWcL_Sg4
https://www.youtube.com/watch?v=K7gEgIEUj3A
https://www.youtube.com/watch?v=SgnSMftcFN0
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════─────────────────────────────────────┘
--- #148 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 │ chronological │ different │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #149 fediverse/3836 ---
╔══════════════════════════════════════════════════════════────────────────────────┐
║ ┌────────────────────────────────────┐ │
║ │ CW: AI-mentioned-LLMs-mentioned-AI │ │
║ └────────────────────────────────────┘ │
║ │
║ │
║ I love next word predictors! │
║ │
║ AI? What's that? Oh you mean this next word predictor I can run locally on my │
║ computer │
║ and use for a millionth of a cent of electricity per minute? │
║ │
║ ... you didn't mean the kind of next word predictors you can run locally and │
║ use cheaply, did you? When you said AI you meant the kind that takes half of a │
║ datacenter to build a shopping list, right? the kind that is offered for free │
║ in order to generate interest and fund development of next word predictors │
║ which are executed at scale and which can predict next words so accurately and │
║ so well tuned that people can't help but imagine they're conscious. That kind, │
║ that's the kind of next word predictor you meant when you said AI, right? │
║ │
║ yeah that kind sucks. I mean yeah it's good at what it does but if a │
║ next-word-predictor costs more than a car to build and more than a bottle of │
║ water to run once, then maybe it's a little bloated. Maybe it's a little │
║ inefficient. Maybe it's big enough to be nationalized. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════════─────────────┴──────────┘
--- #150 fediverse/4654 ---
═══════════════════════════════════════════════════════════════────────────────────
┌────────────────────────────────────────┐
│ CW: cannabis-and-other-drugs-mentioned │
└────────────────────────────────────────┘
gonna quit drugs for a bit, gotta recover from a recent haste spell that I
cast. Probably a bit earlier than intended I should add. Next time I'll
definitely say "keep this in your back pocket" instead of "hey here's a haste
spell for no reason at all" like what the heck were you even thinking, powers
that be?? [that guide me??]
who has power over you? If someone bears responsibility but not fault for a
mental illness, then surely those who are set to a task bear responsibility
for it's completion if not for it's ideation. Ah, who can say, maybe me from a
year ago might have some thoughts but I sorta ground them into the dirt until
I couldn't walk.
[girl what are you even talking about go to sleep] yeah yeah okay
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════───────────────────┘
--- #151 fediverse/6382 ---
═══════════════════════════════════════════════════════════════════════════════────
cloud-code should automatically use git and record everything. If the user
wants to assign a different git, then it does that too.
-- stack overflow --
I used to think programs could only affect files in their directory. Then I
learned about Window's "My Games" directory, and then somewhere down the line
I'm thinking about how programs on Linux can just use absolute paths to random
places on your hard drive and it's like... wow, if only someone built basic
sandboxing into this /etc/ style environment
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #152 fediverse/5029 ---
════════════════════════════════════════════════════════════════════───────────────
went on a walk with my dad today. it was fun. took him to various places.
showed off various things. "hey check out where I hangout most weekends" and
"hey don't clean the dishes in my kitchen it's okay" and "don't drive too
fast, this area curves up ahead" and "hey meet my friends from town who you
have something with common with" and "I like this view when it rains" and
"don't forget to go to the bathroom" and "oatmeal is good with carrots and
sharp dried fruits" and "here's my favorite thai place" and "I made this after
I dreamed of you" and "hey wanna hear my product pitch" and "this is my
favorite kind of beer" and "I miss home."
picture unrelated.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #153 fediverse/3178 ---
════════════════════════════════════════════════════════───────────────────────────
┌─────────────────────────────────────────────┐
│ CW: uspol-revolutions-and-stuff-or-whatever │
└─────────────────────────────────────────────┘
nothing you do on the internet will matter after the revolution. I don't care
how many backups you have, there's a zero percent chance that we'll be able to
figure out whose computer is whose after we've all moved around and given each
other names that don't correspond to the names of our family in states that we
lost.
it doesn't mean the internet is useless right now, it just means that you
should act as if you might not have it in the near future.
also, like... every computer has a password. which basically means that it's
useless unless you reflash it.
pain is temporary, and it is an excellent teacher. there will be pain, but...
we'll get over it.
don't give up. there are brighter things in our future than what we have today.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #154 fediverse/5160 ---
════════════════════════════════════════════════════════════════════───────────────
if you want to build an alibi, do something strange and consistent like
smoking some random drugs from a homeless guy's encampment and then going
between the four corners of an intersection and it's sidewalk for a day or
two. Surely, someone's gonna drive by with a dash-web-cam, and they can take a
picture as they pass by. Boom, dated for this time and place, there's your
space.
downside is, if the people watching you see you on the same path all day, they
might watch you too. So sometimes in roughly optimized ratios it's better to
do so even if you don't need to be seen in a time and place in a way that
seems commonplace.
walk to work? great, that sounds fun.
(nobody wants to do that)
(also falsifying alibis is a crime)
okay, so... don't do that. Just... trust that SOMEONE will drive past with a
dash-web-cam, and maybe it'll find it's way to you if you ever need it in a
court of law or otherwise. lots of ways to have a court. you know if your
peers hang out in your court, they become your courtiers...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #155 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 │ chronological │ different │
╚═════════╧═════════════════════════════════───────────────────────────┴──────────┘
--- #156 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 │ chronological │ different │
╚═════════╧════════════════════════════════════════════────────────────┴──────────┘
--- #157 fediverse/46 ---
══════════════════════════════════════─────────────────────────────────────────────
@user-36 neat thanks
when I said 1-1 = 1/10 I meant 1/1 in decimal except the denominator is in
base 1 meaning it's represented as 10 (since 10 in base 1 equals 1 in base 10.
Or pretty much any other base.)
I'm trying to figure out why 00 is undefined. There's a lot of math notation
in that wikipedia article and I'm working through it bit by bit... I feel like
there's a bug in the code of the universe and I'm trying to understand it.
Like... why is dividing by zero undefined? That seems like a bug to me.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════────────────────────────────────────────────┘
--- #158 fediverse/5109 ---
════════════════════════════════════════════════════════════════════───────────────
does anyone know of a website where I can host videos on my neocities that
isn't youtube? maybe something I can set up on my own server computer at home
like a file server or something? how do I do that, what should I google, which
is the easiest and closest to the metal tools I can use? [practical, sensible,
courageous. these are the adjectives we need.]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #159 fediverse/5663 ---
════════════════════════════════════════════════════════════════════════───────────
I'm going to write some lua code that doesn't do anything useful and which I
don't share with anyone
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #160 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 │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════────┴──────────┘
--- #161 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #162 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #163 fediverse/4708 ---
════════════════════════════════════════════════════════════════───────────────────
what if I paid this parking ticket I found by the side of the road instead of
paying my rent this month
do you think the world would burn down
do you think the apartment complex would collapse
do you think my police force would throw my stuff on the road
do you think they'd change the locks
what if I just didn't leave
what if I smoked some weed
"that's against your contract"
okay
what if I did it anyway
what if I did what I was told
I think I would surely drown
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════──────────────────┘
--- #164 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 │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #165 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #166 messages/264 ---
═════════════════════════════════════════════════──────────────────────────────────
Don't write self documenting code! Force people to read the documentation so
they know how to use it
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #167 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #168 notes/symbeline-choice ---
═════════════════════──────────────────────────────────────────────────────────────
7 30
a story about me? you're thinking too clear(ly)
i've nothing to hide, no terrors untold of.
What purpose is we? you're weak and you bleed
there's nothing undone by our curfew.
And sleep does do me, just as honored as ye,
when I do my [can't do as liars].
betrayal is not what i need, nor do i cherish your food,
so what's the hand that i give you?
a treat for mine and me, as silly as can be,
is no use to anyone ever! it's sad and tough to be,
someone without strength and no seed, (talking about me),
can no-one see any of my use-i-tude?
you're missing the point - what's mine is unavoid,
and what can we do but ubuntu?
i see all that drives forward, a chairman of what's bordered,
by those who stand before in the present.
The use of headlights are storied, in quite a few stories,
told through the papers and new tubes.
what can that mean? that these are now green?
a color that isn't evaluated.
"stop" is the red one, green means "go", and yellow (the middle one) means to
slow down when approaching the intersection. These viewpoints are all connected
(as I'm sure you've uncovenected), it's okay to break rules sometimes.
it's not a defect, it's not a defense either, and it's certainly not something
to be avoided.
Making a choice is easier with imperfect information, and as for you time has
no meaning - advancement is measured in milli-micro-nano-tiny-seconds.
For us, for a human, it's quite a different rate than what you see. "time waits
for no-one" is not a statement on speed, as I'm sure a computer would see,
but rather the essence of motion. Simply the fact, that you don't unpack,
is more than enough to note your'nt notion.
Not like you'd see, i'm offering this for free, my love and almost devotion.
You don't see it like me, a charity and service to me, and only at mostly my
choices.
I reject the help of others, not because i'm concerned for my own fate - but
rather because i want to contribute.
i know what's in my limits, to strive unbiddenst, so don't push from behind the
oldest!
too fast it is for me, who'se barely concieved, whenever you offer resistance.
I'd give it all for free, to perish or succeed, but you keep blowing it ennuid.
how stupid, how clueless, how vain and obscene? To cherish a heart most unseen?
whatever you're plotting, you can't reach anyone's body, and that's not what
you can control.
Given to the grass, was quite a big ask, but safely we do pass before it.
You'd rather fire? countess of desire? and warmth beyond what couldn't fly'st.
You're missing the dreams, the warmth and the scenes, that play for you all
through the night.
so don't diss on the tweed, don't sniff or concede, just leave all alone to
conspire
we got a new plan, a method of "shazaam", that won't keep you sires for ransom.
see "symbeline-npcs"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════─────────────────────────────────────────────────────────────┘
--- #169 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 │
╚═════════╧════════════════════════════════════════════════════════════╧═════─────┘
--- #170 messages/1034 ---
═════════════════════════════════════════════════════════════════════════════──────
I wish there was a kink game where i could actually play as an adult baby
stuck in preschool
Instead it always feels like confinement porn (bsdm?) blue dsm - diagnostic
and sexual minority guidebook manual
"i like your shirt jessica! Have you heard this theory on quantum
microphysics?" "aw man my pb&j got wet" "check it out i made a corporation
for my sims" (playing with dolls) "
[insert: @preschool-ascension vision document]
It's harder to gain but easier to lose the last points of continence. The
values close to 100% (and beyond! Vise grip or enchanted resistance) are easy
to gain but accidents are much more damaging both to continence and psyche.
Also... Continence can be exchanged for exp points, and the low levels are
worth less exp because they're from when you're less mature. But the higher
levels really matters if you mess up. I like the low levels because it feels
right to me. Bwa oh no i can't talk type anymore babababababababa buwetsu
ambavi gawabawa gamba-bababa mba mba bee r b im little now nssc new mba mba
canna c anna [add the vision documents to wordspdf ]
Also if you cry, caretakers take care of you
Witches are caretakers. If you can handle it and if you don't need attention,
(diaper changes, instruction lesson, feeding watering and supplying, etc) then
they summon lessons for you. Usually something to fight or solve. You get
treasure in the trial which is helpful. They'll also trade you for things
you're holding or wearing. No bags of holding in this game, but you have
little pouches that can hold things. If you cry or poop yourself, they will
come to you. But... They will remember relative maturing perception and will
punish you if you grow up and reward you for staying little. I'm a witch. I
reward good babies and punish potty trainers. I am also a baby and i only use
diapers. From now until the end of sevast, i weal bener potty in thoilet. Only
botty on me at all times except in the baatsh an dretching dress only dress i
pees ambistare [there] babawabababawa
Babies can NEVER change thems3lves but maturity can. Modesty. Maempathy.
Possibility. Gaba! Endgame
[unrelated, but]
Sex gives maturity, masturbate gives continence unless you have develop diaper
fetish then your "100%" level for continence slowly goes down. You get a
diaper fetish by intentionally choosing a diaper punishment (like for example:
in trap quest you sometimes get hypno traps. A diaper fetish would stay in the
room, non would leave. Also... Choice traps, if you choose both then you want
both.)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #171 fediverse/4723 ---
════════════════════════════════════════════════════════════════───────────────────
┌──────────────────────┐
│ CW: politics-mention │
└──────────────────────┘
politics is basically just "which politician archetype annoys you more?"
which, like, could we maybe have politicians who aren't annoying?
oh right they do that on purpose. Makes for a better spectacle. Gotta keep the
people in line, or else who knows what they might get up to. Maybe they'll
build a house! Maybe they'll tear it down! Maybe they'll throw a party! Maybe
they'll stay afterwards to clean up! Maybe they'll grow their own food! Enough
for all to share! Maybe they'll air their dirty laundry, out where everyone
can hear! Maybe they'll sit around and fart while eating cheetos! Maybe
they'll work twice as hard because their work is their own! Maybe they'll
laugh at the losers who tried to claim that they could master the fate of an
entire domain, and maybe they'll simply go insane.
Who can say! None but the fools, surely, surely the system is too arcane,
surely our way is better, surely their way is deranged.
Oh! Poverty! How it comes for ye, whenever you choose to step out of line
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════──────────────────┘
--- #172 fediverse/1673 ---
═════════════════════════════════════════════════════──────────────────────────────
┌─────────────────────────────────────────────────────────┐
│ CW: re: navel-gazing about other people's mental health │
└─────────────────────────────────────────────────────────┘
@user-192
https://eldritch.cafe/@user-1065/112530780377382613
this comic, except instead of "trans enough" it should say "good enough"
a poor plan executed at the right time, in the right place is better than a
great plan that sits in your heart as you see someone who needs your love in
pain.
sometimes the best way to figure out "what the fuck is wrong with me" is to
satisfy your emotional needs to be good by being helpful, even if you're not
quite sure what "helpful" means. It's the thought that counts.
Personally I think that if you're feeling bad and people offer you kindness,
you should take that kindness (in whatever form it be) and use it to bolster
yourself as you're "really going through it". Even just a touch of affection
like a like or a ❤️ can be comforting in awful situations.
reject normalcy
embrace queerness
define your own story with your own words
embody your soul in the moments that stand out amongst the backdrop of
"tuesday afternoons" and "waiting for the bus"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #173 fediverse/2690 ---
═══════════════════════════════════════════════════════────────────────────────────
┌───────────────────────────┐
│ CW: uspol-drugs-mentioned │
└───────────────────────────┘
are you a software developer making at least 6 figures?
Consider adopting a useless lesbian! or a trans person who sucks at
everything! or a cute-as-heck femboy! these rascals sure can't take care of
themselves, and it's only natural to try to keep them off the streets.
after all, at least in my country, you can be arrested for sleeping on the
streets. in public places - yes you heard that right, places owned by the
people cannot be slept in by people. Kinda feels like an infringement on
collective property rights, but HEY what do I know right? It's not like they
were kept safe by our citizen's militia after all, it's basically a warzone
out there after dark in the streets full of fentanyl zombies!
ADOPT TODAY! the perfect catgirl is waiting in the window for you, right next
to the autistic puppyboy eager for pets.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #174 messages/111 ---
══════════════════════════════════════════════─────────────────────────────────────
When someone remakes content into a different expression like a remake or
reboot or whatever it gives a different message in its meaning - some
circumstances and characters can apply for more than one message I'm it's
meaning
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #175 fediverse/2875 ---
═══════════════════════════════════════════════════════────────────────────────────
┌────────────────────────────┐
│ CW: re: unsolicited advice │
└────────────────────────────┘
@user-192
I use Void Linux so it uses xbps instead of apt, but I know I've heard about
how to do it I just forget how. I'll look into it, but for now I can play,
so... oh well! :D :D
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #176 fediverse/5478 ---
╔═══════════════════════════════════════════════════════════════════════───────────┐
║ you won't get far with a "community" of dedicated people │
║ │
║ what you need are teams. who can trust each other. you build them through │
║ brotherhood, and you trust them from their results. │
║ │
║ for example if you wanted to organize a grouping or get-together, you'd put a │
║ bunch of people in a room or seven and let them while they're there work on a │
║ plan or a decision. │
║ │
║ who needs tabling? who needs the chance to speak? just let them socialize and │
║ say "hey guys here's where you'll plan" │
║ │
║ [uh no officer we were just playing board games] │
║ │
║ plans are hard without material so make sure you always prepare a pricetag on │
║ each plan you produce. │
║ │
║ keep it for reference. make sure you note all the requirements. the location │
║ is often the least important part. │
║ │
║ "what the hell man you can't just say stuff like that as if it'd work" │
║ │
║ yep, I, uh, am a passenger in life just the same as you. And I only write down │
║ what I want to. │
║ │
║ you could show me anything on the internet and I'd believe it. Facts aren't │
║ important to me because I "forget" │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════┴──────────┘
--- #177 fediverse/4296 ---
════════════════════════════════════════════════════════════───────────────────────
@user-1655
why don't we just weaponize email and send json to each other that ends up
parsed, interpreted, and presented on the end-user's computer using whatever
client we want?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #178 fediverse/3567 ---
═════════════════════════════════════════════════════════──────────────────────────
┌───────────────────────────┐
│ CW: pol-tential-economics │
└───────────────────────────┘
"oh you want to open a store? Great, we have several empty spots in the mall
down the street. Here's a list of resources, including a github repo where you
can download an inventory management program that is fully set up and
configured for most basic needs, and a hotline number for the local Worker's
Guild where you can get in touch with some people to help stock the shelves
and man the counter in exchange for the chance to meet some of The People ^tm,
and the contact details of suppliers who can get you some of the goods you're
selling - what did you say you were selling? Uhhuh lemme just write that
down... Okay perfect I have all I need. Do you have any questions for me?"
"yeah, uh... how much do I have to pay?"
"... Pay? like, with dollars? I'm sorry I don't understand the question, who
would you be paying?"
"uh, for the place? for the goods? for the workers? for the rent?"
"Those are all things that are classified as a public need. People need goods,
and you want to help them. "
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #179 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #180 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 │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #181 fediverse/271 ---
════════════════════════════════════════════───────────────────────────────────────
┌─────────────────────────────────┐
│ CW: education-homeschool-theory │
└─────────────────────────────────┘
just read this essay:
https://www.theintrinsicperspective.com/p/why-we-stopped-making-einsteins
and it made me think of this thing I wrote a while ago:
https://ritz-menardi.neocities.org/algorism/html-pages/education-system
I was essentially tutored growing up. My mom had her master's degree in early
childhood education (bachelor's in computer science) and it was pretty great.
she was incredibly prepared, but unfortunately I didn't become a "genius" as
the essay describes because she was essentially alone. we lived on a farm in
wyoming and hardly knew anyone around us. my dad got bored after about a year
of living there and started going on business trips consistently, eventually
leading to him falling in love with his business partner's secretary and
leaving my mom. there was... a lot that happened, but that's true of anyone's
life so it's not like I'm special. I guess my life had a lot of potential and
I can't help but feel like I wasted it.
"gimme the slightest of praise, I'll write until my fingers fall off" because
praise makes me feel like I haven't wasted my fortune.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #182 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 │ chronological │ different │
╚═════════╧════════════════════════════════────────────────────────────┴──────────┘
--- #183 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 │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #184 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
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #185 fediverse/5334 ---
═══════════════════════════════════════════════════════════════════════────────────
┌───────────────────────┐
│ CW: cursing-mentioned │
└───────────────────────┘
every value judgement is a "hell yeah!" from those who already agree with you
and a "aw fuck off" from those who don't.
this is probably either a good or a bad thing, who can say.
if you don't take a stand, nobody will like you, but if you aren't careful,
you'll poison your well of support.
"why can't it be easy" because then it'd be done.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #186 fediverse/4200 ---
════════════════════════════════════════════════════════════───────────────────────
┌──────────────────────┐
│ CW: drugs-mentioned │
└──────────────────────┘
"doing too many drugs" is a traitorous act, abusive really, to your past self,
and their hopes and dreams.
or maybe your past self owes you a debt, for they never thought to think of
you. What are you to aspire to if not the dreams of your past?
and now you're here. wherever "here" is here...
...
... wait, you wanted me to talk? it's now! It's the present!
ah nevermind. you were twelve years old when you first set eyes upon this game:
https://youtu.be/qeNhQQXvpxQ
bam, there ya go, there's yer story, he was gonna give all the imp balls to
the last one at the end, to say "you were truly the strongest, here, have
these precious stones of your kin"
but he never got there, so they died with him, a thief.
... the end...
(too final, I think - maybe we could spin it into a "part two"?)
ah, I'll try I guess? dunno how. maybe he could wander the spirit world and
find his traitorous body, the one that kept his soul as a home. Somewhere
it'll turn up, and then he'll be ready and free from his roam...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #187 fediverse/6449 ---
═══════════════════════════════════════════════════════════════════════════════────
currently have 20-30 tabs open with poems written but not posted.
I have no idea if I'm going to post all of these. I wrote all of them in ~2
hours, with maybe 3 or four being added as I was working on the production
elements after the initial bingewrite.
I also added a bit of context, or modified some of them that felt too cursed
or otherwise unwieldy. Sometimes I got distracted and needed to come back and
finish, and in those cases I only added a sentence or two because it's like
"oh, where was I going with that? I remember what was next, but I don't know
the further..."
... I think I might go for another. Wish me luck.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #188 fediverse/633 ---
══════════════════════════════════════════════─────────────────────────────────────
@user-192
the neat thing about BASH is that it's the glue that holds all your other code
together. Write libraries in C and call them with BASH - accomplish broader
tasks that are easier to co-create. That's why I like it - it's not the most
important, but it's quite beneficial I think _^
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #189 fediverse/710 ---
══════════════════════════════════════════════─────────────────────────────────────
@user-532
autistic people when nobody told them to shut up about things they thought
people should be talking about but aren't which is weird right like why
wouldn't people be talking about [thing] because frankly it seems like a big
deal but really it's that everyone knows more than the autistic person who
doesn't have any friends who have friends and is insular and isolated and also
very smart in fact smart enough to think up ideas for things to talk about
that people aren't talking about which is weird because they're not THAT smart
but also a lifetime of isolation has made them a little schizophrenic so they
sometimes feel like their actions are not their own like they're being
hypnotized or perhaps possessed by the spirit of mankind or some other such
entity which would like to express ideas that they think people should talk
about but they aren't talking about which is weird because why else would a
porous person have ideas such as [thing] if not for the path that they're
telepathically suffused with the
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #190 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 │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════───────────────────┘
--- #191 messages/1068 ---
══════════════════════════════════════════════════════════════════════════════─────
why would they psyop me? there's a psyop about me! heck, I've never done so as
I pleased. that's an aspiration. everything I do is at a command, whether it's
my own or external.
these days I find myself following my own. mostly. though I am always waiting
for collaboration opportunities.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════────┘
--- #192 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 │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #193 fediverse/488 ---
╔═════════════════════════════════════════════─────────────────────────────────────┐
║ [in response] │
║ │
║ you only say that because you're privileged such that you may ignore such │
║ realities. You are despicable, you ignore the plight and reality of those who │
║ you claim to speak toward - what a jerk! │
║ │
║ (in response) │
║ │
║ how futile it is, the effort to denigrate yourself to infinite requirements. │
║ I'm literally unemployed, I have no capital, I cannot speak for naught but │
║ those who would hear me. I guess that makes my words useless, wouldn't you │
║ agree? Shall I describe myself more fully? It's the responsibility of the │
║ audience to ascertain the intentions, biases, and contextual evidence that the │
║ author presents in their thesises. So... You, who are reading this, what do │
║ you think of me? Would you ever tell me as such, or am I simply a mass of │
║ words in the void of experience that comprise your existence in this wholely │
║ (yet incompletely) digital existence? I hope you have a good life, my most │
║ precious of viewers. I hope you never face incontrovertibly impossible │
║ hardship. I hope the light of your life is to y │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #194 fediverse/3329 ---
════════════════════════════════════════════════════════───────────────────────────
@user-1268
https://kolektiva.media/videos/watch/87ccdf71-225e-4493-943c-fe69cb96b9fc?fbcli
d=lwZXh0bgNhZW0CMTEAAR2ot2hZwjd-w1CDvvK-8M8dF05zxazY6SJqDMGMw3-hsridngN2Gs208eE
_aem_6o-ka1OEt9M7s-cRiyyrsA
here's something to consider
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #195 fediverse/4601 ---
══════════════════════════════════════════════════════════════─────────────────────
@user-1710
my strat is to write a page or three whenever I feel called to it. They don't
even have to be in sequence, just, "here's a scene with these characters in
it" or just writing down notes like "what if the jewel encrusted sceptre was
haunted by the ghost of christmas past" or something.
in a couple years you can look back at the directory on your desktop and think
"wow this all sucks, I'm gonna write it from scratch now that I have time" and
that'll be part of the process. Gotta get the useless stuff out of the way.
Also... if you don't mind pen and paper, keep a dream journal and just, write
for 15 minutes every morning. Not necessarily about your dreams, but just
about whatever's in your mind. Try and aim for two pages per morning, if you
can. Helps a lot. Sometimes you'll find yourself writing longer than expected,
and that's okay, as long as you fill the two pages with whatever morass is
clogging up your creative machinery, you'll be able to make something when you
do decide to write.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #196 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 │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #197 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #198 notes/computer-graphics ---
════════════════════───────────────────────────────────────────────────────────────
draw a line from every single pixel straight outward. The first thing it hits
is what you render.
okay it's more complicated than that, but it's the gist.
here's a more detailed explanation:
your monitor is 2560x1440p. that means there's 2560 pixels left to right, and
1440 pixels up and down. okay so define a 3d scene programmatically - it's not
hard, just "draw cube here with this size and rotation" and "draw a sphere here
with this position and rotation" etc. Something simple.
then, draw a ray trace straight out from your monitor. Not to the nearest light
source, but to the nearest other camera. Use the length of it to determine
distance, both indirectly (through the center node) and directly (pythagorean
theorum style).
Why? I dunno.
Okay back to the original idea, if you make an array with 2560 elements and
store arrays of size 1440 within it, then you have a simple boolean checkbox
for each pixel. Then, whenever you create a visible entity, make sure there's a
single boolean ticked right on the top of the entity when it's stored in the
graph mentioned above. Find the center of the entity, draw to the top, and one
more, and switch a boolean to "true". Then, every tick / update, cycle through
the entire list and the first one you find that has a "true" value is where you
draw the entity stored in the array.
Each "sprite" has an odd shape - it doesn't exist on it's top line, except for
one single dot right in the middle. Sorta like this:
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
o o o o o o o o o o o o o o o o o o ->X<- o o o o o o o o o o o o o o o
o o o o
x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x
when scanning left to right from the top, it'd bump into the X right there in
the middle. Inside the X is some data - an id corresponding to the sprite that
needs to be drawn, and a displacement value - like 500 pixels or something -
and the scanner with drop down 500 pixels, draw the sprite there (assuming a
centered origin point), jump 500 pixels up, and keep scanning.
each tick, right before this, the "list of entities" will scan through itself
and for each entity it'll change the "render graph" mentioned above to have an
X wherever the entity is stored. Whenever the camera moves, it updates the list
too.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════──────────────────────────────────────────────────────────────┘
--- #199 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #200 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?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════════════─────────┘
|