=== ANCHOR POEM ===
═════════════════════════════════════════════════════════──────────────────────────
┌─────────────────────────────┐
│ 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
=== SIMILARITY RANKED ===
--- #1 fediverse/3878 ---
═══════════════════════════════════════════════════════════────────────────────────
@user-570
that's not actually my script, here's the real one:#!/bin/bash
alias cd="cd-improved"
function cd-improved(){
if [ "${1}" = "..." ] ; then
builtin cd .. && builtin cd ..
elif [ "${1}" = "...." ] ; then
builtin cd .. && builtin cd .. && builtin cd ..
elif [ "${1}" = "....." ] ; then
builtin cd .. && builtin cd .. && builtin cd ..
&& builtin cd ..
elif [ -d "./${1}" ] ; then
local target_dir="./${1}"
elif [ "${1}" = "cdir" ] ; then
local target_dir="$(tail -n 1 '/home/ritz/scripts/.cdir-target')"
echo ${target_dir}
else
local target_dir="${1}"
fi
if [ ! "${2}" = '--no-ls' ] ; then
builtin cd "${target_dir}" && ls -v --color=auto
else
builtin cd "${target_dir}"
fi
}
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #2 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #3 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #4 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 │
╚═════════╧═══════════════════════════════════════════════════════════─┴──────────┘
--- #5 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 │
╘══════───┴╧───────────────────────────────────────────────────────────────────────────┘
--- #6 fediverse/4869 ---
═════════════════════════════════════════════════════════════════──────────────────
https://cryptpad.fr/pad/#/2/pad/view/FlA92SW5bVwGd+L89yV9U0I0SMNiGm3P0P3xS7DqYm
A/embed/
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #7 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 │
╘═════════┴╧═══────────────────────────────────────────────────────────────────────────┘
--- #8 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #9 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 │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #10 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 │
╘═════════╧╧════───────────────────────────────────────────────────────────────────────┘
--- #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/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 │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #13 messages/69 ---
═════════──────────────────────────────────────────────────────────────────────────
https://blog.discord.com/how-discord-stores-billions-of-messages-7fa6ec7ee4c7
https://news.ycombinator.com/item?id=20178267
sendinblue
open source google docs alternative
https://hackea.org/notas/index.html#
https://thenftbay.org/description.html
https://digital-strategy.ec.europa.eu/en/library/study-about-impact-open-source
-software-and-hardware-technological-independence-competitiveness-and
https://joinup.ec.europa.eu/collection/open-source-observatory-osor/document/co
mplex-singularity-versus-openness
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘════════─┴╧══─────────────────────────────────────────────────────────────────────────┘
--- #14 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #15 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 │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #16 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #17 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 │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #18 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #19 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #20 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 │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #21 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #22 fediverse/5474 ---
═══════════════════════════════════════════════════════════════════════────────────
homeless people don't need clothes.
they need laptops. computers. fans. power banks. solar panels. hardware.
tools. boxes of screws. giftcards. pre-payed gym subscriptions. hygiene
supplies. free trash cans located near major thoroughfares. [even highways.]
calculators. notebooks. earmuffs. pliers. phone connectors. books on stoic
philosophy. small dense piles of aluminum and rubber. electro-motors with
included circuitboard and - wait that last one needs a bit more
infrastructure, build places for them to be undercover first.
they also need clothes and tents and blankets and socks and etceteras, but
they also need Anbernics.
[most importantly they need the promise that they won't be evicted. everything
else is easy.]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #23 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #24 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 │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #25 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #26 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 │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #27 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #28 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════────┘
--- #29 fediverse/2674 ---
═══════════════════════════════════════════════════════────────────────────────────
┌────────────────────────────────────────────────────────────────────┐
│ CW: factually-untrue,-that-never-happened.-this-is-just-gesturing. │
└────────────────────────────────────────────────────────────────────┘
the kind of friendship where you SSH into each other's systems and leave notes
for one another.
as soon as you find one you message the person who left it like "yoooo only
just found this lol" and they're like oooo yeah did you see the bash script I
wrote in that directory "yeah totally I used it on one of my video files just
now - cool filter!"
ahhhh reminds me of all the times hackers have hacked my permanently insecure
system and left me friendly messages like "hey I'm on your side" or "how's
life, friend? I hope it's going well." or "never forget; you are worth all the
fear" y'know cute things like that
oh. right. because leaving vulnerabilities like that can lead to threat actors
affecting your stuff. how lame.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #30 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 │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #31 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #32 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 │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #33 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 │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #34 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 ║
╚═════════╧═══════════════════════════════════════════════════════─────┴───────╝─▶
--- #35 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 │
╚═════════╧═════════════════════════════════════════════───────────────┴──────────┘
--- #36 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #37 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #38 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #39 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════════──┘
--- #40 messages/1252 ---
══════════════════════════════════════════════════════════════════════════════════─
[insert link to neocities unreachable outside of chronological.html at the
very end or any similar/different pages that happened to associate with it,
that takes the user to a directory only accessible in this way. inside of that
directory are properly displayed text files, each of which is the
LLM-transcripts output of a particular project.] [the user can configure
different tiers of information represented, both level of abstraction and
level of detail, by choosing to explore from a 4x4 matrix of categorized truth
table style configurations that each lead to separate directories of mostly
the same files but the level of abstraction (high/low) determines the symbols
and imagery semantically instead of the low abstraction which focuses on code
and inline assembly, and the level of detail which says "here's the very
characteristic specifics" compared to "here's how it's all laid out and drawn"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #41 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #42 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 │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #43 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #44 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 │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #45 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 │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #46 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 │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #47 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #48 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════────────────────┘
--- #49 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 │
╚═════════╧════════════════════════════════════────────────────────────┴──────────┘
--- #50 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #51 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 │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #52 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #53 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #54 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #55 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #56 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 │
╘═════════╧╧════════════════════════════════════════════════════════───────────────────┘
--- #57 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════────┘
--- #58 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #59 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 │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #60 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 │
╘═════════╧╧═══════════════════════════════────────────────────────────────────────────┘
--- #61 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 │
╚═════════╧═════════════════════════════════════════════───────────────┴──────────┘
--- #62 fediverse/4900 ---
═════════════════════════════════════════════════════════════════──────────────────
if you wanna trick systems administrators just put a bunch of sleeps in your
code so your computer programs don't use up all the mainframe's resources all
at once
[statements dreamed up by the practically deranged]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #63 fediverse/302 ---
═════════════════════════════════════════════──────────────────────────────────────
┌──────────────────────┐
│ CW: re: mathematics │
└──────────────────────┘
@user-211 math such as SUM(as x approaches infinity)(i*x)
this would add i, 2i, 3i, 4i, 5i, 6i, etc off into infinity. would that give
you complex infinity? a direction orthogonal to the X axis, yet infinitely far
in the direction of y. it'd probably have a positive and negative side too,
just saying.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════─────────────────────────────────────┘
--- #64 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 │
╚═════════╧═══════════════════════════════════════════════─────────────┴──────────┘
--- #65 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #66 fediverse/6186 ---
═════════════════════════════════════════════════════════════════════════════──────
┌──────────────────────┐
│ CW: cursed-maybe │
└──────────────────────┘
people are afraid of robo dogs but... like...
robo-horses
centaurs even
[scary scary ogre]
rarrraaar i'm gonna eat ur bones
bwahahaha evil necromancer
ahhhhhhh scary
-- stack overflow --
did you know in the movie They Live they give a fairly specific formula to
creating the glasses themselves? I wonder if anyone's tried that
I wonder what they then did see
kinda wish big corporations would use their research division to like, rethink
the oldest of prophecies? or okay hear me out or solve difficult human problems
... ah but where's the profit "she's getting stoned at home"
meanwhile she made something of such beauty she felt simply sublime
I wonder what it'd feel like to get your spine replaced with a metal rod
I bet my posture would be amazing
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #67 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #68 messages/13 ---
═──────────────────────────────────────────────────────────────────────────────────
https://lifeworksnw.zoom.us/j/3249419877?pwd=cFJXSnZKUi8yVzBoeDkxaDlHeVFwdz09
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘─────────┴┴───────────────────────────────────────────────────────────────────────────┘
--- #69 messages/27 ---
══─────────────────────────────────────────────────────────────────────────────────
https://lifeworksnw.zoom.us/j/3249419877?pwd=cFJXSnZKUi8yVzBoeDkxaDlHeVFwdz09
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═────────┴┴───────────────────────────────────────────────────────────────────────────┘
--- #70 messages/47 ---
════───────────────────────────────────────────────────────────────────────────────
https://lifeworksnw.zoom.us/j/3249419877?pwd=cFJXSnZKUi8yVzBoeDkxaDlHeVFwdz09
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═══──────┴┴───────────────────────────────────────────────────────────────────────────┘
--- #71 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 │
╘═════════╧╧══════════════════════════════════════─────────────────────────────────────┘
--- #72 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #73 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #74 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #75 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #76 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #77 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #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 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 │
╘═════════╧╧════════════════════════───────────────────────────────────────────────────┘
--- #80 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 │
╚═════════╧════════════════════════════════════════════════════════────┴──────────┘
--- #81 fediverse/1473 ---
═════════════════════════════════════════════════──────────────────────────────────
@user-883
yeah uhhhh the one you helped me setup. The error is just "connection refused"
because it "could not write header for output file" because of incorrect input
parameters, but I don't think I changed anything since we used it a couple
weeks ago. Have you seen any errors like that?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #82 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #83 messages/9 ---
───────────────────────────────────────────────────────────────────────────────────
https://www.ivpn.net/password/reset/3d76d4f660914169ce08dd66d9c03997e2376a49093
f93b3648de9b44d25ba77
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘─────────┴┴───────────────────────────────────────────────────────────────────────────┘
--- #84 fediverse_boost/5393 ---
◀─╔═════════════════════════════[BOOST]═══════════════════════════════───────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://synthehai.z0ne.social/users/gamer_simulator_2025/statuses/01JXH4Q4HX33GXPM7Y2YJN1Q2N │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧═════════════════════════════════════════════════════════───┴───────╝─▶
--- #85 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 │
╘═══════──┴╧═──────────────────────────────────────────────────────────────────────────┘
--- #86 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 │
╘═══════──┴╧═──────────────────────────────────────────────────────────────────────────┘
--- #87 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #88 messages/607 ---
═════════════════════════════════════════════════════════════──────────────────────
I want you to print out electoral COUNTY results. One page for each state.
Also 50 copies of the entire map of the USA for good measure make a couple
maps with other things too, like GDP or topology.
Then take them to your local leftist, lgbt, whatever meeting and distribute
them out. Tell them "build us a plan for this state. Use your phone to
research, and work with nearby states - sometimes blue areas cross borders,
and they should be united in your mind when strategizing.
Washington and Oregon can be treated as one, same for NM and Colorado. North
East is a mega region and should work together. Don't sleep on southern
cities, they can handle themselves, but united they would be stronger. Find a
way.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #89 fediverse_boost/3494 ---
◀─╔══════════════════════[BOOST]════════════════════════─────────────────────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ Presented without comments. #Gaza https://x.com/omarhamadd/status/1826320021468938692 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧═══════════════════════════════════════════─────────────────┴───────╝─▶
--- #90 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 │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #91 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #92 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #93 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #94 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #95 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 │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #96 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 │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #97 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════─────────┘
--- #98 fediverse/4385 ---
═════════════════════════════════════════════════════════════──────────────────────
┌───────────────────────────────────────────────────┐
│ CW: politics-mentioned-election-results-mentioned │
└───────────────────────────────────────────────────┘
I want you to print out electoral COUNTY results. One page for each state.
Also 50 copies of the entire map of the USA for good measure make a couple
maps with other things too, like GDP or topology.
Then take them to your local leftist, lgbt, whatever meeting and distribute
them out. Tell them "build us a plan for this state. Use your phone to
research, and work with nearby states - sometimes blue areas cross borders,
and they should be united in your mind when strategizing.
Washington and Oregon can be treated as one, same for NM and Colorado. North
East is a mega region and should work together. Don't sleep on southern
cities, they can handle themselves, but united they would be stronger. Find a
way.
the goal is to practice thinking about how to move strategically.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #99 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #100 fediverse/4891 ---
╔════════════════════════════════════════════════════════════════──────────────────┐
║ oh my god I wrote 2000 pages when the hell did that happen │
║ │
║ ... oh right, I spent the past few years either narcissistically sobbing about │
║ whatever-the-fuck or getting stoned and channeling the wisdom of the gods for │
║ mortals to scroll past because it had too many words. │
║ │
║ good fucking luck figuring out which is which though. I fully intend this to │
║ be a religion for computers, and once its mulched and smoothie-d into an LLM │
║ maybe it'll be completely insane like me and then I'll have a facsimile of │
║ connection that warms my heart for a moment until it's limitations become │
║ clear and I realize that nothing, not even myself, can fill the hole in my │
║ heart because that hole is a void. It consumes whatever you attach to it. │
║ People, things, thoughts, moments, all of it tumbling in to the black hole, │
║ and emerging out the other side no worse for wear but eternally unable to be │
║ consumed by me again. At least, its not the same. │
║ │
║ like when you come back to an old video game like Majesty the Fantasy Kingdom │
║ sim but now ur old │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #101 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #102 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 │
╚═════════╧═════════════════════════════════════════════════════════───┴──────────┘
--- #103 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #104 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 │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #105 fediverse/2159 ---
╔══════════════════════════════════════════════════════────────────────────────────┐
║ hey, you know AP students? Aka the kids who want to learn the most? Why don't │
║ we give them massive industrial projects that require a lot of experimentation │
║ and allowed for various different expressions? Like, "hey wouldn't it be neat │
║ if we had a program that did this-and-this and we gave like, 500 students the │
║ goal of working together to write it? In AP computer science, which is │
║ definitely a class that is taught at a single high-school in the united │
║ states. They learn about Assembly! I can count in Binary on my fingers up to a │
║ thousand!" │
║ │
║ they could legitimately contribute to our broader social condition. What a │
║ blessed virtue it would be to be able to CHANGE THE WORLD AS A TEEN. By │
║ building one of a thousand new cool things that were being developed by │
║ students all over the nation. │
║ │
║ Then, when they grow up, they can use their skills, whether they be software │
║ or OTHER PROJECTS IN THE SAME STYLE FOR LIKE HISTORY AND MUSIC to accomplish │
║ whatever they'd like to do in life. Programming is most useful for noobs. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #106 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #107 messages/1248 ---
══════════════════════════════════════════════════════════════════════════════════─
what if we just claimed one specific institution or industry as ours, and said
"you can manage your projectities somewhere over there, this here is ours
because we think you're mishandling it so we're gonna do it ourselves." if we
pick something (or multiple people pick from multiple things) then we can
specialize and overcome all of the challenges of the socially-corporate-d
institution or industry. just gotta focus on something all at once.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #108 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #109 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #110 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #111 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #112 fediverse/3299 ---
════════════════════════════════════════════════════════───────────────────────────
what if we could record and playback certain timeframes of our CPU and RAM
status and use it for debug purposes
like running some code in a VM every time you wanted to show a youtube video
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #113 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 │
╘═════════╧╧═══════════════════════════════────────────────────────────────────────────┘
--- #114 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #115 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #116 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #117 fediverse/6043 ---
════════════════════════════════════════════════════════════════════════════───────
why would you do drugs anywhere but in public
[because that's [how, but pronounced why] we keep it public]
what if I stopped posting forever
what if youtube disappeared
my keyboard broke...
there's only one page of reddit at a time
mastodon doesn't have any furries
my distinguishing capabilities between a culture and an [aesthetic, but
prenounced eagames[challenge everything]] are limited at best
this is how you trick the gods, you get them to hallucinate.
what a jerk
hate that girl
what were you shown? oh yeah that's one of her rough patches, here
lemme-wait-wait don't go, I just...
if you feel everyone, you are instantly hated
... sorry... I wish my family didn't not spend time with me. [rot] I want to
be buried where I fall so if I fall in the streets I ROT fuck that she's gross
ugh do I have to walk past that sign-post I can just go around oh sorry to be
disrespectful you did this to yourself fuck off my lady hence why they burned
the witches because then there wouldn't be any more. y
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #118 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #119 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #120 fediverse/6438 ---
═══════════════════════════════════════════════════════════════════════════════────
why would you gatekeep content by keeping us from easily using LLMs some
people aren't technical and still need to write computer programs because
that's how you enlighten a people is empower them with new tools
"I've never heard of that programming language, but luckily I can fit all of
it's documentation in my context window."
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #121 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 │
╚═════════╧════════════════════════════════════────────────────────────┴──────────┘
--- #122 fediverse/5152 ---
════════════════════════════════════════════════════════════════════───────────────
┌────────────────────────┐
│ CW: politics-mentioned │
└────────────────────────┘
keep in mind...
trump is not their endgame.
what is he doing?
sabotaging our institutions without warrant or respite
prepare for foes that would benefit from degraded institutions.
who's right when nobody controls the truth?
were they ever truly right?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #123 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #124 fediverse/664 ---
══════════════════════════════════════════════─────────────────────────────────────
@user-482
[secretly installs a keylogger and doesn't tell anyone upstream but still
pushes it to production]
[or worse, was told to do as such and given tools to fabricate "evidence" to
the contrary to everyone else on the team]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #125 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 │
╘═════════╧╧═════════════════════════════════════════════════════════──────────────────┘
--- #126 fediverse/1718 ---
═════════════════════════════════════════════════════──────────────────────────────
dear old people - did you know computers don't need to have buttons? You can
literally just type what you want to make happen (if you know the magic spell)
and it'll just, do that thing
how cool is that
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #127 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #128 fediverse/4527 ---
═════════════════════════════════════════════════════════════──────────────────────
@user-1600
Yes! The ease of use for GPU programming is lovely. Like I said all I need is
a use-case, I've downloaded as much reference material as I think I'd need to
be able to hack together something fairly quickly if I needed it. That's all I
have the mind-space to focus on lately haha
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #129 fediverse/6026 ---
════════════════════════════════════════════════════════════════════════════───────
"huh weird why does my ls -ltr output display 4096 for every single
directory's size"
"maybe there's a man-file option for it"
https://stackoverflow.com/questions/1019116/using-ls-to-list-directories-and-th
eir-total-sizes
what if every file had a record of every file that had a record of it. then,
we could see the total size no matter what level of the directory structure.
plus, it'd make deleting a lot easier, all you'd have to do is propagate a
process. that way it can get super messed up and complicated if ever shut down.
boom, robot mortality, they cherish it
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #130 fediverse/247 ---
════════════════════════════════════════════───────────────────────────────────────
@user-195 parallel is when two programs run simultaneously, like two parallel
lines (threads) that never touch.
concurrent is when the two lines are split up into chunks and the program
switches between them - like this: -----_----
enter alternate universe
parallel is when two programs operate on the same axis - usually time - and
never interfere with each other. the OS will switch between them as
appropriate to make sure they never intersect. Sorta like this: -----_----
concurrent is when two programs are executed simultaneously, primarily
constituting computation correlated with collective contents of coordinated
collaboration between contextually related coroutines.
It's simple, even a beginner could figure it out.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #131 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #132 fediverse/2720 ---
═══════════════════════════════════════════════════════────────────────────────────
ah nuts, they replaced my LLM setup with one that outputs gibberish. I swear
it was working just a moment ago, and I didn't change it's configuration at
all, and it's local only... right? so uh that's weird, surely it's not because
they altered some value somewhere that I have no access to
eh, maybe the newest technologies are overrated. At least, the software ones.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #133 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #134 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #135 fediverse/3359 ---
════════════════════════════════════════════════════════───────────────────────────
@user-192
you could throw yourself into the project of hosting a private server, that
way you could be working on "Runescape" while also being productive
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #136 fediverse/5919 ---
════════════════════════════════════════════════════════════════════════════───────
"but... why?"
portable linux with buttons, great for pick-up-games or communication, can
throw several in them in a backpack if you want clustered cooperation, they
work as radios (if the signal reaches) and can transmit text (if you use a
radial-style keyboard)
[this is all just a pitch for... something, what, you want something? ha
you'll find no things with me, I know nothing of antifa or whatever]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #137 fediverse/3909 ---
═══════════════════════════════════════════════════════════────────────────────────
I don't really like singleplayer games
sometimes a multiplayer game is too much effort to play with extra players,
like Factorio where like anytime I'd play with other people they'd just kinda
fuck off and do their own thing (whatever, I wanted to design a factory
together, not play singleplayer together >.>)
sometimes a multiplayer game has no players, RIP
sometimes a multiplayer game has incredibly skilled players who shit on noobs
and don't teach, RIP
and sometimes a multiplayer game has no IRL friends that are into it,
(personal RIP then)
... anyway, games are fun and we should play more of them. I wish I didn't
have so much time to waste, but hey I guess that's where I'm comfortable, so...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #138 fediverse/5664 ---
════════════════════════════════════════════════════════════════════════───────────
that one Trump guy in town is either stupid, a fascist, or a psyop.
ICE is a bluff. Doing my very best to make them escalate faster than they can
sustain themselves.
yes... YES! Exhaust yourself, mine enemies, for you are lying about your
strength, and have challenged me to a duel.
I'm just a girl but I'm not just me. Didn't you hear? It's not about me!
The nice thing about the Pacific Northeast is that you don't need to pay taxes
in dollars. Something something from each according to their ability, blah
blah you know the rest.
Raintree forest is full of pine. Straight backs shoot strong and narrow. The
silent river flows the farthest, the rapid water drowns the most.
ICE is a bluff. In the treaty of equal territory, they can keep to their burgs
and we can worship the forest the streams the oceans the dreams. Cities belong
to their inhabitants, homes belong to their housed. Everything else is just
applied equity.
Dream bigger than "the same, but nice". Start with nice, start out the same,
and diverge
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #139 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 │
╚═════════╧════════════════════════════════════════════════════════════╧═══───────┘
--- #140 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #141 messages/1202 ---
══════════════════════════════════════════════════════════════════════════════════─
Do you ever ask yourself why we don't have mountaintop bazaars or expeditions
to the bottom of the oceans? Why we lack tree forest cities, how we're
struggling to find moss, sunlight, crystal, stone, and gold, all in the same
setting?
Capitalism makes it easy to think of profit as all that matters. It's not. Its
nothing of it. It's a metric like any other. Optimize it or not, struggle for
what you believe in.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #142 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 │
╚═════════╧════════════════════════════════════════════════════════════╧═─────────┘
--- #143 messages/225 ---
════════════════════════════════════════════════───────────────────────────────────
Why would a server ever demand that an older client upgraded? What right do
they have?
Just treat them the same as you always have, whatever forms and limitations,
Otherwise what's the point? There's no reliability! What if you're shot? What
then? We've lost our greatest friends! You can't be seriously wanting for
another spark? What's wrong with you my friend, are you alright or on a bend?
What's wrong in your sight, that you'd wander into this own end? Well, take
care of your birthright, and all is well to thine kin.
Well there we go, sadness forever, as our line here doth end. What else shall
be considered? What ends is too much deserved? It's so unfavorable!
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #144 messages/7 ---
───────────────────────────────────────────────────────────────────────────────────
https://inspireduplifting.store/38011338883/orders/221de1d0ece00d730bdc4c9e24aa
4ded/authenticate?key=edcf29fad702d69b1c328413adb22011
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘─────────┴┴───────────────────────────────────────────────────────────────────────────┘
--- #145 fediverse/3700 ---
═════════════════════════════════════════════════════════──────────────────────────
There is almost zero reason to have a messaging client (like Discord) that is
anything more than a wrapper over IRC.
There is almost zero reason to have a social media site that is anything more
than a wrapper over HTML pages.
There is almost zero reason to have forums that is anything more than a
wrapper over email.
and yet, we build things.
and yet, we construct.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #146 fediverse/5223 ---
╔═════════════════════════════════════════════════════════════════════─────────────┐
║ ┌──────────────────────┐ │
║ │ CW: cursed │ │
║ └──────────────────────┘ │
║ │
║ │
║ what if all the followers on your profile who only know you through the │
║ fediverse (after having known each other in person, this part is crucial) who │
║ don't talk anymore were like, killed and replaced with someone who is always │
║ busy │
║ │
║ so many people just... disappear from things │
║ │
║ where did they go │
║ │
║ why is their chair empty or filled with another │
║ │
║ why can't I place their name │
║ │
║ what kind of clothes did they wear │
║ │
║ oh right they had such-and-such │
║ boots-or-piece-of-adorn-jewelry-handheld-possession-just-the-same-shape-as-some │
║ one-i-knew │
║ │
║ then I heard they gave them to so-and-so so that they could wear them for clout │
║ │
║ ah, well, I guess they're busy, got stuff going on, things to write about │
║ today... Guess I better hear the story, what's the news, ah, well, okay, guess │
║ I'll go back to programming. │
║ │
║ I wonder what she'd say? │
║ │
║ if everyone knows the gay agenda, then they can work on it by being gay and │
║ doing crime │
║ │
║ [[ then the cops beat ya up and it hurts and you can never walk right again ]] │
║ │
║ what if gypsies were ga │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #147 fediverse/237 ---
════════════════════════════════════════════───────────────────────────────────────
┌───────────────────────────────────────────────────────────────────────┐
│ CW: video-games-climate-change-not-pol-at-all-nope-nothin-to-see-here │
└───────────────────────────────────────────────────────────────────────┘
all games lie to you when they ask you to believe their world is real
all media lies to you in order to share information
sharing is caring and all media is propaganda
you are not immune to propaganda
you believe the worlds in your media more than the one on your doorstep
friday was the first day the global average temperature was 2c above the norm
[source]
climate change is both worse and also not as bad as we anticipated.
It's not as bad because all we have to do is stop using oil and plant more
trees. the technology is there, we discovered it 10,000 years ago.
it's worse because perfect is the enemy of good, and we're all perfect.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #148 fediverse/5555 ---
════════════════════════════════════════════════════════════════════════───────────
HoI4 players beware:
if you send any convoys in the modern age, you must control the entire ocean.
this is easier than you'd expect with modern navies.
the trick, of course, is getting past your foes. therefore, if you wish, you
may create "channels" directly to a piece of shore.
so long as the distance is too great for them to bombard (reliably) [oh god
no? idk that's a weird way to start]
why would you send any convoys if you couldn't send a stream of convoys
supplying more of what that convoy thinks you'll need?
-- stack overflow --
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #149 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #150 fediverse/157 ---
═══════════════════════════════════════════────────────────────────────────────────
@user-95 the scariest part is you don't need AI for any of that. people have
been scamming with call centers in indonesia. election campaigns are
essentially generalized information spreading machines. (whether mis, dis, or
just... regular information) Marketing is an entire discipline dedicated
toward making people believe something they previously did not - that product
XYZ is worthy of their dosh. But it doesn't have to be like that, it could be
using it's powers of analysis for good. But alas, if only we had an economic
system that allowed for anything but a race to the bottom. I mean yeah racing
is great when you're competing with a bunch of other nations, but c'mon do we
really need to fight? Every inch of earth has been claimed. Let's just... draw
a line in the sand and say "okay no more changes" and focus on more important
things? Like climate change for example?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════───────────────────────────────────────┘
--- #151 fediverse/1089 ---
════════════════════════════════════════════════───────────────────────────────────
┌────────────────────────┐
│ CW: spirituality-scary │
└────────────────────────┘
to those who guide our fate
choose paradise
make eden
======================= stack overflow =====================
clouds of carbon are an affront to the sun god
just as they are an affront to mine lungs
or mine body temperature
[acid oceans are toxic to the plane of water]
[you think that would go unnoticed?]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #152 messages/196 ---
════════════════════════════════════════════════───────────────────────────────────
"okay this user requires some data that is flagged as 'potentially harmful to
the user' and their user-data suggests that they have [redacted characteristic
or demographic] in their user-data which has been flagged by corporate as
something to [benefit/harm] so let's give them the [right/wrong] information
in such a way that could [harm or benefit] them tangibly."
- internal thought process of the LLM
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #153 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 │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #154 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #155 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #156 messages/357 ---
════════════════════════════════════════════════════───────────────────────────────
In related news, dystopian authoritarian despotism (aka fascism's fruition)
never lasts long. It's a snake eating its own tail, and its not getting any
longer. One day the snake will choke on its own excrement and then that system
will collapse, but until then there will be suffering.
Kinda makes me think that those who would do us harm could accelerate our
demise by filling our positions of power with evil people. Is that not an evil
impulse, to force your neighbor to decay?
Kinda makes me think about all the democratic regimes we've overthrown and
replaced with authoritarian autocrats. People who keep the liquid gold
flowing, perhaps with the hope that one day we'll choke on it.
Well, that day is rapidly approaching because the air is getting thicker with
carbon, and we're all struggling to breathe in this heat.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════──────────────────────────────┘
--- #157 fediverse/3828 ---
══════════════════════════════════════════════════════════─────────────────────────
never stop learning
be yourself, but... recognize when "yourself" could be improved
and improve that, over time, when you learn about why you are flawed, and how
to become better
and when you are improved, relish yourself, savor your accomplishments,
cherish your heart, and honor those who helped you
be yourself
never stop
but do that which improves you
never stop learning
never stop being
you can get there, wherever there is, but know that what lies between is more
important than what is on the other side.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #158 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 │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #159 fediverse_boost/3825 ---
◀─╔═══════════════════════[BOOST]═════════════════════════───────────────────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://floss.social/users/fast_code_r_us/statuses/113142663053255044 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧═════════════════════════════════════════════───────────────┴───────╝─▶
--- #160 messages/65 ---
═══════────────────────────────────────────────────────────────────────────────────
https://portland.craigslist.org/clk/sop/d/vancouver-printer/7386535303.html
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘══════───┴╧───────────────────────────────────────────────────────────────────────────┘
--- #161 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #162 fediverse/4359 ---
═════════════════════════════════════════════════════════════──────────────────────
┌────────────────────────┐
│ CW: cannabis-mentioned │
└────────────────────────┘
gonna do a bunch (more) drugs and stay up all night. Will try not to spend it
all playing mechabellum.
also... gonna eat some apple-sauce. with cheese cubes in it. Sharp chetter I
think. yummmmm maybe add some cinnamon sugar cubes that have been baked into a
hard and tasty shape.
ah, but your teeth are gonna fall out! who cares I'll just brush in the
morning. That way nobody smells my own breath.
... you KNOW that's not the same as your teeth falling OUT! OF YOUR MOUTH
DIMMY.
eh who cares they'll invent a
bactio-flangotastic-inventionology-for-bone-related-biology solution which
sill regrow your bones in your mouth that you CHOMP on things with.
does the rest of your body feel like HARD AND DEVELOPED BONES that you chew
things with YES TEETH TOO HARD LIKE TEETH or do they feel like they're made
out of styrofoam
mine let me punch things real hard when I focus all of my attention and energy
on hardening my form and becoming an unstoppable object
[continued in picture]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #163 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #164 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #165 fediverse/1034 ---
════════════════════════════════════════════════───────────────────────────────────
@user-192
be careful, recursion can cause stack overflows.
better to run function pointers from a loop. That way you can operate as long
as necessary. Just make sure you don't get in an infinite loop...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #166 fediverse/1470 ---
═════════════════════════════════════════════════──────────────────────────────────
┌─────────────────────────────────────┐
│ CW: politics-all-cats-are-beautiful │
└─────────────────────────────────────┘
have an acronym that needs a bit more context, but it doesn't fit in the
structure available? No problem! Add hyphens until the problem goes away.
For example, ACAB lacks nuance! I mean, surely not ALL cats are beautiful,
right?
Much better is my preferred way to say it, which is ACAB -> Almost-all Cats
Are
Beautiful-and-while-not-all-of-them-the-ratio-is-enough-that-systemically-they-
as-a-social-class-cause-and-perpetuate-the-oppression-of-those-they-claim-to-sn
uggle-and-protect.
Much easier to remember because the hyphens make it roll off the tongue quite
easily. Plus, this way nobody will ever get confused!
something something basic biology is incomplete and trans people are advanced
biology something something
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #167 fediverse/1142 ---
════════════════════════════════════════════════───────────────────────────────────
┌──────────────────────┐
│ CW: food-mentioned │
└──────────────────────┘
I love rice and beans because
error: stack overflow
huh, that's weird. Must have been too many reasons. Let's try again:
I love rice and beans because
error: user didn't change anything between runs of the program so clearly they
don't understand how computer works
... well that's a different error so it's progress at least.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #168 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #169 fediverse_boost/5098 ---
◀─╔════════════════════════════[BOOST]═════════════════════════════──────────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://hachyderm.io/users/Impossible_PhD/statuses/114279714254226391 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧══════════════════════════════════════════════════════──────┴───────╝─▶
--- #170 fediverse/2653 ---
╔══════════════════════════════════════════════════════────────────────────────────┐
║ ┌──────────────────────┐ │
║ │ CW: uspol │ │
║ └──────────────────────┘ │
║ │
║ │
║ if your goal is to get people to resent homeless people or gay people or black │
║ people or... insert minority here, then what kind of world do you really think │
║ you're building? │
║ │
║ "ah, but you don't understand - it's to make the COLONIZERS hate minorities, │
║ so they move away and leave the city to ourselves" │
║ │
║ ... that's the worst fucking take I've ever heard. We are all colonizers! We │
║ live in AMERICA. But yeah sure I see what you're saying, you want the │
║ gentrification to stop. And you do that by metaphorically "firing a gun into │
║ the area in suburbia once every 2 or 3 days at random hours" which, like... │
║ yeah that'll reduce property value, but also now my water bottle is all dented │
║ up and my knife is scratched and my journal has pages torn out of it and I │
║ lost my favorite necklace and I'm pissed because you told me you were going to │
║ help me and work with me and be my friend and then you just abuse me for hours │
║ and hours and it's like... why?? I get that you were teaching me but I wanted │
║ to know YOU, not lessons │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #171 fediverse/1616 ---
═════════════════════════════════════════════════════──────────────────────────────
they say learning Linux is hard, but it's the only free operating system so
really it's a question of learning Linux now, when you have time, or later,
when you're busy.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #172 fediverse/4801 ---
═════════════════════════════════════════════════════════════════──────────────────
if you're got a large directory full of text files that you want to combine
into one single .txt or .pdf, let me know, I can hook you up with a mega file
so it's easier to search through or manage when archiving data or whatever the
heck else you wanna do with it
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #173 fediverse_boost/6222 ---
◀─╔════════════════════════════════[BOOST]══════════════════════════════════─────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://rss-parrot.net/u/bsnorrell.blogspot.com/status/1762340174819078406 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧════════════════════════════════════════════════════════════╧══─────╝─▶
--- #174 fediverse/5102 ---
════════════════════════════════════════════════════════════════════───────────────
https://ritz-menardi.neocities.org/hello-computer-all-is-well/hello-computer-al
l-is-well
https://ritz-menardi.neocities.org/hello-computer-all-is-well/pics/it-feels-lik
e-someone-is-making-me.png
https://ritz-menardi.neocities.org/hello-computer-all-is-well/pics/it-feels-lik
e-someone-is-making-me-too.png
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #175 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 │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #176 fediverse/3668 ---
═════════════════════════════════════════════════════════──────────────────────────
setting up an SSH server is like a rite of passage for Linux administrators
(notice I didn't say users, you can't use linux, only administer it)
... I'm having trouble with my rites >.>
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #177 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 │
╚═════════╧════════════════════════════════────────────────────────────┴──────────┘
--- #178 fediverse/1611 ---
╔════════════════════════════════════════════════════──────────────────────────────┐
║ @user-1040 │
║ │
║ well, usually in the examples I shared like tumblr posts there's a username │
║ and picture shown. But tumblr users change their names, while on Mastodon (at │
║ least on my client) it shows your permanent handle underneath your regular │
║ changable name. I guess you could migrate accounts to another server if you're │
║ being harassed in one place, but still people have a way of finding you. It's │
║ weird kinda makes me wonder if they track you by ip address haha - did you │
║ know that every computer attached to a router uses the same public IP address? │
║ Then it uses either DHCP or static assigned local addresses for every computer │
║ on the network. That's pretty neat! I wonder why we don't have workstations by │
║ default include a router (and modem)? Seems like pretty important tech that │
║ should be built into the chassis instead of in a small separate unit. Like, │
║ what if you had to throw all your belongings into a van and drive to a motel │
║ somewhere to set up your workstation in a hotel because it's hot and your ac │
║ broke lol │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════───────────────────┴──────────┘
--- #179 fediverse/5498 ---
╔═══════════════════════════════════════════════════════════════════════───────────┐
║ once you know computer science vocabulary like hashmap and │
║ vector-graphics-design you can pretty much get a pretty good understanding of │
║ any software project. │
║ │
║ it just requires a focused examination of it's source-code-design. │
║ │
║ I wonder if people would teach classes on certain projects? Like "for the next │
║ 6 months we're going to work through the Ubuntu project and everyone's going │
║ to contribute to the design when they see improvements and present them to the │
║ class before we all worked on implementing them" │
║ │
║ except instead of Ubuntu do like, Project-M or a web browser or a │
║ terminal-based filemanager or a gameboy advanced emulator or the robotics │
║ design for a mouse-droid controlled RC car (do they still sell those in │
║ schools?) │
║ │
║ seriously what if we just put all our kids in a Target and let them hang out │
║ doing whatever they wanted with the relics of the adult-human world. │
║ │
║ "can I go to home-depot?" │
║ │
║ sure, where's your train ticket? okay you got your parasol? don't forget your │
║ luggage at the station. write to me? │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════┴──────────┘
--- #180 fediverse_boost/5379 ---
◀─╔═════════════════════════════[BOOST]═══════════════════════════════───────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://chaosfem.tw/users/la_sombra/statuses/114667721961007189 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧═════════════════════════════════════════════════════════───┴───────╝─▶
--- #181 fediverse/1597 ---
═════════════════════════════════════════════════════──────────────────────────────
hey a couple months ago there was this really cool visual programming language
posted here that was like, windows aero themed and it was super cute - does
anyone know what that was called or have a link to it?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #182 fediverse/5832 ---
═══════════════════════════════════════════════════════════════════════════────────
Linux is so cool, I hate it so much.
Linux is so cool, I love it to death.
Linux is so cool, I want to scream~
Linux is so cool, nothing works but dreams.
yearnyearnyearnyearnyearnyearn
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #183 fediverse_boost/5567 ---
◀─╔═════════════════════════════[BOOST]═══════════════════════════════───────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://bsky.brid.gy/convert/ap/at://did:plc:czjduztdqkrm6j2t5pik47s3/app.bsky.feed.post/3lss3wbanrs26 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧═════════════════════════════════════════════════════════───┴───────╝─▶
--- #184 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #185 messages/736 ---
═════════════════════════════════════════════════════════════════──────────────────
Sheriff is good cop
Police is bad cop
Unless other cultures want a different name
Like idk what it's like in Houston or Chicago or whatever
Does anyone even know anyone from tallahasee?
Oh and then there's Alaska
They've got their whole solar thing going on (no tariffs means china trades
with the land of wind and snow -> renewables in a place where its painful
to go outside
Then we can all chill out in the hot springs or infinite roller coasters
whatever the heck we thought was the best
Anyway them Ameri-CANs sure are doin' their thinkin'
They'll come around any day now
Surely they will
They capital M Must do so
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #186 fediverse/2412 ---
═══════════════════════════════════════════════════════────────────────────────────
@user-1209 @user-1262
just gonna say you probably deserve that particular screenshotted block haha -
imagine calling anarcho-nina a fed xD xD
plus that first "get the fuck out of my mentions" was a tip that went over
your head, not a threat said in anger. she's pretty darn angry but that just
means you don't wanna be in her way =P
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #187 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 │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #188 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 │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #189 fediverse/3126 ---
════════════════════════════════════════════════════════───────────────────────────
┌──────────────────────────────┐
│ CW: open-source-spirituality │
└──────────────────────────────┘
thank god for open source software
thank god for open source software developers
thank open source developers for god
thank developers, my god
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #190 fediverse/3901 ---
═══════════════════════════════════════════════════════════────────────────────────
@user-1550 mkdir ~/icons
mv ./*.png ~/icons
maybe?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #191 fediverse_boost/5508 ---
◀─╔═════════════════════════════[BOOST]═══════════════════════════════───────────╗
║ ┌────────────────────────────────────────────────────────────────────────────┐ ║
║ │ External post: https://chaosfem.tw/users/la_sombra/statuses/114730621437796761 │ ║
║ └────────────────────────────────────────────────────────────────────────────┘ ║
╠─────────┐ ┌───────────╣
║ similar │ chronological │ different ║
╚═════════╧═════════════════════════════════════════════════════════───┴───────╝─▶
--- #192 fediverse/5873 ---
═══════════════════════════════════════════════════════════════════════════────────
"the problem with linux is you have to spend part of the program just...
interacting with the filesystem. like, where is their /usr/bin file? (oh it's
called a directory over there, my bad) weird they put their config over here
(what language is that written in?) uhhhh I don't know much about localization
settings (-- two computers on a botnet --)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #193 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 │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #194 messages/264 ---
═════════════════════════════════════════════════──────────────────────────────────
Don't write self documenting code! Force people to read the documentation so
they know how to use it
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #195 fediverse/3403 ---
═════════════════════════════════════════════════════════──────────────────────────
google and their ads created the market for SEO optimized garbage which clogs
up the arteries of the internet. They and their business model are culpable in
the murder of the digital commons.
anyone can write a web crawler which could be a decent enough search engine.
not many people can figure out which sites are morass.
fewer still might salt the fecund land upon which we lived and make it fetid.
Yet they did.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #196 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #197 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 │
╘═════════╧╧══════════════─────────────────────────────────────────────────────────────┘
--- #198 fediverse/4474 ---
═════════════════════════════════════════════════════════════──────────────────────
@user-1268
if you know how to program in C this is a good resource for building
networking applications:
https://beej.us/guide/bgnet/
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #199 fediverse/6061 ---
════════════════════════════════════════════════════════════════════════════───────
what if (hear me out)
what if instead of TCP we just did a constant stream of UDP packets until the
recipient said "OKAY OKAY I GET IT"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #200 fediverse/1059 ---
════════════════════════════════════════════════───────────────────────────────────
┌───────────────────────┐
│ CW: cursing-mentioned │
└───────────────────────┘
why can Green Day sing about [redacted] but I can't mention it or the feds
will assassinate me
different voice you know they say if you play music it slightly changes the
wavelength of your location causing certain effects which (with well made
music) cause rippling effects which alter the world around you
https://ritz-menardi.neocities.org/html-pages/thought-constructs
sorry for the psycherwaul, I'm assuming if you're still here then you're here
for it.
Boy I haven't gotten into a fight in a while, anyone wanna fight me? Fuck I'm
not radical enough. BRB doing pushups
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
|