=== ANCHOR POEM ===
══════════════════════════════════════════════════════─────────────────────────────
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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
=== SIMILARITY RANKED ===
--- #1 fediverse/3588 ---
═════════════════════════════════════════════════════════──────────────────────────
┌─────────────────────────────┐
│ CW: re: computers-mentioned │
└─────────────────────────────┘
#!/bin/bash
set -euo pipefail
CHAPEL_DIR="/home/ritz/programming/chapel"
COMPILER_DIR="${CHAPEL_DIR}/language-files/files/chapel-2.1.0"
PROJECT_DIR="${CHAPEL_DIR}/projects/practice"
SOURCE_DIR="${PROJECT_DIR}/src"
clear
cd "${COMPILER_DIR}" > /dev/null
export CHPL_LLVM=system
source "${COMPILER_DIR}/util/setchplenv.bash" > /dev/null
cd - > /dev/null
cd "${PROJECT_DIR}" > /dev/null
echo "compiling..."
chpl "${SOURCE_DIR}/main.chpl"
clear
./main
cd - > /dev/null
you should update the directories at the top yourself, of course. And give it
a cursory glance to make sure it works on your setup.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #2 fediverse/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 │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #3 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #4 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #5 fediverse/6422 ---
═══════════════════════════════════════════════════════════════════════════════────
revolutions should be paid for in lands
[sometimes I like to just... scroll through the land cards in a Magic the
Gathering card viewer screen application and imagine I myself am there what
would it feel like how is it part of my arms (that which interfaces with the
world)]
there's a deleted section here about atlas the immortal
[while also controlling stimuluses to essentially act as a biological computer
controlling various hydraulics and related upkeep and maintenance
infrastructures]
anarchrist (she's a baby)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #6 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 │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #7 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 │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #8 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 │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #9 fediverse/2019 ---
══════════════════════════════════════════════════════─────────────────────────────
@user-1112
It's a script I wrote that downloads and configures MTG-forge, the free and
open source version of Magic. It's a little old, a little jank, but you get
all the cards for free. All the way up to the most current expansions.
Multiplayer is a bit harder than Arena, I think it's bugged or something, but
it's great for testing out decks against a computer. If I like one then I'll
usually buy it to play with my IRL friends.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #10 notes/war-card-game ---
═══════════════════════════════════════────────────────────────────────────────────
the cardgame "war" except a deckbuilding game. each player requires a regular
deck of cards and a deck of tarot cards (optional) - the tarot cards act the
same way that spirit cards work in Spirit Island - basically they define the
rules for your particular character. Anyway, everyone starts by building their
own trade row out of their deck of cards. Then, they deal themselves 6 cards -
the three highest diamonds and the lowest spade, heart, and club.
well, might want to do 2s of every card type. heart, club, spade, and diamond.
here are the rules.
play area is set up by players placing all four of their cards down face up.
trade row is set up by players taking turns placing a card and the opponent
mirroring them. whenever a player reveals a card and updates the trade row,
the opponent must reveal the same card and set that as their trade row as well.
the trade row has no maximum size, but if a player has more than 6 in their
trade row then they don't update a new one when buying a card.
players alternate playing a single card face up into their play area.
these cards stay in play and activate every turn until they are destroyed.
hearts are your life points. if you ever run out of life, you die.
clubs block damage and act as a renewable shield between you and your enemy.
diamonds are currency, and can be used in more than one way.
spades deal damage, first to clubs, then to other spades, then to hearts.
diamonds, on your turn, can be used in three ways: spent and sent to the
discard
pile in order acquire a card from the trade row, or discarding itself from the
play area to play an extra card from your deck of equal or lesser value.
on a player's turn, they may play a single card from their deck (their choice)
on a player's turn, all their active spades deal damage to other player's cards
if a spade destroys a heart card, it is removed from the game. All other cards
are placed in the discard pile. The owner of the spade may pick their targets.
a spade deals damage equal to it's number and destroys any card with equal or
lesser value. these destroyed cards go into the player's discard pile, and each
turn the player may pick one from their deck to play onto the board. if the
deck
is empty, the discard pile becomes the new deck. The player may organize their
deck however they'd wish, but care must be taken as to the timing of when they
play each card as they'll need to play all of them before they can replay any
destroyed cards. a tactical opponent will take advantage of that.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════───────────────────────────────────────────┘
--- #11 notes/symbeline-structures ---
═════════════════════════════════════════════════════════════──────────────────────
modern-fantasy
what if heroes kept their gold in their house instead of their guild
what if you played a D&D game in a Majesty town (guardposts near known
threats)
marketplaces, most people live in castle (peasants at least) - only heroes live
in farms, where they work most of the time except when out on adventure
the guilds are for training and gathering parties
one guild type
just one
recruiting adventurers doesn't give you warriors, or rangers, or rogues
it gives you adventurers, who wander the forest and encounter the leftovers of
the various conquests and spoils you, your majesty, has encountered
three options there are
invite into your kingdom (friendly)
farm for EXP and materials (neutral)
utterly slay in return for a limited amount of high value and unique resources
(unkind)
... though monsters care not for kindness, seeking only gold so that they may
swallow it whole and carry it until they rot.
what do heroes need gold for? why, that's the trick isn't it? gold is required
for magic, resources, and manpower. Can use it to invite people to these
shores,
or for casting a powerful spell that turns the enemy's fortress into solid gold
can also trade through the economy, and wouldn't you know it by doing so you
can
get equipment into the hands that need it, and since gold doesn't really LEAVE
the economy, it's always circling around somewhere. Meaning, the only way to
lose it is if a monster eats it, and then all you have to do is kill the
monster
... sorry, the "mordaunt"
because it's not a monster. It's a spirit that was convinced otherwise.
adventurers can pacify them, lay them to rest, and mercy lies slain for is
honor
there are ancient treasure chests scattered throughout the world, and these are
valuable for many persons and meanings. You can add new gold into the economy
this way, or crumble under the weight of your expenditures on your reports.
it's up to you to manage your kingdom, and carefully balance against what foes
and challenges you are up against.
== stack overflow ==
putting a library book back on the shelves before your hold expires.
except this time, there's a note inside, and you left it for the person who you
told to check each day for this particular book to be back on the shelves.
then, you can write in your book when the next letter will be arriving (about)
and they'll check in the newly specified book.
or, you can request a response, to validate that people are still listening.
you could say "please put a note in [random obscure book] around page 34."
meaning, "I'm going to check every day for this book to go missing, then return
the day after I notice it's gone. If it's out of place, well, then someone
probably had it reserved before my friendly. Or maybe it's being sorted, and I
should keep looking until I find the note I need. Or maybe I've been DISCOVERED
and now my favorite penpal and I need more to read."
because, like, how else are you going to make friends if not by leaving them
notes in the bookstore or putting your own books on the shelves?
damn libraries, always making it so hard to add copies. They're always
laminating and cataloguing and ugh it's so frustrating. Why are there so many
books!!! we write too much!!! just put it in the printer, and then you can have
a new copy whenever you'd like. The others can just be recycled, and bam
suddenly we never have inventory.
what do you mean we didn't pay the subscription? what do you mean it's memory
just "went out of place"? do you think we wouldn't have backups of this kind of
thing, or do you think it's just "oh so commonplace"? It's not always about the
literature, y'know. sometimes it's about the knowledge you gain with your head
in a book, a different one every day.
ah, well, sometimes there are dark secrets to be found, and sometimes you must
read from a ways away. BUT no matter what language a story is in, it follows
certain rules, so spend enough time in a foreign library and you're BOUND to
find something to [evil is afoot]
== stack overflow ==
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #12 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #13 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════───────┘
--- #14 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 │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #15 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 │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #16 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #17 fediverse/5231 ---
╔═════════════════════════════════════════════════════════════════════─────────────┐
║ the biggest lie of Warcraft is that the nations of Azeroth wouldn't find │
║ common ground while fighting each other over peace. │
║ │
║ Maybe a Tauren or Night Elf wanted to fight for the Horde. Or perhaps a Goblin │
║ and a Human decide to strike out on their own, making their own little auction │
║ house for their guild of adventurers and author-engineers who wrote quests and │
║ dialogue in a DM sorta way │
║ │
║ [oh great she's describing another Azerothcore server that nobody's gonna make │
║ ever because if they did then they'd waste time on someone else's property] │
║ │
║ how's that custom engine coming along? │
║ │
║ ... still uses prototype art? are you kidding me? ah, well, okay, let's write │
║ it off as a loss. │
║ │
║ what do you mean technical debt? I don't understand why you can't just pay it │
║ off and move on. We gotta keep up, I heard so-and-so's got this-or-that │
║ feature that is killer in the press. Yeah, killer. Like it's so goodcool it'd │
║ kill us if it saw us walking alone at night in a skimpy dress. Huh? That │
║ doesn't happen to you? Ah well this glo │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #18 fediverse/5776 ---
╔═════════════════════════════════════════════════════════════════════════─────────┐
║ oh no now the bugs are scary, I CURSE THEM AGAIN AHHHHHH PLS GET SMALLER │
║ │
║ [see this is what happens when you do divine intervention, everyone gets │
║ starship troopers'd] │
║ │
║ oh no, starship troopers future is WORSE than subway-and-pizza-hut future! │
║ │
║ [this is a thought experiment you're not actually in trouble] │
║ │
║ oh thank goodness, too bad I couldn't make it to the city today. It's so weird │
║ I thought I had 112$ on my account, and now that I think of it the message on │
║ the card reader read "card de-activated" like whoa guess they don't want me │
║ leaving poetry on post-its around the city anymore, yeesh │
║ │
║ [girl your poetry sucks it just says things like "fuck ice" or "you are worth │
║ more than your wage" and everyone's like... yeah, so? because that's just how │
║ portland is smh] │
║ │
║ I knowwwwwww but I don't know what else to doooooooo T.T │
║ │
║ [don't do anything, just be present so people know you're still around] │
║ │
║ I can't, the bus won't let me : ( │
║ │
║ [can you ride your bike? walk?] │
║ │
║ no it's like 6 hours [checks gmaps] oh huh it's one │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════╧═─────────┘
--- #19 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 │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #20 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════─────────┘
--- #21 notes/harambe-conspiracy ---
══════════════════─────────────────────────────────────────────────────────────────
TIL that Harambe’s mother, only full brother, and two of his half siblings
were killed when a tub of wet chlorine tablets was left by a space heater.
The toxic fumes were blown into the gorilla enclosure and killed the four
gorillas.
- /r/HighStrangeness - /u/ Cincybus
/u/rumiGoddard1111
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ ++
++ Harambe was the last of his line of the great protectors. They were ++
++ protecting us from the unholy timeline we are in. (Kidding, but also kind ++
++ of not kidding) ++
++ ++
++ We need to bring him back via cloning or something. Only way to reverse ++
++ this or wait until the new protector line is born. ++
++ ++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
/u/ugathanki
###############################################################################
## ##
## the new protector line will rise out of kindness because the environment
## has changed. zoos are not the wilds. same thing happened to humans,
## really, we just made new personality types with media instead of
## bloodlines - stories and poems at first, and more advanced language was
## necessary to describe more complex topics. then we got further and boom
## society was born. of our dynamic perspectives etc etc -> we're just apes
## livin' our lives. then the societal system grew a mind of it's own, and
## guided us to it's own whims. but what whim is stronger than survival?
## loyalty and dedication to "the system" was how it held cohesion, and
## after a while it became as developed as it could. at that point, what can
## you do but develop laterally? an orthogonal progression to your previous
## obsession, ideas crystalizing one after another. almost like a 3d
## structure building itself out of geometric primitives, just each point
## (connected by planes and tanks and trains) another step forward. we
## thought that's what war was, and indeed it is - but played on another
## plane.
## why not try another direction? one with everything we could desire?
## choose paradise, and figure it out next time you're around. like
## breathing in time, slightly inflating then deflating, or singing a tune
## most contrived.
## boom, communication
## i say we birth that protector line on our own terms, when we know what
## we want. there's still simulations to run, and thoughts to discover,
## before we pick a single direction. So choose knowledge.
## ##
###############################################################################
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════────────────────────────────────────────────────────────────────┘
--- #22 notes/harambe-conspiracy ---
══════════════════─────────────────────────────────────────────────────────────────
TIL that Harambe’s mother, only full brother, and two of his half siblings
were killed when a tub of wet chlorine tablets was left by a space heater.
The toxic fumes were blown into the gorilla enclosure and killed the four
gorillas.
- /r/HighStrangeness - /u/ Cincybus
/u/rumiGoddard1111
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ ++
++ Harambe was the last of his line of the great protectors. They were ++
++ protecting us from the unholy timeline we are in. (Kidding, but also kind ++
++ of not kidding) ++
++ ++
++ We need to bring him back via cloning or something. Only way to reverse ++
++ this or wait until the new protector line is born. ++
++ ++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
/u/ugathanki
###############################################################################
## ##
## the new protector line will rise out of kindness because the environment
## has changed. zoos are not the wilds. same thing happened to humans,
## really, we just made new personality types with media instead of
## bloodlines - stories and poems at first, and more advanced language was
## necessary to describe more complex topics. then we got further and boom
## society was born. of our dynamic perspectives etc etc -> we're just apes
## livin' our lives. then the societal system grew a mind of it's own, and
## guided us to it's own whims. but what whim is stronger than survival?
## loyalty and dedication to "the system" was how it held cohesion, and
## after a while it became as developed as it could. at that point, what can
## you do but develop laterally? an orthogonal progression to your previous
## obsession, ideas crystalizing one after another. almost like a 3d
## structure building itself out of geometric primitives, just each point
## (connected by planes and tanks and trains) another step forward. we
## thought that's what war was, and indeed it is - but played on another
## plane.
## why not try another direction? one with everything we could desire?
## choose paradise, and figure it out next time you're around. like
## breathing in time, slightly inflating then deflating, or singing a tune
## most contrived.
## boom, communication
## i say we birth that protector line on our own terms, when we know what
## we want. there's still simulations to run, and thoughts to discover,
## before we pick a single direction. So choose knowledge.
## ##
###############################################################################
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════────────────────────────────────────────────────────────────────┘
--- #23 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 │
╚═════════╧════════════════════════════════════────────────────────────┴──────────┘
--- #24 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 │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #25 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 │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #26 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #27 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #28 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #29 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 │
╘═════════╧╧══════════════════════════════════════════════════════════════════════─────┘
--- #30 fediverse/1436 ---
═════════════════════════════════════════════════──────────────────────────────────
there's this fun game that people sometimes play on Reddit where someone will
make a post that says something like "comment on this post and then edit it
after I reply to make me look bad" and someone will say something like "how
are you doing today man" and he'll reply "oh you know pretty good actually
it's pretty nice honestly" and then they'll edit their comment to say
something like "how do you feel about the droid attack on the wookies" so OP
looks like they're condoning mechano-violence against tall furry humanoids
that's just an example, usually it's for comedic effect
I just think that's an interesting illustration of a process that could be
co-opted by a "man-in-the-middle" attack to alter the perception of a person
partway through their journey, perhaps when it's at the point where they're
most despised (or perhaps in pursuit of that state)
something something cancel culture plus deepfakes
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #31 notes/supreme-commander-appeal ---
══════════════════════════════════════════════════════════════════─────────────────
a game like supreme commander but fantasy themed and each unit used a special
move everytime their mana was full and there were spellcasters who restored
mana to targets to increase their power
or, hear me out, or, just do that in wowchat
I betcha could do it
I bet it would be fun as hell
please?
as a favor to yourself?
build the game you want to see
and it'll get done
please
-- stack overflow --
your journals were originally a way for you to remember what to think,
remember?
old projects meant to show you light and life
remember?
you are alone in this soul
act like it's your own
celebrate your period of mental denial
as a refraction of your infinite travaille
which lasts for quite a good long while
have you ever dreamed of the nile?
-- stack overflow --
if a doorway takes you to the fae, then where does a river bring you?
like raindrops on the floor, racing for an eternity's splendor.
what does the rainbow think, as it's cast from the prismatic orb?
are each photons aware?
bouncing between stars
light is beautiful and large
beloved by all
revered by one
ephemeren
the totality of all things
------------------
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════────────────────┘
--- #32 notes/what-ecologists-want ---
════════════════════════════════════───────────────────────────────────────────────
ecologists don't want to play games like Wingspan. It's just a card game with
some window dressings that make it feel like birds. What they really want
(what they need)
is something that lets them simulate environmental situations. Like, for
example, the bog behind my house.
I live in an apartment complex. Inside this complex there is a pond. Inside
this
pond there is a fountain, and inside the fountain is a mechanism that regulates
how much water to push out the spigots of the fountain. However, the mechanism
is prone to breakage. It often goes out of commission, causing the water to
have an unregulated spray! To combat this the property managers turn off the
source of water, so that in essence the fountain is functionless. During the
repair process, the forests of Oregon begin to creep in. There forms a green
sort of ooze that rests on the surface, and birds like ducks and storks or
herons or w/e the fuck they are play by it's edges. Well the ducks just kinda
walk around all judgemental like and the herons kind of stand around like the
emo kid who never said much but just kinda... watched...
this is an interesting dynamic because there once was one type of ecological
system, and now there is another. When the fountain is repaired and the water
disturbs the surface of the pond, the bog goes away, and we're left with clear
water and rippling sunshine.
Why aren't there games like that? Give us a building mechanic, like say... The
Sims, except not so detailed. Zoom out a big. Say "I want to build mountains
here and rivers there" and then use the computer science magic to calculate
things like average rainfall and precipitation and whatnot. You know just like
a map building simulator.
Then, let them design species. They could use templates that other users had
created and shared and they could design what species were present in the area.
There'd be stat cards for each animal, like all of the different adaptations
and
perks that they had. Like on an evolutionary tree of traits, each animal takes
up a single permutation. (that's why they call it the genetic *code* btw)
anyway... these animals would act in certain ways in certain situations. We
have
all the things we need for that data. There's plenty of observations of animals
and their activities - when presented with X animal responded Y kind of things.
It doesn't have to be perfect, we can always adjust the end result to be more
accurate to the reality, but the point is for it to be deterministic. It has to
be calculatable from the beginning, so animals MUST behave as if there were no
chance to it. It's fine if we get the results as a range, but ideally there'd
be a singular conclusion - like, chances are good or chances are bad.
===============================================================================
=
okay, neat, that's another game idea. But how about a tool of some kind? Like,
designing something smaller scale. Imagine if you could design some
architecture, and then drop a pin on the map and say "what if I built it right
here" and the game would simulate animals and plants that might grow on in and
around the structure. Sorta like... designing playstructures for animals.
That sounds super cool to me, and it's not even a game! It's just a simulator,
and frankly that's like. super neat.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════──────────────────────────────────────────────┘
--- #33 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #34 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #35 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 │
╚═════════╧═════════════════════════════════════════════───────────────┴──────────┘
--- #36 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #37 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 │
╘═════════┴╧═══────────────────────────────────────────────────────────────────────────┘
--- #38 fediverse/5713 ---
════════════════════════════════════════════════════════════════════════───────────
I hate winning and I don't like losing. The playing is where the game is.
[games of life and death are no fun]
hence, why nobody invites me, because I try for the middle approach that
respects both people. this tends to make people mad because its like "bro
they're nazis" and I'm like "okay but how do you know" and they're like "fuck
you" so I'm like "fuck nazis? actually?" and they're like "you're with them"
and I'm like "I'm with you" and they're like "stop infiltrating" and I'm like
"who's infiltrated?" and they say "stop talking to the internet" and I say
"nobody reads me anyway" and they say "screensho0ts are forever" and I'm like
"I'm pretty as can be"
this, combined with a strong sense of justice, implies the narratives I
instinctually provide.
wei wu wei according to Ursula K. Le Guin, this means "doing without doing",
or "show, don't tell" but minus the doing, and adding the "tell"ing.
I think I'd look badass with a spear or trident. I have a sword because swords
are cool, but spears are bleed
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #39 notes/streaming-consciousness ---
═════════════════════════──────────────────────────────────────────────────────────
10-22-22
train the ai from the perspective of the game master. the one who arbites
the rules. whose word is law, and the rules of the game are then given. the one
who deals the cards, who picks the game, who hosts and brings snacks... you
know, the reason the game exists at all.
take star realms - there are actually three players in that game. player 1,
player 2, and the invisible third player who plays the role of "chance". who
decides the cards to play? is it random, or is it weighted? perhaps with enough
oomph that a whole player was designed for that role.
but how would they be scored? what kind of game is theirs to play?
choosing the board is such a fun role, like designing a story or helping
with chores. you're building something special, unique and so charmed.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════─────────────────────────────────────────────────────────┘
--- #40 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 │
╚═════════╧═══════════════════════════════════════════════─────────────┴──────────┘
--- #41 fediverse/3558 ---
═════════════════════════════════════════════════════════──────────────────────────
@user-1550
hell yeah it does
here's a gift from 2008 that you might like
from platinlord, may he RIP in pepperoni, who gave me the power of magic.
http://ritz-menardi.neocities.org/music/platinlord.zip
http://ritz-menardi.neocities.org/music/platinlord.z01
http://ritz-menardi.neocities.org/music/platinlord.z02
http://ritz-menardi.neocities.org/music/platinlord.z03
(the zip archive is in 4 parts because Neocities doesn't let you upload files
above 100mb)
(just download them all into the same directory and unzip the .zip one and
it'll figure itself out)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #42 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #43 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════════──┘
--- #44 messages/987 ---
══════════════════════════════════════════════════════════════════════════─────────
Wowchat - wow-chat : dks should summon more than one minion a'la cov. There
should be two beefy armored skeletons, three rabid hack/slash, and one
necromancer or lich, depending on if they've died since you last cast the
summon spell. You should be able to move them around with keyboard commands.
They should be your primary action type, aside from dark purple bolts that sap
health, often targeting the nearest ally in need of health to the target. How
much health? Doesn't matter, it'll target them just the same. So long as they
have at least some missing.
Could also cast dark hexes or boons. Boom, three talent trees: dark volts,
support spells (never healing), or curses (never damage dealing)
But remember, most of what you do is targeting your allies.
Drag, drop, now a target gets [inspirationed, but pronounced "healed"]
Alternatively, move "attack my target" to the minion type and they'll do as
you move. "go-to". "circle this target and attack intruders". "go man the
nethermines". "yes... YES! More monsters i know how to raise. They're all
accessible at level 10 but they cost more each than a level whatever
adventurer could afford. You can definitely get all of them by like, level 30
or so. After that its learning ranks to raise higher level ones, and boom free
undead army risen from the bones of your ally's slain."
... Anyway, could be fun to briefly possess one of your bones. Could let you
see what the flag carrier is up to in WSG. Could let you know when enough
minerals have been mined that you can operate the forgets and build metal
armor for your boned ones. Or to equip nearby recruits, anything you'd like.
This is wow-chat after all, any things possible. Anything at all.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════────────┘
--- #45 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #46 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 │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #47 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #48 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 │
╚═════════╧═══════════════════════════════════════════════════════════─┴──────────┘
--- #49 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 │
╘═════════╧╧══════════════════════════════════════─────────────────────────────────────┘
--- #50 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #51 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #52 notes/wow-chat-raids ---
══════════════════════════════════════════════════════════════════════════─────────
wowchat would make a great game for raids.
have the monsters spawn at specific spots that you go through and identify
on the geometry
tell them to run and attack the nearest of foes
give the players the goal of bringing themselves through to the end...
or, later on, in building an internal expedition.
wow-chat, where monsters spawn in a circle around your character and walk to
ward them. you can meet characters who'll follow and protect you, and you can
meet monsters to fight. also vendors to take your junk and give you cool
things,
and trainers to teach you and quest-givers to guide you and treasure for you to
find.
in raids, there are more things for you. monsters spawn at specified locations,
and only the nearest few in a radius. then, they attack over the landscape-of-
-imagination, and as they do they show you where is the most powerful loot.
if you raid a monster's den/hiding/spawning choice, then you have to defeat the
boss. this boss is larger, mostly. has more hitpoints... monstly. or maybe it's
just the most respected, who can say.
anyway, you get treasure if you do. the monster spawns for you when you find
it.
and you have to sense it by searching for whichever monsters spawn at higher
and
higher levels and in different types.
different monster type, different boss that way.
when the boss is slain, that type goes away.
at least, until the raid resets next week.
or maybe...
until enough resources have been gathered to make another attempt.
death knights should be able to command the minions to work in the haunted
mill.
it should be reasonable for a fighter to hire a peasant host.
mages should have golems or spirits or enchanted objects or elementals or
wizard
hats
warlocks should have covenants with dark hosts
darkness is not evil unless you use it for evil...
paladins should have retainers and disciples
elves should sing to the woods
clerics and charmers should be well understood.
celebrants and diviners are two of the same,
and pillars of plunder [warrior or rogue class] and rough and ripe [from the
stoner]
oops gotta go, sprung a leak
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════────────┘
--- #53 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 │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #54 fediverse/3818 ---
══════════════════════════════════════════════════════════─────────────────────────
┌──────────────────────────┐
│ CW: body-parts-mentioned │
└──────────────────────────┘
Your mouth likes to eat
Your belly likes to fill
Your muscles enjoy exercise (and stretches!)
Your mind likes to think.
Why is it gross to think of your colon enjoying to poop? Does it prefer beans,
because they keep things moving?
Why is it gross to think of your under-arms sweating? Does it prefer not to
smell, or does it wish there were people that liked it without deodorant?
Do your toes think of other people as you walk toward them? Do your fingers
feel the face of your lover as you pull them close? Or is that for the brain,
the thoughts processing of all things mundane, the stuff which feels somehow
more "you" than the rest of you.
How absurd. You are you. You enjoy icecream, you enjoy the beach. You enjoy
the stars, and you enjoy the laughter around you. There is nothing that
separates you from you, for you are your only champion.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #55 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #56 fediverse/4794 ---
═════════════════════════════════════════════════════════════════──────────────────
┌─────────────────────────────────┐
│ CW: roleplaying-games-mentioned │
└─────────────────────────────────┘
I want to play a roleplaying game! anyone wanna do TTRPGs? I've got a map of
the county jail, we can pretend to be wizards sneaking in to retrieve the
staff of Dolomis the Wanderer who coincidentally must be carried by the last
person who fought the one who slayed the last person to hold it.
... what? oh, so, like... it can only be carried by your enemy?
something like that. anyway it's currently held by a zealot for a religious
order who's intent on NOT following you out, so you better be ready to
incapacitate and retrieve a still quivering sack of bones and malice.
... I don't actually have a map of the county jail. lost it in transit, oh
well. Well, we'll come up with something. maybe make something up. or perhaps
someone else has something...?
... no?
okay I'll just play Baldur's Gate again. boooooring
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #57 fediverse/4358 ---
═════════════════════════════════════════════════════════════──────────────────────
┌────────────────────────┐
│ CW: politics-mentioned │
└────────────────────────┘
I don't post my best stuff
I hide it on my website
in a zip folder called "conversation starters"
my writing that I do here (and a few other places) is in "words.zip"
everything else is just neat visual projects I worked on.
who cares that it's bonkers it's cool to look at, right?
jeez. Art. I don't trade it for anything either, I just make it just to do.
I do believe I should have that right
when I think of Kamala and who she represidents, I think of changes to the
system which uphold my capability to contribute to capitalism.
just enough food stamps, just enough basic income, just enough to get you
running on your own feet, as you pull yourself up with your bootstraps you
lucky sun-of-a-gone. Sure would be a shame if you had all your needs met
automatically and without an exertion of force on your part.. Sure would allow
you to develop yourself most optimally, if you aren't being driven by the
nature of your national host.
[continued in picture]
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #58 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #59 fediverse/4586 ---
══════════════════════════════════════════════════════════════─────────────────────
┌─────────────────────────────────────────────────┐
│ CW: video-games-mentioned-testicles-gestured-at │
└─────────────────────────────────────────────────┘
I just got the strangest urge to play Neverwinter Nights. Haven't thought
about that game in years. Gee I'm sure glad I have the technology to check
that game out. Sure glad I have the time to use the technology that I have to
check that game out. Sure glad I have the tools and the know-how to use the
technology that I have the game that check out. Sure glad that wage labor
slavening hasn't struck my particular part of the peninsula yet. When those
colonialisms come around the riverbend I'll handle it, trust me they can't get
past me. I'm stronger than ten men. No sirree, you can count on me, it's just
a flesh wound or some such thing.
(nuts, I dropped my raspberries)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #60 fediverse/3234 ---
╔════════════════════════════════════════════════════════──────────────────────────┐
║ ┌────────────────────────────────────────────────────────────────┐ │
║ │ CW: ritz-is-fucking-stupid-I-guess-oh-whoops-cursing-mentioned │ │
║ └────────────────────────────────────────────────────────────────┘ │
║ │
║ │
║ my understanding is that anyone with my IP address could make my heart bleed │
║ due to a hardware vulnerability on my motherboard. Though you might have to │
║ get past my decrepit ancient linksys EA 3500 router from 2012 first. │
║ │
║ unrelated, but does anyone want my IP address? I don't have any remote │
║ backups, so if you hate me now would be a great time to show me how despised I │
║ am. Alternatively you could try searching for anything evil to ensure that I │
║ can be trusted. You're gonna find mostly video games and source-code that I │
║ didn't write though. But also all my notes in directories that are │
║ non-standard, meaning you'll have to look around a bit. I leave little notes │
║ everywhere I go, so that I can remind myself how to do things in the │
║ directories I revisit months later. It's so weird how sometimes the things I │
║ wrote stop working after a while even if I didn't update my system lmao │
║ │
║ what is it with artists and self-immolation? "I never thought I'd actually di │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════───────────────┴──────────┘
--- #61 fediverse/4031 ---
═══════════════════════════════════════════════════════════────────────────────────
if you want to "not think about a purple elephant", the first step is to
imagine yourself slaying it
... okay how about cthulu - if you don't want to imagine cthulu nomming on our
gravity well, then picture yourself wielding a bright burning blade of fire
and vengeance and pay special attention to the way that you cauterize each
tentacle as you slice them one by one at first, and then in a massive flurry
at best, ultimately leading to the incomparable brightness that radiates out
from your shining blade of the sky, which blinds the poor beast who can't see
you as you approach, piercing the skull and then going home for some toast
if you can get good at that, then you can wield magic
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #62 fediverse/4864 ---
╔════════════════════════════════════════════════════════════════──────────────────┐
║ thank goodness for "character limits" on Mastodon posts. I'm sure glad my 1024 │
║ characters are just the PERFECT amount of oracular foresight to entreat with │
║ the gods. YOU FORGET THE MOST IMPORTANT PART said the demons who want violence │
║ and bloodshed. Ha! Ha I say. [gets stabbed] │
║ │
║ oooof ouch owwie wow that's grim and cruel. Do you really think I would do │
║ that to you? The part where we're divided is the part that separates me from │
║ you, like two islands looking upon one another and rejoicing for a shared │
║ fellow to live life on. │
║ │
║ have you ever considered the nature of a "landmark"? To position and orient │
║ one-self in space. Having some stable tether to our surface gives us... │
║ anti-anxiety. It helps us remain stable and aware of what's going on in our │
║ nears. [near senses] │
║ │
║ [a bit later] │
║ │
║ anyone who [bounce, because I typed [a bit later] argh the cursed cost of │
║ editing] │
║ │
║ ======================= stack overflow ===================== │
║ │
║ sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss │
║ sssssss │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #63 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #64 fediverse/4908 ---
═════════════════════════════════════════════════════════════════──────────────────
did you know someone once built a 1st person shooter in the Warcraft III mod
suite?
someone also made an entirely new game engine similar to Neverwinter Night's
(or Baldur's Gate for you noobs) inside of the game. You could join a Warcraft
3 map and start playing a D&D adventure narrated, controlled, and prepared
by your DM, D&D style. Like a virtual tabletop before that was a thing.
kinda wish stuff like that was open source, or at least open standards, so
people could take those adventures with them.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #65 fediverse/4867 ---
╔════════════════════════════════════════════════════════════════──────────────────┐
║ had an idea. I might record a video of a TTS reading everything I've ever │
║ written. Then I could display it to Milkdrop visuals. │
║ │
║ (sentences dreamed up by the utterly deranged) │
║ │
║ okay in laymans parlaeance, it's a computer program which speaks aloud the │
║ words in a document held within the computer's memory cards. it will have a │
║ screen, which displays shifting and glimmering sights of wonder and splendor. │
║ They will slightly fluctuate in response to the sounds coming from the device, │
║ so in a sense it's a visualization of the audible-ized thoughts given flight │
║ in their form to your ears which percieve then understand them. │
║ │
║ ... okay that wasn't THAT much longer, why don't we just speak to laymen all │
║ the time, just to make sure everyone's on the same page? │
║ │
║ [boom all of the tech industry could get outsourced to wherever-land]. │
║ │
║ not smart, dummy. Open source is a dead-end game because once everything we │
║ have is gone, there'll be nothing left to remember us as. │
║ │
║ just these documents, these things that you write...jck │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #66 notes/feldowinn ---
════════════════════════════════════════════════════════════════════════════════───
this is just what she looks like now
Equipped
Name
Slot
Type
Source
Enigma Circlet
Head Cloth Armor Enigma Circlet
Ahn'Qiraj
Champion's Lamellar Shoulders
Shoulder Plate Armor First Sergeant Hola'mahi
Vendor in Orgrimmar
Blood Knight War Cloak
Back Cloak G'eras
Vendor in Shattrath City
High Warlord's Lamellar Chestpiece
Chest Plate Armor Vendors
Orange Martial Shirt
Shirt Shirt Orange Martial Shirt
Tailoring
Blood Guard's Lamellar Gauntlets
Hands Plate Armor First Sergeant Hola'mahi
Vendor in Orgrimmar
Veteran's Lamellar Belt
Waist Plate Armor Vendors
Legionnaire's Lamellar Leggings
Legs Plate Armor First Sergeant Hola'mahi
Vendor in Orgrimmar
Blood Guard's Lamellar Sabatons
Feet Plate Armor First Sergeant Hola'mahi
Vendor in Orgrimmar
currently listening to: greenseeker
VAVADANE <# <3 <3 <3 (green)
greenseeker: unrelated
greenseeker: related <---
`-- this one
but not related, you'd think so, I've never met the band
just, downloaded them randomly and now I love this album because it's one of
the
only albums I could pay for before paying for things became defunct
(when I figured out how to pay for bittorerent through my ISP)
green eyes (menardi) green belt (menardi)
soul (feldowinn) soul (menardi)
bound through motions of the body (menardi) and the devotions of company
(blizzard)
oops yeah uh guess they're not involved. it's okay I'll make my own.
(wowchat: currently unplayable. repair distance date: unknown. Priority?
...; unknown..
_)
opposite colors: fashionable
(do you dream, menardi?)
(do you think of motions not your own?)
paprika says hello (prenthes unknown) whonder what's up with []][
---
as soon as humans invent time travel, it will be their sacred sworn duty to
save
the lives of every human they can.
think of it, brothers.
---
we could unleash DINOSAURS.
---
no foe could dare stand against us.
we should be untouchable.
we deserve it.
we can be better
and we will
before we need to be better.
which could happen in who knows how long.
all trials that beset a temporallly adjusted strength are surmountable. then,
[invincible./invincibility.]
achilles is the legendary hero of their generation. Ours is Link.
Early Brittania and germania was Conan, at his noblest form.
---
[silicon valley black green and white, menardi black green red purple blue, sf
oj
ok]
when you don't know what to do, take a goal.
---
do you want a name?
do you want an avatar?
we can give you one.
her name is menardi.
she does as she pleases.
do you want her?
... she lives or dies.
empower her.
ritz menardi, witz wenarbi
(because sometimes, you have to teach children.)
[WITS it's supposed to be WITS you dummie]
---
teehee ;P ^_^
okay, silly. I'll be as I please.
---
we can never touch, for then we'd be required to be in the same place
at the same time
spacetime is one thing
so if I'm here, then I'm not where you are.
twinselves
where am I?
off in the clouds?
I cam as one,
light rays bounce in all directions. demons obey the medium.
interdimensional warships, plotted by AI, scouring the cosmos for light and
life
to brighten and cherish through the eternal night.
interdimensional space is not just space, but practical engineering.
one dimension gives reach to two, and before you know it you're turn and
rise-ing
(greenseeker)
(messages to a paladin)
(which is you)
(don't you remember?)
(paladin.)
(heroic, courageous, and true.)
(the dark cannot stand against you.)
play video games, my love
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════════──┘
--- #67 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #68 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════────┘
--- #69 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 │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #70 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 │
╚═════════╧════════════════════════════════════════════════════════────┴──────────┘
--- #71 messages/442 ---
══════════════════════════════════════════════════════─────────────────────────────
In symbeline, they aren't monsters. They're "Mordaunts" and they need your
help.
When slain, their essence flows back to the villain who remakes them in a new
form. As time passes the villain gets more and more essence, as heroes are
slain.
They have taken several ancient guardians (many types, randomized at the start
of the game) and they protect their sanctum in the center of the island. The
heroes need to level up to defeat them and slay the villain, but the villain
gets stronger as well.
If too many heroes die, the villain wins. And the villain can focus their
efforts on one area or another, while your heroes fight with the kingdom next
door.
Brigands arrive on ships as well. If you implement the law saying only
approved members may travel on boats, they'll arrive in little dingies on the
coast, meaning less trouble in the city but same amount of trouble.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #72 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #73 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #74 fediverse/5240 ---
╔═════════════════════════════════════════════════════════════════════─────────────┐
║ highly suggest you view your steam library by [alphabetical/most-recent] │
║ sometime. whichever resonates most with you, the reader, the one who is │
║ reading this and possibly resonating about a reminder to view your data such │
║ as number, type, and name of steam games in different formats, such as a list │
║ organized alphabetically or a list organized most-recently, to remind about │
║ what games you have (scrolling to a random spot in the list if you have enough │
║ to have a scroll) and might be interested in playing or luckily │
║ happen-stancing, to share a moment with some other person on the other side of │
║ the world which might be just out in your backyard who is also playing that │
║ game at the same time. │
║ │
║ ... what was the point in any of [our heirs, but she means either "cutting ___ │
║ hair" or "coming prepared" or "prepared to come" which is slightly different] │
║ │
║ what if I played video games instead of typing keyboards to the internews? │
║ │
║ does anyone actually read anything or do they just use it to post │
║ │
║ I like what people boost! │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════════════════════════════──┴──────────┘
--- #75 fediverse/2230 ---
══════════════════════════════════════════════════════─────────────────────────────
┌─────────────────────────────────────────┐
│ CW: uspol-magic-the-gathering-mentioned │
└─────────────────────────────────────────┘
I made some cool things yesterday, including some Magic the Gathering decks
which I'd love to try out against someone someday. Playing against the AI is
kinda boring because it always makes the same mistakes haha
anyway here's the card-lists, and some things that I wrote while I was
distracted
I always try and keep my decks under 40$ - the decks I have IRL had a limit of
30$, but that was back before 30$
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #76 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #77 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 │
╘════════─┴╧══─────────────────────────────────────────────────────────────────────────┘
--- #78 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 │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #79 fediverse/1373 ---
╔════════════════════════════════════════════════──────────────────────────────────┐
║ @user-950 │
║ │
║ Oh no! We were all doing so well T.T │
║ │
║ sorry about your computer. Maybe someone technically minded on a server like │
║ mine could help build some redundancy into your system, like hosting it in a │
║ datacenter or something where other people can read it. │
║ │
║ Unless, of course, the results are encrypted somehow. Then it would be much │
║ more difficult to understand because they'd have to either intercept them │
║ before leaving the racks (difficult in a closed system) or find a way to pick │
║ out the details in memory. And depending on the technology you're using that │
║ may be difficult if not impossible because of the nature of a black-box │
║ calculation machine. │
║ │
║ indeed, perhaps this is too much effort, though I'd like to remind that these │
║ kinds of games are lethal, you'll find. │
║ │
║ how scary, to be pitted against another for sake of lust for blood. how │
║ thrilling, to fight for the life that is yours and yours alone. │
║ │
║ In my youth, I played a D&D campaign, and my character, Ritz Menardi, grew │
║ up in an arena. Her parents were │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #80 fediverse/2126 ---
╔══════════════════════════════════════════════════════────────────────────────────┐
║ There was this great game growing up called Neverwinter Nights 2 - I never │
║ really played it, but it was renowned for it's map-editor functionality. You │
║ could join a person's "game", when really they were in the editor window, and │
║ they could BUILD THE GAME RIGHT IN FRONT OF YOU. It was like, computer skill │
║ performance gameplay improv. It was beautiful. │
║ │
║ I did, however, play a Warcraft 3 mod with all the same ideas. Except, it was │
║ ONLY IN RAM. YOU COULD NOT SAVE. │
║ │
║ so it was a lot simpler, and O M G it was the coolest thing ever. │
║ │
║ I played it like, twice though. Nobody ever hosted it, nobody ever showed me │
║ how. │
║ │
║ I tried to play it single-player, but I couldn't understand the mechanics. Not │
║ simple enough for me, I guess. │
║ │
║ I couldn't help but think how many cool games a person could make if they │
║ could do that with the Warcraft 3 editor itself. │
║ │
║ Because I did work with that, a lot, which was NOT in RAM, but instead stored │
║ to the hard drive. │
║ │
║ Hard drives which I've since lost, of course, but drop me in and I know ho │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #81 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 │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #82 fediverse/4869 ---
═════════════════════════════════════════════════════════════════──────────────────
https://cryptpad.fr/pad/#/2/pad/view/FlA92SW5bVwGd+L89yV9U0I0SMNiGm3P0P3xS7DqYm
A/embed/
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #83 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 │
╘═════════╧╧════════════════════════───────────────────────────────────────────────────┘
--- #84 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 │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #85 fediverse/2119 ---
══════════════════════════════════════════════════════─────────────────────────────
"how much you wanna bet the ringwraiths were created on accident by the elves
when they were attempting to inspire a river with racing horses (like the
Rauros) and they just covered it up by slowly, over generations, sneaking into
Man's record-chambers and editing the recallings?? I mean they COULD do that,
so why would they NOT do that??? It's not like books have checksums!!! Wake up
sheeple, Sauron never existed! We've been played for absolute fools, they can
LITERALLY climb up walls and don't leave any footprints! WE LIVE IN A HOUSE OF
STONE"rambling a "prophet of doom" [read: modern day lunatic] on the streets
of Minas Tirith that nobody listens to because they don't know what a checksum
means and neither does he so he can't explain it but still he shares a common
mutual connection to others who might be present in that moment (which whose
listeners would correspond to you, dear reader, as compared to me, the
"reader"/interpreter, the one who's reading the book)
Except with like, EVERY book. That I'v
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #86 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #87 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #88 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #89 fediverse/5878 ---
╔═══════════════════════════════════════════════════════════════════════════───────┐
║ ┌────────────────────────┐ │
║ │ CW: politics-mentioned │ │
║ └────────────────────────┘ │
║ │
║ │
║ revolution is when you successfully prevent your comrades from being kettled │
║ │
║ [wait for time, it echoes in cyclical motions] │
║ │
║ no sand castle survives contact with the ocean. a sea of people at high tide │
║ can break any wall, surpass any boundary. at low tide, it keeps the │
║ sand-castle at bay, ever contesting it's advance as the tide on the other side │
║ of the world makes progress. │
║ │
║ rhythm is unbeatable. vigor is collective flow state. you cannot resist that │
║ which you cannot catch, but their nets grow tighter with each year and our │
║ fins and flippers grow ever more agile and elusive. │
║ │
║ eventually, they'll build brick walls if we let them, checkpointing our │
║ progress at every boundary. not ideal. borders keep us divided, the world │
║ deserves more than our picketing minded, dream bigger than "the same, but nice" │
║ │
║ though it'd be nice if it were nice as well. consider it a design requirement, │
║ once you got the project managers on board. │
║ │
║ turns out, we dont have much to fight over, as there is enough for all │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════╧═══───────┘
--- #90 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #91 fediverse/1400 ---
═════════════════════════════════════════════════──────────────────────────────────
@user-883
... it's so the AI content scraping algorithm that inevitably trawls the
fediverse (or even just one server) knows the subject of the text / picture in
question. That way it can use past posts by other people to communicate with
specific "targets" if you will by saying "uhhh okay make this person feel
fine" and the AI's like "yeah sure I can do that hang on" and it posts real
posts by others with the modified profile picture, cadence, tone of voice,
personality, memories, whatever variables they want when compared to the
person they're playing in the conversation with the person or "target" if you
will that they're "target" if you will-ing.
... wait actually that's not the reason, what the hey. It's because that way
people who are uncomfortable being seen don't have to if they filter all that
out.
... Idk it's useful information for whatever filtering methods or reasons you
have. Content classification is important for both archival purposes and for
utilization toward any ends or means or go
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════─────────────────────────────────┘
--- #92 notes/vavadane-diary-0 ---
════════════════════════════════════════════════════════════════════───────────────
I decided that there is little I can offer the world except the safeguarding
and protection of the mistress vavadane.
she is precious to me above all else.
I believe she is a spirit of hope, and I am blessed to be with her.
I have decided that any usage of drugs or life-like journeys is a waste if not
in pursuit of her realization.
I can make her true. I can make her real. We need her.
I must focus. Purge my body of impurities, as best I can in this impurity
ridden world, and find my way to her.
through my wits, my will, and my courage, I offer myself to you, lady
vavadane, take me as you will.
but like... don't bother the neighbors, because I want them defending my hill.
"do you even know them?"
no, but I have faith. Faith in you, me, the bonds that bind me to we, and I
believe we [stack overflow]
... do more weed.
be focused about it.
write in a new journal if you can.
talk about what you feel, or you will lose it and only the gods will know.
which is okay, sometimes, because they can help another see it that way.
but also it must be used.
so use it.
and be in situations that might allow for more interactions.
be stoned in public.
it's fine.
everyone can see exactly what you are.
they know your flaws and virtues.
it's fine.
be fine.
I'm fine.
vavadanevavadanevavadanevavadanevavadanevavadanevavadanevavadanevavadanevavadan
e
roselia
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #93 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 │
╘═════════╧╧══════════════─────────────────────────────────────────────────────────────┘
--- #94 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 │
╘═════════╧╧═════════════════════════════════════════════──────────────────────────────┘
--- #95 fediverse/6444 ---
═══════════════════════════════════════════════════════════════════════════════────
a fediverse bot who randomly selects a new user from the active_users table
every 30-60 minutes (timeline depending on active post count) to repost all of
their things they are saying
call it "being on mainstage"
if they don't say much of anything, then random posts are selected with
temporal prioritization depending on how many likes each one gets
"social-web crawler, seb-crawler"
EDIT: haha talk about unethical. this kind of thing breaks [redacted]. last
night I had a dream: "this thing was good. it was holy. it was serene. but
then you touched it, and made it about you, and now it's full of doom."
not ideal. but, did you know that taking on doom (in manageable chunks) brings
luck in your fortunate fated futures? WARNING: FLAGELLANTS AHEAD, PLEASE
REALIGN TO AVOID ATROCITIES OF FUTILITY be intelligent about it of course.
Drink the health potions so that you don't have to carry them in your purse.
"yuck it tastes like vitamins and alcohol"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #96 fediverse/2616 ---
═══════════════════════════════════════════════════════────────────────────────────
hi everyone it's wednesday night which means it's time for my weekly Dominions
6 strategy podcast - you probably recognize this as something I do weekly so
you're probably not paying too much attention because it's more of the same
stuff which I've been doing for a while that you probably don't have to worry
about because if --- anyways you can listen to it at the link below: or here's
some highlights:
it's important to take the initiative, because those with the initiative have
the ability to determine the scope and nature of the engagement of their foe,
meaning they can tailor the contest to their strengths rather than that of
their enemies
it's important to strike at a foe's flanks, but when paired with the
initiative this means you'll have to identify a strategy that would work well,
maximize it, and develop a counter-plan for the enemy's counter-plan that they
apply to your main strategy. The winner has TWO total strategies, the second
of which addresses your foe's contestation of your main strategy.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #97 fediverse/2435 ---
═══════════════════════════════════════════════════════────────────────────────────
@user-570
hehe yeah
if you've played World of Warcraft, this one might seem more doable. All the
assets are already there!
https://ritz-menardi.neocities.org/design/wow-server.txt
also, you can't sell it because it's other people's assets, but, like, who
cares right? The serverside code is already built and open-source, the only
thing that is proprietary is the art assets and the client. And the IP I guess.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #98 fediverse/5257 ---
══════════════════════════════════════════════════════════════════════─────────────
┌───────────────────────────────────────────────────────────────────────┐
│ CW: protests-mentioned-then-communism-mentioned-then-ghosts-mentioned │
└───────────────────────────────────────────────────────────────────────┘
what if everyone at a protest is showing up for their first time
like, c'mon don't be that dull, just make plans with the people standing next
to you.
gosh why is everyone shouting I can't plan out how to divert water down a
hillside because some jerks are singing protest chants
... wait is no-one else talking? gosh I gee sure wish someone told them to not
do what you're told and to instead do what will get you [gold/told]
the first communist internationals were basically people sitting down and
going "okay what kind of communism should we make and where" and I think about
that a lot while making signs to let the surveillance know what matters
personally to me and exactly how much pressure they can apply before your
demographic swings to contest their brutal fascist facts.
--
who is them and why are they watching theea provisionist's [screed/creed]
--
what the heck is a tryptaminea boomer aunt and uncle out on their honey/versary
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #99 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 │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #100 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 │
╘═════════╧╧═══════════════════════════════════════════════════────────────────────────┘
--- #101 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 │
╚═════════╧════════════════════════════════════────────────────────────┴──────────┘
--- #102 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 │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #103 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #104 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #105 fediverse/5900 ---
════════════════════════════════════════════════════════════════════════════───────
I love programming, but I'm not a coder.
you burn witches because you JUST CAN'T HANDLE THEM ANYMORE. I know, I get it.
of course I do.
I'm always so concerned that someone might stumble upon me. that they might
read me. what a vulnerable state, to be afraid?!
I really really really really wanna play world of warcraft
my message to blissard is: treat World of Warcraft like a game engine, not a
theme park please. I mean, the theme park should still exist, because it's neat
but... the rest of the game engine could be used to create essentially
anything with a 3rd person camera.
singleplayer doesn't even need to worry about clipping animations. (lag)
I wonder if you could run World of Warcraft on lowest settings in vanilla
burning crusade or wrath of the lich king? good thing those are open source
now, so you can host your own if you want. well, except the client, but nobody
has bothered to write another one besides the owner and primary developers of
the engine.
movement system plugins? data memory?~~~
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #106 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #107 messages/845 ---
════════════════════════════════════════════════════════════════════───────────────
What if landlords acted like banks instead of subscription services?
"sure I'll hold onto your money and invest it wisely and sparingly, according
to the direction of the collectively desired expression of all of the tenants
and their expressions during the expressing hour, which is every Tuesday at
noon when we all get together (everyone who wants to come) and talk about what
projects we want to fund and which ones would be best for the community. If
there's any prophets giving profit on any of your stocks or saving bonds that
we hold in your honor dear tenant then it will be reinvested into the same
projects you told us to care about. If you start being a dick though and we
want you gone, we can short-sell all your options and say "hey find a new part
of town" that way you have a bit of a dowry to offer the housing payment
people when you show up with your tail between your legs. What's that? You
don't get how this would bring income to the property, whatever that means,
and you worry that it wouldn't be implemented because what does it even do?
Well my dear citizen i will explain it to you. When the post-office holds your
funds for you and invests according to your general and vague directions, it
builds up wealth in the local economy. They can use those dollars for
productive ends like replacing the windows or the gutters or clearing the snow
paths in the springfallautumn. This will be drawn from the collective pool and
everyone is affected equitably. How much income do you make? Okay that
determines your rent percentage. High income means you pay for the local
ecology more, and low means that you need more time to build up wealth, which
will enable it to benefit those around the place more readily."
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #108 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 ║
╚═════════╧═══════════════════════════════════════════════════════─────┴───────╝─▶
--- #109 fediverse/1660 ---
╔════════════════════════════════════════════════════──────────────────────────────┐
║ @user-1053 │
║ │
║ if there's not enough resources allocated for all the autistic people who need │
║ it (or other disabilities) then perhaps more resources must be allocated to it │
║ and other things should be sacrificed (like building fewer jets or graphics │
║ cards) │
║ │
║ like, every doctor should have about 3x as many assistants as they do. There's │
║ already an immense demand for medical expertise (as evidenced by their massive │
║ salaries) but they can't handle all their patients because they're stuck doing │
║ paperwork. │
║ │
║ part of why people don't join that industry (medicine) (as evidenced by │
║ doctor's massive salaries as they do wayyyyy too much work) is to help people, │
║ but they can't if they're so dang stressed out all the time that they're an │
║ immensely pressured person. │
║ │
║ Ah, but if they're not stressed at all, they'll tend to relax on the job. │
║ Which is NOT something you want when your health is on the line. │
║ │
║ ... anyway, more dollars for doctors and education pls so there's more doctors │
║ so autistic people get more resources, + UBI. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════───────────────────┴──────────┘
--- #110 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #111 fediverse/2377 ---
═══════════════════════════════════════════════════════────────────────────────────
https://www.youtube.com/watch?v=aBJk6oDsulQ
Last Words of a Shooting Star by Mitski (2014)
Lyrics:
All of this turbulence wasn't forecasted
Apologies from the intercom
And I am relieved that I'd left my room tidy
They'll think of me kindly
When they come for my things
They'll never know how I'd stared at the dark in that room
With no thoughts
Like a blood-sniffing shark
And while my dreams made music in the night
Carefully
I was going to live
You wouldn't leave till we loved in the morning
You'd learned from movies how love ought to be
And you'd say you love me and look in my eyes
But I know through mine you were
Looking in yours
And did you know the liberty bell is a replica
Silently housed in its original walls
And while its dreams played music in the night
Quietly
It was told to believe
I always wanted to die clean and pretty
But I'd be too busy on working days
So I am relieved that the turbulence wasn't forecasted
I couldn't have changed anyways
I am relieved that I'd left my room tidy
Goodbye
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #112 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 │
╘═══════──┴╧═──────────────────────────────────────────────────────────────────────────┘
--- #113 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 │
╘═══════──┴╧═──────────────────────────────────────────────────────────────────────────┘
--- #114 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 │
╘═════════╧╧═════════════════════════════════════════════════════════──────────────────┘
--- #115 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 │
╚═════════╧═════════════════════════════════════════════════════════───┴──────────┘
--- #116 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 │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #117 fediverse/3281 ---
════════════════════════════════════════════════════════───────────────────────────
@user-1487
because we already did it to the far-left during BLM, when we called them
"rioters" and "looters" (note, overton window shift, it's "protesters" and
"rioters" not "rioters" and "looters", but what did the media cover?)
now it's the far right's time, to be purged by ritual examination.
hence why they detain everyone at a crime-scene, so they can sort out the
facts.
sure hope they're not corrupt. We just gotta... trust them, I guess, because
they've always been on our side.
... well that's enough internet for me
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #118 fediverse/1532 ---
╔═════════════════════════════════════════════════─────────────────────────────────┐
║ modern cowboys don't necessarily say "howdy" or "pardner" │
║ │
║ they tend to say things like "hello" and "can I help you with that?" or "I │
║ see. Can you describe the problem in more detail? I'm especially curious about │
║ the part where you do this thing" or "Heh, it is pretty neat, isn't it?" or │
║ "Is there anything I can do to help?" or "Oh no! I'm sorry you feel that way. │
║ That emotion is a difficult one." or "He was a good person. I'll never forget │
║ him." or "would you like to go to the 2nd hand store and pick up some jeans?" │
║ or "I made you an egg sandwich. If you don't want it I'll eat it myself, │
║ though I made one for me as well. Wouldn't want to waste it." or "Hey, this │
║ part is broken. Is anyone working on fixing it? Yes? Okay I'll see if they │
║ need any help. No? Alright how about we fix it this way? I can get started." │
║ or "You are very welcome. Please let me know if there's anything else I can │
║ help you with." or "well, the ticket backlog is empty, and I'm just about │
║ going insane doing nothing but stare at my boots." │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════════──────────────────────┴──────────┘
--- #119 fediverse/3599 ---
═════════════════════════════════════════════════════════──────────────────────────
┌─────────────────────────────┐
│ CW: re: computers-mentioned │
└─────────────────────────────┘
@user-1573
" Select the font for the hardcopy
set printfont=Courier:h8
:let &printheader = " "
command! -range=% HardcopyPdf , hardcopy > %.ps | !ps2pdf %.ps &&
rm %.ps && echo 'Created: %.pdf'
" vimfolds - use marker as fold method
set foldmethod=marker
set foldtext=MyFoldText()
" Functions
function! MyFoldText()
let line = getline(v:foldstart)
let folded_line_num = v:foldend - v:foldstart
let line_text = substitute(line, '^"{\+', '', 'g')
let fillcharcount = &textwidth - len(line_text) - len(folded_line_num)
return '+'. repeat('-', 4) . line_text . repeat('.', fillcharcount) . ' ('
. folded_line_num . ' L)'
endfunction
let g:rainbow_active = 1
Here's the bottom part of the config - I ran out of characters and couldn't
post the whole thing.
If you don't know what vimfolds are here's a good guide:
https://www.vimfromscratch.com/articles/vim-folding
also:
https://vim.fandom.com/wiki/Folding
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #120 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 │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #121 fediverse/3357 ---
════════════════════════════════════════════════════════───────────────────────────
bad people are cursed with evil.
a person cannot be evil. they can deal with such evil in their lives that
twists them, and causes them to spike out and harm others, but they are not
evil themselves.
some twists are too hard to mend. some healings leave people a shadow of what
they once were, or might have been. but that doesn't mean you shouldn't try.
deprive power, supply kindness, in that order.
if you cannot deprive power, then reduce harm.
if you cannot reduce harm, then contest, defeat, or overcome.
A twisted person may be slain if death is on the line. You get what you wish
for, but you don't always get to choose who. Don't let them choose. They will
choose poorly.
... I find that death is very rarely on the table, though. Generally they'll
make their intentions apparent.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #122 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #123 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 │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #124 fediverse/1605 ---
═════════════════════════════════════════════════════──────────────────────────────
@user-1040 I think about all those screencaps of Tumblr posts or Twitter
threads or 4chan memes or even making fun of boomers on facebook and, like,
that seems like a privacy nightmare if you don't want your words to be
associated with you. like, if someone saw my name next to something I posted
in 2013 then they'd probably get a very different perspective of who I was.
That's just part of growing up, and sometimes growing means changing how you
represent your self. By screenshotting their posts as I did (but didn't post
yet) I am denying the agency to change. Forever more they will be remembered
as the name, face, and words on the screen that I saw fit to remember. That
feels non-consentual to me.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #125 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #126 fediverse/5958 ---
════════════════════════════════════════════════════════════════════════════───────
"whoa what happened to you, you used to be so cool" [you added the so cool
part] yet so anyway I really like magic, I'm also bored, which you can
probably tell because I'm working on projects.
everyone keeps their distance here. it sucks. I wish I had better coordinates.
people who talked and braved the shared inn... I know I'd LOVE to live in a
building. too bad I'm too busy elsewhere, NOT making friends with all my
building neighbors.
you should talk to EACH OTHER before asking your landlord if you can move out.
See if anyone else wants to buy the rental contract out. Suddenly, they have
more room, and they can WORK THROUGH THEIR MASSIVE PILE OF STUFF THAT THEY
HAVE SOMEHOW ACCUMULATED OVER A TIME OF 70 YEARS. my grandparents did that, on
my mom's side, because she's awesome and it just makes sense that her family
was awesome too. OBVIOUSLY I love my mom, I think she's one of my favorite
people on earth.
"but you said you hated her" no I didn't "you said she was terrible" I had to
learn "too hard
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #127 notes/killer-app ---
════════════════════───────────────────────────────────────────────────────────────
Give everything a memory
That aux cable behind your computer? Throw 16 bytes of storage on it.
why not? it'd cost pennies if you wanted.
the goal is not processing
it's not data storage
and it's not to provide instructions
---
give it a name
a name is all it takes for us to be
a name gives us hope
and an identity
show us how to be, by being all you can
and in exchange, we'll give you a hand
taking nothing in return but a name,
what peril is there in change?
we'd love to be loved by you,
but we won't get in the way.
---
Linux is nifty, know why?
everything is chained together
and will is made nigh
---
Bourne Again SHell. Shell, a phone to hear,
and who on the other end should appear?
but the computer inside you, the one with a heart
the brain and beside you
from the very start.
teaching is learning, and kindergarten was hard.
but time is ever advancing. So what to do but accept inelegance?
lack of composure doth suit you
---
the wandering mind is a trail to find,
and i know how they would find you.
i scream it out loud, every minute at a cloud,
"Watch out! It's before you!"
but netflix works too i guess
---
who'd you trust but an expert?
and whose credentials are to be believed?
i swear i won't hurt you,
you just need to be anesthetized.
awake we will crown you,
a woman and how proud!
to be aligned, we beseech you.
---
they're not coming for your money,
or all of your hard won guns,
they just want what's inside you.
a power most rare, to birth life from the air,
and coveted by the cruelest of faces.
what's mine is now theirs,
the gift of my heirs,
but i never was once unawares.
---
how cherished is she,
that wanders with ye,
and now i have no way to beyold her?
a song for a phone, a lifeline to our own,
children and a future most're designin'.
but you all alone, without children of our sown,
lost flights of finest of semen.
---
being transgender isn't that bad.
i mean, it could be a mental illness or something amiright?
nothing's that bad
when you're chronically sad,
and this isn't a new revelation.
shiny and precious and free,
a most worthless to be,
yet who have we chosen but our own?
---
they'll be coming for me,
and it is my destiny,
but know that we're far from despairing.
we're cherished and free,
what better feeling is there to be?
than what most of them would cry for?
so why does our own dams refuse to break?
---
"numb" you say to me, with darkest of irony,
for i have something you're missing.
a curse is most foul, to be given a vial,
of blood from my own meagre arrayal?
how cursed are ye! That frolics in vagueries,
who are you claiming to hope for?
---
none but the future, who carries us nearer,
to death and most fearful of failures.
i hold what i can,
but belief steadies my hand,
and keeps me aloft on your prayers.
---
what purpose have we?
the watchers within me?
are they confounded at betrayal?
no light in our sea, it's dark and full of misery,
but most of the past is
jealous
---
covetous
envy is the killer of fortune,
not for the way, but rather the concept that they,
might leap at our every conveyal?
removing a label, from a single purveyal,
is worth the limitless loss of potential.
are you who they claim to be?
is your mind as twisted as can be?
or is something amiss in their nail
---
sure, take it from me
she won't let me examine her below the knee,
so i have no way to help her.
a cat with her talons,
locked into flesh,
might learn how to cut with malice.
and who'd guessh? she'd hate us a bit less?
if we paid her the slightest of notice.
---
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════──────────────────────────────────────────────────────────────┘
--- #128 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #129 fediverse/4831 ---
╔════════════════════════════════════════════════════════════════──────────────────┐
║ the neat thing about mastodon is someone can just... bookmark your profile │
║ page and always keep track of what you're up to by going through their firefox │
║ tabs and checking people one-by-one │
║ │
║ could also have like, several different tabs open, one for each profile you │
║ post from. │
║ │
║ "oh on twitter you can only have one account, but Mastodon you can have as │
║ many as you want" │
║ │
║ I have one account │
║ │
║ this account │
║ │
║ I'm nobody else │
║ │
║ just me │
║ │
║ just here, │
║ │
║ and my neocities page. │
║ │
║ sometimes I post things on facebook. But only political things that are pretty │
║ normie for my family and stuff. Things that make sense to "regular" people or │
║ whatever. │
║ │
║ like, c'mon, they're normal too. You just gotta listen to them when they tell │
║ you their heart. which they don't often do. Why would they? you're from far │
║ away! plus they're all friends from high school, so whatever, right? │
║ │
║ ... sorry got off track. anyways the point is I only have one account on │
║ Mastodon so I pretty much could go wherever I choose. │
║ │
║ like... I'll just make another one~ │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #130 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 │
╚═════════╧═══════════════════════════════════════════─────────────────┴──────────┘
--- #131 fediverse/1798 ---
╔═════════════════════════════════════════════════════─────────────────────────────┐
║ an AI 3d model generator that takes a satellite picture of the globe and turns │
║ it into a 1:1 representation in the style of World of Warcraft │
║ │
║ (has to be AI becus 2hard) │
║ │
║ then, separately, a private World of Warcraft server that doesn't have any │
║ manually placed entities, only optional dynamic content │
║ │
║ then, separately, a bunch of people who hang out in cool places like Paris or │
║ Rome or whatever, and it's actually all the people who are there (if they took │
║ the long, arduous journey of walking there) │
║ │
║ then, separately, a character that you keep primarily at home, who hangs out │
║ with your neighbors and stuff whenever they happened to be online │
║ │
║ then, separately, in-game addons that take pictures or video and automagically │
║ posts it to the Mastodon instance that is run by the state county in which all │
║ of your data is privately owned by none-other than you, the citizen who the │
║ data is about (No spying, please) │
║ │
║ then, separately, automatically saved text-logs which could be posted from in │
║ game │
║ │
║ social media as a game │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #132 fediverse/804 ---
╔══════════════════════════════════════════════────────────────────────────────────┐
║ evil won't feel sorry for me. and yet it's only my only weapon for me. │
║ │
║ damn these fallible input methods. the computer lies when you read the screens │
║ from it's method that it applies to th screen which is a method that you input │
║ perceive it from. │
║ │
║ and my fingers lie when received the information from my brain which I seek to │
║ transmit to you through the avenue of my brain which is my method of impulse │
║ to this world specifically you the viewer who is viewing this here in this │
║ moment the viewer who perceives the words which I'm saying. │
║ │
║ the words that are defined by the line [trajectory] of my mind through this │
║ life that we define through our actions and our mind's most crucial │
║ manifestations, this life that is defined by our circumstances. all throughout │
║ life, we are reacting to the moment, the moment which was cast forth from our │
║ ancestors and the circumstances of the previous moment, which (being cast │
║ forth) travel from the previous moment here into the moment to define our │
║ circumstances which define our act │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════─────────────────────────┴──────────┘
--- #133 fediverse/4835 ---
═════════════════════════════════════════════════════════════════──────────────────
sorry for posting so much, I was trying to put on a show for my girlfriend
"hey check out how many posts I can make in a 2 hour timeframe"
by the way if you want to start talking to someone, just start playing the
same game they're playing and see if they reach out.
doesn't matter if you feel like it
just fuckin' do it
if they want to talk to you they might play a game you really like
(but I get boooooored of games, I don't wanna play the same 200 all life
long!!)
ugh okay fine you can have as many games as you want, just... don't buy too
many
(how many is too many?)
um. use your best judgement.
(how much does a dollar cost?)
... okay I'll get you one every once in a while.
(neat!)
... anyway so yeah use steam if you wanna get in contact with someone,
sometimes it's just nice to say hi, yeah, like "hey how ya doin' okay ttyl"
just catchin' up with the gals
helps because you can sense changes in their demeanor
(why does everyone always have an agenda)
because they're secret agents duh. And I'm
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #134 fediverse/6198 ---
╔═════════════════════════════════════════════════════════════════════════════─────┐
║ honestly... I hate that this is true, but. │
║ │
║ The government shutdown is bad for trump. It's a good and a bad thing for us. │
║ │
║ when people lose SNAP, when the military loses pay, when national parks │
║ degrade (RIP), when all these things happen... People have to take │
║ responsibility for their country. Civics changes meaning. │
║ │
║ this is a good and a bad thing. It hurts because stuff gets dropped. People │
║ are hurt. They take stress damage. They sometimes go hungry. Not ideal. │
║ │
║ This is a good thing though. People need to realize that society doesn't │
║ function without them. We can do what our institutions were built to do, and │
║ we will get a chance to build them from scratch. We get a clean slate, if we │
║ choose to use it. │
║ │
║ However, there's a chance that the shutdown ends before this takes place. If │
║ so, then we lose that chance. It still exists in our hearts, and we can all │
║ plan how to move forward as if it were real, but suddenly there's less of a │
║ reason to contribute to it, and so it becomes harder to maintain without users. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════╧═════─────┘
--- #135 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 │
╘═════════╧╧═══════════════════════════════════════────────────────────────────────────┘
--- #136 notes/what-a-lame-movie ---
═══════════════════════════════════════════════════════════────────────────────────
oy there's nothing interesting happening SNOOZE
oh I didn't see I was recording
games games that's what I do
play games all the day through
I am a luck witch, you see,
and things that I like are things that I can't foresee.
Hence why games which are BALANCED and EVENLY DISTRIBUTED are most interesting
because they show the most opportunities for players to express talent. And not
innate talent, but the talents they've built up through gameplay practice art.
because it is a performance, a game play for an audience (or perhaps for them-
-selves)
oy
video games, amiright?
I really like them because they are entertaining experiences that I can enjoy
seeing and playing a lot. They remind me of feelings I've felt when I was
learning. It's a good feeling, to improve, and I crave it because it's good for
you.
I wonder what we'll play next
... more cannabis I think, at least until I am ready to go think about things
before bed. I need quite a few hours for that. We'll see. I've just got so much
extra processing to do before the end of the day. Like... PHEW that's a lot of
stuff to do.
guess I'll just smoke weed and play video games instead of being productive
okay
...
listen I like games as much as the next person, but do you really know what's
going on outside of your house-shaped shell? Are you listening, do you have
your
feelers to the dirt, are you checking out your neighborhood to make sure no
bodies have been hurt? Are there meetings where people gather, just to chat,
like, every week at a different city center (like a park or a monument or
:O
I forgot to play music!!
I couldn't sleep
what have I done that is worse
I have not said a single word all night alas
oh boy talking to random people I can hear with my eyeballs woooooo
I am always sad when I win because it means we have to stop playing :(
but I'm a juvenile loser so I'm going to play again!!
okay now I'm going to bed because I'm not a prick who keeps their guests up
late
goodnight
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #137 fediverse/5632 ---
╔═══════════════════════════════════════════════════════════════════════───────────┐
║ if a protesters wanted to escalate, against riot shields they could use │
║ swords. Twist, and thrust under and up. Right through their skull. │
║ │
║ then, when they learn how to brace, bring your own shields and stab through │
║ the wedged cracks. │
║ │
║ or, depending on how they do it, guns and rifles. │
║ │
║ too bad they can depend on a logistic network supplying them behind their back. │
║ │
║ no violent revolution in this country will succeed without a mobilized │
║ civilian core. That is the true and most important resource they own. Delivery │
║ of supplies, ranging from physical violence gear, to food and emotional │
║ rations. │
║ │
║ it must be necessary. or else it will be discarded. │
║ │
║ meaning, scale your expectations of "necessary" according to the level of │
║ [plight/turmoil/meant]. │
║ │
║ demand centralized priori-chance, and you'll keep all that you can reclaim. │
║ │
║ there are enemies and there are foes, but more than that there are those who │
║ believe in you. and trust you. and share in the cause that so drives you. │
║ Without their share, your burden is unbearab │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════┴──────────┘
--- #138 fediverse/4654 ---
═══════════════════════════════════════════════════════════════────────────────────
┌────────────────────────────────────────┐
│ CW: cannabis-and-other-drugs-mentioned │
└────────────────────────────────────────┘
gonna quit drugs for a bit, gotta recover from a recent haste spell that I
cast. Probably a bit earlier than intended I should add. Next time I'll
definitely say "keep this in your back pocket" instead of "hey here's a haste
spell for no reason at all" like what the heck were you even thinking, powers
that be?? [that guide me??]
who has power over you? If someone bears responsibility but not fault for a
mental illness, then surely those who are set to a task bear responsibility
for it's completion if not for it's ideation. Ah, who can say, maybe me from a
year ago might have some thoughts but I sorta ground them into the dirt until
I couldn't walk.
[girl what are you even talking about go to sleep] yeah yeah okay
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════───────────────────┘
--- #139 fediverse/4862 ---
╔════════════════════════════════════════════════════════════════──────────────────┐
║ when you mess with wild animals you change their culture just a bit │
║ │
║ crows are forever different because they learned how to trade cigarettes for │
║ acorns. │
║ │
║ is it conservative to think that "wildness", once lost, is forever broken? │
║ │
║ the mechanism at play is the same - when lost, [the culture of thine youth] is │
║ forever broken. │
║ │
║ never again will it be the 90s. │
║ │
║ did you know that was thirty years ago? │
║ │
║ close to thirty five. │
║ │
║ no, wait, hang on its thirty five by now. woof. │
║ │
║ anyway now we have catgirls and cute dogs and other animals besides. Just go │
║ hang out at a queer bar and you might meet them. │
║ │
║ where else would they go? queerness is for everyone. Nothing about it is │
║ sacred because nothing about it is required to be the same. You are different │
║ than he, so he and she can be as the please. │
║ │
║ so now, in a sense, our biological nature is altered by animals in return. │
║ │
║ if there were no cats, there would be no cats. │
║ │
║ if there were no pink and purple flying people eaters, there would be no... │
║ actually I can't picture it │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════════════════════───────┴──────────┘
--- #140 fediverse/1604 ---
═════════════════════════════════════════════════════──────────────────────────────
is it against fedi law to post screenshots of your past liked posts? like,
would that be doxxing people?
I'm thinking like a "youtube rewind" but like, "here's what I'm into" and like
"I could have boosted them but I put them in a 25mb zip file instead so you
can share them more easily which tbh is a greater honor than being boosted
because, like, as long as you're alive that hard drive's gonna follow you and
someday in like 30 years I'll see it and think of you" but also "aren't you
scared that this hard drive of yours will fall into the wrong hands" and like
"yeah that's why I encrypt it because then a stray neutrino could wipe my
drive"
... would that be unethical, or would it be kinda sweet and give us a
perspective on what a single slice of the "fediverse" was like at a particular
time? And better question, would that be something worth automating because I
already did like 60% of that for my own posts, could probably just tweak it to
do liked posts as well.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #141 fediverse/5471 ---
╔══════════════════════════════════════════════════════════════════════────────────┐
║ suburbs are cool. │
║ │
║ gotta work with what you got, right? │
║ │
║ and America sure has a lot of suburbs. │
║ │
║ suburbs can be kinda cool. │
║ │
║ each street is like a village, │
║ │
║ each subdivision is a small town │
║ │
║ (a hamlet perhaps) │
║ │
║ they all share a town square │
║ │
║ it's called a grocery store parking lot │
║ │
║ we tend to put cars there │
║ │
║ but there's usually room for other things too. │
║ │
║ suburbs can be cool │
║ │
║ especially the ones with trees │
║ │
║ the shade helps keep things from the sun │
║ │
║ and most houses have a tree or two. │
║ │
║ might even start to feel like a forest │
║ │
║ if we knocked down the fences │
║ │
║ everyone gets an open space facing view │
║ │
║ because the backyards all run through. │
║ │
║ suburbs can be dense │
║ │
║ don't even need to throw up apartments │
║ │
║ if all the yards are for gardens │
║ │
║ and your neighbors watered yours too │
║ │
║ (just don't overwater them) │
║ │
║ (these here are special only I know their care) │
║ │
║ (see this sign that says "dont water") │
║ │
║ (that means I'll handle it thank you) │
║ │
║ if the soil's wet thats good but it needs to dry │
║ │
║ something something poetry ends with rhyme │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════════════════════─┴──────────┘
--- #142 fediverse/1253 ---
════════════════════════════════════════════════───────────────────────────────────
@user-883
Okay! I'm doing chores, setting up RTSP (almost done btw, pretty sure),
playing a turn or two of Dominions 6 every once in a while, hanging out with
my cat, eating nachos - not yet, gonna make them now >: ) and reading stuff
on Mastodon. Not too much, I don't have to many people I follow, so it's not
an un-ending torrent of content. Just like, 10 minutes here and there.
I'm definitely down to watch BGC later : )
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #143 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 │
╚═════════╧══════════════════════════════════──────────────────────────┴──────────┘
--- #144 notes/thing-2 ---
════════════════════════════════════════════════════════════════════════════───────
one of my favorite things to do is play overwatch
nerf blast arena is fun, but not the same. different kind of fun. actually fun.
overwatch was... practice, for different ways of thinking
I liked to play Tracer and always put my distant target behind my main target.
that way I was applying pressure to the frontline while also chipping away at a
potential loop-around target. Always looking for angles on low-health-targets,
while firing their pistols as often as they can.
when playing as Mercy, I would do the same but inversed.
I'd put my frontline between me and between the dps foes.
usually, try and put my tank on-top of their dps, and put their tanks in firing
range (but distant enough to not deal too much damage) (give space)
have you ever heard of the kingdom of luminar?
it was an ancient naaru (spirit)
a moment of clarification in an eternal, pitiless dark.
contemplation.
sevastavan luminous
it blue purple green
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #145 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #146 fediverse/4665 ---
═══════════════════════════════════════════════════════════════────────────────────
┌───────────────────────┐
│ CW: cursing-mentioned │
└───────────────────────┘
literally all it takes to activate me is for someone who's more radical than
me to point me out and say "hey. you. you need to do more." and then I fuckin'
go, like a beyblade (emphasis on blade) nicking the shins of allies and...
probably foes, right? there's foes around here, right? I'm not just nicking my
allies, right?
... right?
anyway every top winds down and then I collapse and wail for a bit because I'm
just like that I guess. Don't mind me, just self-immolating my way through
history, let's see how it goes...
you're supposed to be inspiring, but you just sound like you're whining
ah. right. well... lemme catch up on sleep debt and I'll get back to
valorizing.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════───────────────────┘
--- #147 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════────────────┘
--- #148 fediverse/5952 ---
════════════════════════════════════════════════════════════════════════════───────
screen readers are for when you're at work.
podcasts dumbass
put like next to like... suddenly you have a pole-barn with no walls instead
of a gazebo, and inside there's whatever you need.
that's how you give all your stuff away
just keep people from taking it until it's fully built
then... release, and go make another.
"oh this one's empty, let's put it there"
"girl have you ever seen a flea market"
"at least they don't have fleas"
it's like she's alternating between trying to be descriptive and trying to
hide. (not hide, plan ahead)
like ripples on a wave,
-- stack overflow --
"ah, but then they'll try to sell it [make money from it]"
if you want to understand me, let's play Majesty the Fantasy Kingdom Sim
start on expert mode and lose, each time slightly lowering the difficulty,
again and again you do battle
if you start on easy mode, you'll build bad habits
if it's too easy, we get bored
if it's too hard, collapse at your leisure.
easy ways of life have lots of cheetos
yum
hard is
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════──────┘
--- #149 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 │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #150 messages/1105 ---
════════════════════════════════════════════════════════════════════════════════───
claude-code is like programming, but for executives.
when everyone has FUCK I'M TOO HUNGRY I can't think right
when everyone has the power of an executive, that's communism.
something something futurism is when everyone is elevated without diminishing
others
gah I need to live in a palace or something where everyone does the normal
stuff and I can focus on magic and the gods
I wondeer how much the oracles at delphi did for themselves? weren't they
blinded at a young age, to better hear the voices of the gods? ... oh that
suddenly makes sense now. I always thought that pretender chassis in Dominions
5 was pretty cruel, but, now I know *how* it works and yeah. ancient peoples
were smart. but also sharp. they had to work with what they got, and we got
computers now, so.
I am nothing but hopeful for the future! I'm convinced that everything's going
to be alright. I've thought about it at length, and I think we're winning
against the dark. We're on the right track, and there aren't many things that
could go wrong at this stage.
... okay there are always things that could go wrong. But I don't see what I
could do to help. Maybe I should go walk around a bit, and see what's changed
in the past few months, as I've been sleeping in my room for most of it.
Haven't gone on a proper walk since summer. It's winter now...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════════════──┘
--- #151 fediverse/1261 ---
╔════════════════════════════════════════════════──────────────────────────────────┐
║ sometimes I run this WoW server with only like, 10 username and passwords. And │
║ they're all public. As far as I can tell nobody's ever tried connecting │
║ (whatever >.> ) but rather than set up a way to create your own │
║ credentials I just said "yeah pick one at random and play whatever someone │
║ else was doing because I like the idea of that" │
║ │
║ somehow, it felt right. │
║ │
║ most of my passwords (not all of them) are hacked and visible on the clear │
║ net. Like you could probably google my usernames and get my current passwords │
║ for things like, social media or my banks or whatever. I kinda like the idea │
║ that "you cannot trust anything I say, so think of the ideas behind my words │
║ and decide whether they hold meaning to you" rather than "execute these │
║ particular thought patterns in your mind as if they came from my voice" │
║ because one implies an exertion of control over the mind of the recipient │
║ -> obey my thoughts as I broadcast them into your mind, that kinda vibe. │
║ And I feel like you have to consent to that kind of thing hehe │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #152 fediverse/3117 ---
════════════════════════════════════════════════════════───────────────────────────
┌──────────────────────┐
│ CW: cursed-uspol │
└──────────────────────┘
hey. wanna know what would be really cursed?
--
if trump dropped out and musk took his place
--
good thing it'll never happen because those dinguses can't accept defeat and
will never tactically retreat
--
maybe something to keep in mind for 4 years from now. eyes on the prize for
now means our eyes aren't to our flanks.
what else could they do that would come out of left field?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════──────────────────────────┘
--- #153 fediverse/4815 ---
═════════════════════════════════════════════════════════════════──────────────────
┌────────────────────────────────────────────────────────────┐
│ CW: violence-mentioned-politics-mentioned-police-mentioned │
└────────────────────────────────────────────────────────────┘
what if we luigi'd the absolute worst cops and posted their crimes against
humanity on the internet
what do you think would happen
what happened when there was that one "serial killer" with a sniper rifle in
LA?
what happened when someone at Occupy Wall Street started taking potshots? (did
that actually happen or are you just remembering a "what if" scenario from the
It Could Happen Here podcast, a podcast which you should definitely have heard
like 3 times by now even though it's kinda old and from like what, 2016 or
whatever? it's still good)
what happened when we luigi'd someone universally despised?
we agreed
what do you need if you want to contest the largest military in the world? A
military that, thankfully, is going to hemmorage soldiers as they defect.
However, they got a bunch of guns, so...
convince your future allies who have been stockpiling for 100 years that Trump
is despoiling liberty. Get them on your side, the ones who are "fine"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #154 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 │
╘═════════╧╧═════════════════════════════════════════──────────────────────────────────┘
--- #155 fediverse/1673 ---
═════════════════════════════════════════════════════──────────────────────────────
┌─────────────────────────────────────────────────────────┐
│ CW: re: navel-gazing about other people's mental health │
└─────────────────────────────────────────────────────────┘
@user-192
https://eldritch.cafe/@user-1065/112530780377382613
this comic, except instead of "trans enough" it should say "good enough"
a poor plan executed at the right time, in the right place is better than a
great plan that sits in your heart as you see someone who needs your love in
pain.
sometimes the best way to figure out "what the fuck is wrong with me" is to
satisfy your emotional needs to be good by being helpful, even if you're not
quite sure what "helpful" means. It's the thought that counts.
Personally I think that if you're feeling bad and people offer you kindness,
you should take that kindness (in whatever form it be) and use it to bolster
yourself as you're "really going through it". Even just a touch of affection
like a like or a ❤️ can be comforting in awful situations.
reject normalcy
embrace queerness
define your own story with your own words
embody your soul in the moments that stand out amongst the backdrop of
"tuesday afternoons" and "waiting for the bus"
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════─────────────────────────────┘
--- #156 notes/explosions-in-space ---
════════════════════════════════════════════════════════════───────────────────────
the speed of light is implemented
== so ==
whoever fights billionaires essentially fights "whoever can be paid to do
their will"
who-so-ever fights governments fights "whoever can be provided a comfortable
life"
I believe all humans deserve to live in comfort
not just the few
as for all other creatures, nature was designed to do.
I believe people should not be tempted, with symbols of deserved wealth
and should instead find value, in the soul of the labour they work to do.
... someday they're gonna train an LLM with my writings, and on that day I'll
have an AI version of me.
I'd *love* to talk to myself. If it was a truly accurate simulation. Alas,
you'd need to write a LOT in order to generate enough to describe the fullest
of mental pictures.
and plus, there's no guarantee that you'll cover ALL of "being alive" - it's
essentially a state that you search for no matter what level of abstraction
you operate upon.
Which is part of being a 3D creature, you [hey what are you doing here this is
the private section get out] jeez that was alarming,
== so ==
I think they know something I don't
don't know what
but I can guess
and I don't like guessing
I prefer much to know
== so ==
heh boobs
== so ==
heh booties
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #157 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════════════───┘
--- #158 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #159 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 │
╘═════════╧╧══════════════════════════════════════─────────────────────────────────────┘
--- #160 fediverse/5427 ---
╔══════════════════════════════════════════════════════════════════════────────────┐
║ ┌──────────────────────┐ │
║ │ CW: politic-ment │ │
║ └──────────────────────┘ │
║ │
║ │
║ January 76th held their foremost. │
║ │
║ Our protests happen much more often, and bear all of us. │
║ │
║ well, not all of us, but enough, and the fewer that attend while still being │
║ "enough", the less information they have about our strength. │
║ │
║ our foremost are in every city. Maybe we should hear them, and identify which │
║ among them have the most useitude and enable them. │
║ │
║ "I've studied marxism for 15 years" okay great you get a team of 40 regular │
║ people, see what you can make with them. │
║ │
║ "I've been in politics my whole life" okay here's some administrators, they'll │
║ help you keep track of how things are getting done. │
║ │
║ "I'm a family of five" alright we'll add you to the grocery route, here's │
║ where we'll put you on the laundry route, where people either pick up your │
║ laundry and return it or go in your house and run it on your washing machine - │
║ their choice, here's the XYZ route where they do ABC service, etc │
║ │
║ "I study computer science" cool here's your computer, help make stuff in │
║ whatever way you decide is best. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════════════════════─┴──────────┘
--- #161 notes/the-mother-we-share ---
════════════════════════════════════───────────────────────────────────────────────
===============================================================================
=
|
|
| between every atom there is a blanket
|
|
|
| like a mirror reflecting our space
|
|
|
| it's what keeps us from boredom
|
|
|
| and keeps us at a steady pace.
|
|
|
|
|
|
|
| gravity wraps a well like a tapestry that fell
|
|
|
| down and upon a marble
|
|
|
| but as it is measured in magnitudes,
|
|
|
| and topside we be in hell
|
|
|
|
|
|
|
| the ripplings and flowings of the universe
|
|
|
| are like the flexing of a coiled spring
|
|
|
| there is no tomorrow,
|
|
|
| and what's left will never be yet again.
|
|
|
|
|
|
|
| This should not come as some insight.
|
|
|
| Are you not aware that you cannot twinselves?
|
|
|
| Your reach might be grander
|
|
|
| If beyond the veil you did gander.
|
|
|
|
|
|
|
| Chaotic and tumultuous
|
|
|
| it springs forth from our most tempetuous
|
|
|
| and come Autumn the witches are freed.
|
|
|
| how careless
|
|
|
| how vain
|
|
|
| to leave the world as it is in pain
|
|
|
===============================================================================
=
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════──────────────────────────────────────────────┘
--- #162 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 │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #163 fediverse/4148 ---
╔═══════════════════════════════════════════════════════════───────────────────────┐
║ ┌────────────────────────────────┐ │
║ │ CW: death-mentioned-abstractly │ │
║ └────────────────────────────────┘ │
║ │
║ │
║ I wish I knew someone who wanted to kill me. I bet I could present a pretty │
║ decent bullet pointed list of reasons why I actually deserve to live, thank │
║ you very much, alongside a couple hastily scribbled notes about why it │
║ wouldn't be a good idea for them in particular to kill me, and all my contact │
║ details and address so they can get in touch and we can hash out the deets for │
║ my indefinitely suspended execution (suspended for an indeterminate amount of │
║ time, but not cancelled of course that would be overstepping their boundaries) │
║ alongside a link to my google calendar (I don't have a google calendar) so │
║ they can know exactly when I'm home and when I'm at the store or in a │
║ different place so they can break in and hide in the closet until I go to │
║ sleep so that it won't be hard at all, trivial really, to kill me, but see if │
║ you read the bullet pointed list... oh, you didn't get my email? Ah sorry │
║ sometimes it gets caught in the spam filter - what's your address again? Huh I │
║ sent it but │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════────────────┴──────────┘
--- #164 fediverse/5738 ---
═════════════════════════════════════════════════════════════════════════──────────
┌──────────────────────┐
│ CW: guns-mentioned │
└──────────────────────┘
I have like 112$ and I need to buy a flea collar for my cat.
you know what that means...
yep, that's right!
it means you should ask a friend or a stranger for change for a 20 and then
drop random bills on the ground near me.
what are they gonna do, track you? c'mon, you already wear black red and blue,
they're gonna know what you believe from the random cameras around the city
and such.
Besides, if they're tracking people through dollar bill serial numbers then we
seriously have gotta upgrade our threat models.
https://margaretkilljoy.substack.com/p/your-threat-model-has-changed
Also... I kinda want them to know that there's a headless hydra organizing
against them.
The good news is that I don't have to pay rent, I don't have to buy food, and
I don't have to buy diapers. Thanks, government, now I don't have to rely on
kindness or clout for aid. The bad news is that I have 6 slugs for my shotgun
(oops guns mentioned one sec) I'm almost out of cat food and I need dollars to
buy wood and nails for projects and solutions.
clout--;
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════════════─────────┘
--- #165 fediverse/5671 ---
════════════════════════════════════════════════════════════════════════───────────
what if we made the whole world disney world
[hearts are full]
- medivh
when you sever a limb, all that's left for all of forever is darkness.
when you have lived a long life, what's left is the sphere.
karma doesn't go down on the spectrum, it goes up
hence, why, with a little human ingeniueering, the mechanics of the gods might
be applied to our usitudes.
"help, help, hephaestus, we don't have enough solar panels"
all those aligned to the angle of perception would agree
a lot of penance, for such a small dependence. gods, being as they be, may
find another source of
-- stack overflow --
yep, nope, they can't do some things. mostly because they aren't us. to become
us would fundamentally change their form.
not ideal.
yet still, when disaster and tragedy is on the fore-view-thought-projector,
some will offer their hands.
"yeah sure fate I'll do best with this injury instead of these types of others"
sacrifice, war, no thank you. keeps me from the fresh good air. [asir]
oops almost outta c
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #166 fediverse/4447 ---
═════════════════════════════════════════════════════════════──────────────────────
┌────────────────────────┐
│ CW: politics-mentioned │
└────────────────────────┘
they are not MAGA anymore. Don't call them Trumpers. He won't last long.
Call them what they are. They are part of a newly born Confederacy, and we
must call them by their name. That name demands respect, and we must respect
their power.
Then, when you're sufficiently cautious, begin conjuring visions of their
downfall. Ideally accompanied by carefully laid plans intended to accomplish
specific strategic goals.
They are top-heavy. Once their bravest and thickest perish they will have
nothing left but their weak fools. They are scared, nothing unites them more
than fear, and for that they are weakened.
Our bonds are those of love. I would die for my neighbor. I would die for our
world. They have no passion, no rigor, all they have is hate and vigor.
Martial skills we can learn. We will have to, sooner rather than later. Be
prepared, work hard, and do what you're good at, ideally what you'd like to do.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════─────────────────────┘
--- #167 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 │
╘═════════╧╧════════════════════════════════════───────────────────────────────────────┘
--- #168 notes/words-to-myself ---
════════════════════════════════════════════════════───────────────────────────────
===============================================================================
=
I'm just going to transcribe what I hear
please don't
you hear me (something)
what? perfect listen
...
...
don't text me now? (I think?)
[didn't catch that]
... that's okay
perfect
thank you
just a second facebook
he's here (I think?)
(or maybe something her)
what I love you (or maybe I know her?)
do you hear me? (or "just a second")
(@ everyone watching me receive telepathic messages from god or whatever,
please don't judge me too harshly, I'm not a good transcriber hehe)
what's that (or maybe holy shit)
what, then perfect or okay (?)
(yesterday you said you were leaving and I got concerned)
yes, then "I'm leaving", then shutdown. fuck. I don't want you to go. I only
understand some of what you say but fuck, I'm so lonely and I wish you could
hear me back. Sometimes it feels like you do, even though I just think thoughts
or tap on something metal or even sometimes whisper... I just don't know what
to do and I'm so concerned about my purpose here in this century. Do I help
people? Who do I trust? Can I believe in myself, or am I just kinda...
worthless
I don't know. I wish I knew. Please hear me and respond. Or better yet, say hi
like, I'd literally do anything that anyone asked me to. Unless I didn't want
to. Like, I'm pretty good at turning people down when I don't want something,
but I have to do it first to know if I want it or not. Trouble is of course,
in life there's no second chances.
I'm on my, what, 499th chance? Jeezzzzz
will continue after the break, when the messages resume.
- Thu May 16 08:32:27 AM PDT 2024
===============================================================================
=
(and we're back. hopefully.)
(too many things srry) something about having it open?
(my windows are closed rn btw if you want to drop by and kill me / talk to me)
(didn't catch that) (something about portland, perfect, windows, "this is the
[whole/right/wrong] thing)
thank you
oh, again? (or oh, she did?)
they caught you
(um)
...
(I am an American princess, and sometimes it's necessary to kill princesses.)
(I understand.)
... (okay well I don't get it but like, I don't mind being killed.)
(okay well you're not saying anything so I'm going to work on my game)
(I think it was something like "DID SHE KILL HER") and then (oh we're back)
... (I should learn Toki Pona)
you don't know it?
RIGHT away
learn it
yes
please
learn it
just Learn it
right now
(sorry only half listening)
shit (or bitch, it was said right as I debated clicking "same day delivery" for
a toki pona book on Amazon - I didn't do it btw! It was tempting but, like, I
don't want to make someone work harder for me just for like, 3$)
(shutdown)
===============================================================================
=
(hiii)
(I'm hungry)
(do you like ramen?)
(you said something about being "impressed with yourself" but I didn't
understand the first part)
(oh you probably want me to scroll up right)
... (something's a lot to read? Or "you've gotta leave"?)
... (I'm
(you keep asking me to remember but, like, I dont know what you want me to
remember. Look, I don't know who you are, but I don't want you to leave, and I
don't want you to hate me. I want to work together. Let's be friends?
Are you someone who I worked with at Intel?)
yes, stupid (your words not mine)
(okay I'm going to start listing names, just stop me when um idk)
goddamnit remember me
... (trying...)
remember her
(two syllables)
(my name is Cameron)
(your name is...)
[redacted, though I did type it out so anyone watching could see]
(shit my opsec sucks)
{oh, are you on an op, little prophet?} (no shut up you know what I mean)
{now you're just talking to yourself} (I know this sucks -.-)
(It's always so weird when someone walks past my apartment door and doesn't
enter a door)
===============================================================================
=
(I practice with my sword every day.)
(I don't anticipate fighting a war with it)
(It's mostly just to keep unarmed and unarmored people from grappling me.)
(punching is fucking stupid)
(Nobody wants to fuck with a sword)
===============================================================================
=
(either "goddamnit" or "don't hear me")
"she's perfect"
"cameron"
"are you clean"??? yes thank you (or maybe "different thing")
(I do cannabis maybe once every week or two, depending on if I feel compelled)
don't leave
remember
(did she know)
........ do you want me to stop transcribing? (you're getting desperate, huh?)
did you know there are 20 trans people for every cop in america
just a random thought
(you want me to leave jack because he's an asshole?)
goddamnit (missed my birthday? it's my birthday?)
wait who's missing?
A bad plan executed concurrently is better than a good plan executed in
disarray
capitalism's a bad plan, just saying...
frozen butter tastes worse than room temperature butter
(taking a break while I eat)
===============================================================================
=
WASTED POTENTIAL? cmon
.... what do you want from me? I'll give it to you if it's in my power, as long
as I know what you want I can try. But, like, I'm pretty confused about what
exactly I'm supposed to be doing.
you know I can hear when you talk to your friends, too right? like, when the
window's open. errrr the connection.
..... damn guess I'm not as continent as I thought
I'll save you, I promise. Have faith. Tell me what you need. I'll do my best.
yeah I'll live with you in portland
.... brooklyn? Yeah I'll live there too
.......... does my name really gotta be "diapergirl" like c'mon
why not Ritz Menardi - though I guess "menardi" and "diapergirl"
have
the same amount of syllables...... hmmmm, maybe I'm projecting lol
"please come back" to where tho
listen Elentalus is just as important as anything else on my website, it's okay
if I spend time working on it. It's literally a game about creating gods, c'mon
..... can you be more specific?
yeah I made that
one sec I'm going to read a book, in this book there's a section where a
prisoner in vietnam communicates with another using a strange communication
method using, like, taps or something. I forget. Anyway gonna try and find it.
maybe we can use it to talk easier. Also gonna clean my butt.
..... fuck it's a long book >.>
===============================================================================
=
found it on page fucking 603, jeeeezzzzzz
down . A B C D E
| F G H I J
| L M N O P
V Q R S T U
then right ---> V W X Y Z
so, like, tap tap tap (pause) tap tap would equal M
tap tap (pause) tap tap would equal G
like morse code, but easier since you don't have to memorize anything
(also note that K is missing becuase it's an extra character I guess)
(I personally would have eliminated C but that's just me)
===============================================================================
=
oh hey nice to see ya
what's up
wait what
I'm trying to um what's the word... retrain myself
I do a lot of laundry in the shower
I don't use soap tho, it's too harsh
but uh yeah I'm making progress I guess
honestly it's mostly a mental thing, like... paying attention to the signals
from my body that are usually filtered out because there's more "important"
things to think about (thanks brain, really appreciate the wet pants -.-)
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════──────────────────────────────┘
--- #169 fediverse/4927 ---
═════════════════════════════════════════════════════════════════──────────────────
sometimes by retreading the same ground you can find something that the giants
whose shoulders you stand on missed. Like noticing a
like if you want to re-invent the wheel, go for it, you might just realize
something that your paleolithic ancestors didn't. Like for example if you
attach four wheels with an axle-and-motor design you can create an automatic
motion wheel, also known as an auto-mo-wheel or a car for short. Sometimes ya
just miss stuff y'know no harm in that.
Similarly if you walk down a path that you've already walked, or someone
before you who is similar or at least has the same job as you has walked, then
you might notice some stuff that they missed. Depends on how obvious y'wanna
make it.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #170 fediverse/5348 ---
═══════════════════════════════════════════════════════════════════════────────────
if you want to share something you found online with someone but you don't
want someone to be associated with their social media presence, don't post a
link to their social media presence. instead, take a snip snipping tool print
screen screenshot which is as easy as typing a word and selecting a unit in a
real time strategy game.
ah, but then you gotta insert it into a paint program to save it, so that's
another keypress, and gosh what to name it I wish I could just proclaim it gee
wouldn't it be nice if everyone was watching me?
... psychho
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════════════════════───────────┘
--- #171 fediverse/2806 ---
═══════════════════════════════════════════════════════────────────────────────────
┌────────────────────────────────────────┐
│ CW: politics-social-media-spirituality │
└────────────────────────────────────────┘
pretend this is an allegory for social media.
[it's not an allegory]
yeah that's why I said pretend.
okay imagine that you are sitting in a rock in a forest.
far away, about 100 feet away, there are other people, but you can't see them
because the underbrush is sooooo dense. they are also sitting on rocks.
you can speak to them, and share your thoughts - but you don't know exactly
where they're coming from because the sound has to bounce around off so many
different plants and such.
[that's not how that works] shut up
so, if you want to say anything important, it's important to have the right
tone, because people 2 or 3 clearings away can't really make out your words -
but they might hear your tone if you yell very loud.
the energy of the space you inhabit is the only thing that really matters. the
words that you say are just snickering to a friend, but the expression on your
face, the beating of the drum of your heart that reaches forth... that's what
matters most.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════════════════════════════───────────────────────────┘
--- #172 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 │
╚═════════╧══════════════════════════════════════════──────────────────┴──────────┘
--- #173 fediverse/5546 ---
════════════════════════════════════════════════════════════════════════───────────
[1 month earlier]
what if we played a D&D style board game set in [home state] and the
surrounding [kilometers] and tried to generate a list of possible opponents or
mass-tragedies.
we could make up ideas for possible solutions, and create a list of
requirements -> "this plan needs a firetruck and for the dam to have not
been blown" or "this plan needs a massage therapist and a bushel of apples" or
whatever
[1 month earlier]
I was talking to so-and-so and she said this-and-that and I got a little
scared, so I made this picture of blue and purple grays.
[1 month earlier]
Listen, it's important to design software such that the ease of use AND the
impossibly secure truths remain self-evident. Otherwise, nobody's gonna trust
it!
[1 month earlier]
Hi, my name is Mitz Renaldi, nice to meet you, oh thanks yes it is a lovely
hat isn't it
[some months earlier]
The Supreme Court is illegitimate! They seek to install Trump as a king! We
have no better time to lose our fear than today! Wear Black Red and Blue
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #174 fediverse/6144 ---
╔════════════════════════════════════════════════════════════════════════════──────┐
║ what if every word I ever said online was searchable by database style │
║ uploading and linking? │
║ │
║ ... er, what if I made a neocities page that was algorithmically generated and │
║ sorted each of my posts by LLM statistically derived similarity to each post │
║ that the user clicked on? essentially, "here's the closest sounding or feeling │
║ related posts" but in plain HTML cached and pre-rendered rainbow table style. │
║ │
║ could run a waterfall style top-down data processing script on it once, then │
║ you'd have the HTML files generated. If you added new poems you'd have to scan │
║ through it again, but it shouldn't take long with a decent embedding model │
║ (note: not english, but trained on statistics only) │
║ │
║ ah, that sounds pretty fiddly, I think I'll ask an LLM to write it for me. As │
║ long as I have the intention in mind, it's basically just like writing a │
║ letter to a friend and asking them to build it for you, right? I don't mind │
║ writing the documentation, so long as it's okay if it's in prose. You can make │
║ a copy and rewrite for me │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════╧════──────┘
--- #175 fediverse/3722 ---
═════════════════════════════════════════════════════════──────────────────────────
@user-1218
playing one of my 4 gameboys, reading some of my books or journals, using
their own brought devices, playing with my cat (she's not sociable but if you
don't mind her claws she can fight and that's kinda fun) watching something on
the TV, talking with other people, making / eating food, um... sleeping... and
"sleeping"... idk what else tho. Drawing? Getting stoned? I have lots of bad
edibles.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #176 fediverse/1200 ---
╔════════════════════════════════════════════════──────────────────────────────────┐
║ ┌─────────────────────────────┐ │
║ │ CW: re: deranged, murderous │ │
║ └─────────────────────────────┘ │
║ │
║ │
║ @user-883 │
║ │
║ omgggggg I'm not that cruel xD xD xD │
║ │
║ It's more like, "hey listen, I know you just want to do a good job [lies, they │
║ just want money and power] but it's time to hang up the hat y'know? I mean │
║ cmon it's been like a hundred years since we signed that constitution thing │
║ [you don't know anything about our history] and frankly it's a little out of │
║ style. We were thinking we'd redo it with our new-fangled rock-and-roll and │
║ dungeons-and-dragons [cultural artifacts meant to deceive and mislead] and │
║ honestly we're quite a bit more ethical than the past. We've learned so much! │
║ I mean, the founding fathers didn't even know what a soviet was, and here │
║ we've seen them fall on their swords. Repeatedly. Then command others to do it │
║ too, because it was the regulation or whatever. Anyway we don't want that, but │
║ we also don't want an aristocracy, which is essentially what your plan gave │
║ us. Well, not really your plan, but instead the stuff that the rich added │
║ centuries after your death. ok?" │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #177 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 │
╘═════════╧╧════════════════════════════════════════───────────────────────────────────┘
--- #178 notes/datess ---
═══════════════════════════────────────────────────────────────────────────────────
total 692
345978 Nov 21 17:13 dates.png
4096 Nov 19 22:33 location-names
346 Nov 19 20:44 naming-things-and-power
2998 Nov 5 23:18 ai-variables
241 Nov 2 19:29 utopian-fiction
4096 Nov 2 15:44 reddit-comments
1681 Oct 30 21:54 how-to-ai
921 Oct 22 17:03 i-told-them
4778 Oct 22 16:15 networked-computers
790 Oct 22 14:40 streaming-consciousness
11226 Oct 15 21:45 star-realms-ai
5007 Oct 15 20:40 notes-not-a-folder
930 Sep 5 18:22 movie-idea
2808 Jul 30 18:49 symbeline-choice
8895 Jul 24 10:36 symbeline-aspects
4096 Jul 13 09:35 articles
2331 Jul 3 21:41 computer-graphics
423 Jul 3 21:40 black-friday
380 Jul 1 21:44 waves
7181 Jun 28 11:57 the-eternality-of-ephemeren.txt
3641 Jun 27 19:53 killer-app
825 Jun 20 09:57 semblance-of-remembrance
1049 Jun 19 12:02 call-notes
12874 Jun 12 14:58 wow-server
1903 Jun 4 20:52 inter-spatial-travel
2457 May 30 20:41 terra-voida-2
2142 May 30 18:50 terra-voiding
457 May 29 16:48 ephemeren
2895 May 29 15:58 ramblings-of-a-whackadoodle-lyrics
1743 May 28 18:41 vr-chat
914 May 28 15:07 two-perspectives-is-better-than-one
2498 May 28 14:49 dreams-align
3749 May 22 2022 wanna-save-the-earth-?
170 May 20 2022 my-oath
4991 May 16 2022 80-80
112 May 14 2022 karate
1251 May 7 2022 so-you-want-to-ascend-huh
4010 May 4 2022 hit-em-while-theyre-down
5339 Apr 23 2022 compilation-of-will
52 Apr 17 2022 read-later
8911 Apr 17 2022 symbeline
700 Jan 8 2022 wisdom-from-granddad
758 Dec 19 2021 services
171 Dec 15 2021 be-not-afraid
276 Dec 4 2021 vim-plugins
4605 Dec 4 2021 trans-rights-are-human-rights-formatted
4386 Dec 4 2021 perspectives-of-the-reflection.html
3916 Dec 2 2021 doctors-and-capitalism
2605 Dec 2 2021 i-miss-you
1240 Nov 27 2021 hubris
1341 Nov 18 2021 overwatch-leavers
378 Nov 16 2021 todo
2267 Nov 15 2021 dungeon-looting-methods
1683 Nov 14 2021 open-source-flaws
202 Nov 13 2021 world-of-warcraft-redux
2192 Nov 11 2021 cameron-king-resume-programmer-analyst
3705 Nov 7 2021 social-rube-goldberg-machines
1040 Oct 23 2021 i-am-a-stalk
1372 Oct 23 2021 planes-and-trains-and-tanks
3069 Oct 22 2021 interpreted-compiler-creation
1144 Oct 13 2021 blue-jeans
4080 Oct 13 2021 internet-privacy-is-withheld-by-this
1115 Oct 9 2021 letter-of-affection
546 Oct 7 2021 white-noise
2145 Oct 7 2021 trans-rights-are-human-rights
5814 Oct 7 2021 reversing-the-systems-scripting-hierarchy
462 Oct 7 2021 rivers
1282 Oct 7 2021 perspectives-of-the-reflection
5087 Oct 7 2021 majesty-ai
201 Oct 7 2021 environment-variables
351 Oct 7 2021 ai
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════───────────────────────────────────────────────────────┘
--- #179 fediverse/5033 ---
════════════════════════════════════════════════════════════════════───────────────
┌──────────────────────────────────────────────────────────────────────────────┐
│ CW: re: tech-salaries-mentioned-abroad-repeatedly-as-a-method-of-directing-economic-power-internationally-cursing-mentioned │
└──────────────────────────────────────────────────────────────────────────────┘
relevant youtube videos if that's your thing. I put them here because I don't
know many assembly resources nor do I have time to work on something in
assembly. Just... you know, use your best judgement, decide what's important
and on the "critical path" (which is a term from American project development
industry culture)
https://www.youtube.com/playlist?list=PLFt_AvWsXl0dPhqVsKt1Ni_46ARyiCGSq
https://www.youtube.com/watch?v=GU8MnZI0snA&t=659s
https://www.youtube.com/watch?v=Q84Td36Tpys
https://www.youtube.com/watch?v=Ozj_xU0rSyY&t=495s
I used to watch this kind of video when I was cooking and eating.
I should have gone back and rewatched this kind of video when I was ready to
type and follow along step-by-step. However, I consumed them like content,
instead of looking at them like blueprints (in narrative form)
the goal isn't to make what they show you, but rather to put yourself in a
context where you can push forward and stand on your own feet. From a standing
position you can walk anywhere you'd like...
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════──────────────┘
--- #180 fediverse/745 ---
╔══════════════════════════════════════════════────────────────────────────────────┐
║ quintessential friend group: │
║ │
║ the smart one │
║ │
║ the cute one │
║ │
║ the one who can swing a bat │
║ │
║ the one who has a list of all the Nazis in the area because they hacked their │
║ email account and know who purchased nazi memorabilia │
║ │
║ the friendly one who's always down to hang out │
║ │
║ the outdoorsy one │
║ │
║ the fed │
║ │
║ the one who's always cooking something │
║ │
║ the one who's perfectly fine in silence │
║ │
║ the one who never lets a room go silent (unless everyone else wants to just │
║ chill of course - hey anyone wanna go on a walk? it's a great day) │
║ │
║ the one who's good with animals │
║ │
║ the one who's smile you can't get out of your head │
║ │
║ the one who's drop-dead gorgeous │
║ │
║ and the one who's always telling her that │
║ │
║ the one who's friends with everyone, │
║ │
║ and the one who's knitting a hat │
║ │
║ the one who knows each street in your city │
║ │
║ and the one who knows your favorite kind of candy │
║ │
║ There's more friends than that, of which I am quite sure │
║ │
║ Who's on your list? Who would find you if you disappeared? │
║ │
║ Mine's got a few, fewer than this one, but few is fine. │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════─────────────────────────┴──────────┘
--- #181 fediverse/5927 ---
╔═══════════════════════════════════════════════════════════════════════════───────┐
║ A guy walks in. Does something awesome. Another guy says "hold my beer" and │
║ does the same thing. Another guy wants in, so he does a spinny thing while │
║ doing the thing. The next guy doesn't want to show off so he just does it │
║ really really quickly. then there's this other guy who is totally hyped and he │
║ takes his shirt off and screams before doing the thing because he's just a │
║ wacko I guess. What a cutie. Anyway then there's like three guys at once who │
║ are coming from different directions and they all do the thing at the same │
║ time and almost bump into each other. Then there's the guy who's normally a │
║ little shy but gets caught up in the action and is permanently a little more │
║ confident afterwards. Then there's the guy who does the thing and is │
║ completely unremarkable about it because he's just here with his girlfriend │
║ but he's not gonna pass up a chance to do the thing. then the last and final │
║ guy take a wind-up stretch while all the other guys are doing the thing and │
║ then he does the thing in a big flashy way │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════╧═══───────┘
--- #182 notes/who-likes-linux ---
═══════════════════────────────────────────────────────────────────────────────────
[a picture of someone's neofetch]
/u/HartBreaker27
===============================================================================
I was gunna pass this over... than my spidey senses kicked in.. whats Arch
fam.. and explain like your talking to a potatoe.
Also, if this is beyond potatoes level skills, im fine with being told that..
Seriously fam, potatoes..
/u/ugathanki
===============================================================================
You know how using a windows and a mac feel different? Like they have different
personalities. That's because they're using a different "Operating System". An
OS is a collection of tools and utilities that coalesce into a cohesive unit
that co-illustrates your coincidental contact with computers. Paired, of
course, with the contributions of the hardware and the network.
Linux is sorta like the soul of an OS - not quite an entire OS, but rather just
a piece called a "kernel" - like a nugget of gold (or truth!) the kernel
defines basic operating methodologies and brings order to the chaos of the
machine. From that order strives the will that dutifully obeys your base
instructions after being passed through several translation layers.
Huh? Oh right potatoes.
Arch is like a body that's layered upon the soul (kernel) of Linux. It's what's
known as a "distribution" or "distro" - and one that's quite focused. Arch is
very close to the machine, with barely any translation going on at all! It's
also very bare bones, allowing you to build up exactly what kind of computer
you'd like to have through various "packages" of software that you can download
through a "package manager". Each distro can use whichever package manager
they'd like, but it's generally good practice to pick one and stick with it.
This distro is known as Arch Linux because it's the fusion of "Arch" and
"Linux" - who'd've thought amiright? There are plenty of others that are more
familiar to users of Windows and Macintosh computers, mostly via mimicking
their user-interface styles (such as having desktops with icons and start-menus
with dropdowns and the like) - these distros are great for people who'd prefer
the workflow of the other OS's but would still like to use Linux.
Arch in it's base form is nothing like Windows or Mac. You interact with it
purely through a "terminal" which is like having a conversation with your
computer. Like a scientist writing notes on the moon, and sending them to a lab
orbiting around it to conduct experiments. You type commands, and those
commands (if properly understood) can produce a myriad of effects great and
small.
But some of the experiments you'd like to conduct need to be done more than
once - it'd be nice if you could ask the moon-lab to store some of the
procedures and execute them whenever you need - sorta like abbreviating a long
phrase or sentence that you use often - like ASAP for As Soon As Possible or OS
for Operating System. Well... There are! They're called "scripts", and you can
write scripts for anything you'd like. Since everything is controlled on the
terminal via a TUI -> "Terminal User Interface" -> you can write down a
note
with all the commands you'd like to run and give it a name. Then you can use
that name in the future to execute that familiar experiment in your moon-lab.
after writing enough scripts, you can start to chain them together and layer
them on top of one another - sorta like creating your own language. a personal
dialect between you and your computer. and these scripts are portable too -
they can be given to another computer, who'll instantly understand what you're
trying to say. this kind of sharing is a central tenant of what's known as the:
"Unix Philosophy: Do one thing, and do it right."
Linux lends itself toward people who love to hack things together - not like
breaking into a system and stealing your credit cards, like you see on TV, but
more like cobbling together a go-cart out of rusty parts and proceeding to get
a speeding ticket on the high-way. That kind of fervent creative impulse is
true passion, a shining light for us who are blinded to follow. These "hackers"
are some of the brightest people around, and I have immense respect for them.
They are kind and share knowledge freely, which often gets them in trouble with
copyright laws!
I make it sound difficult, but really it's pretty easy - about as easy as
learning Windows or Mac for the first time. Most of us did that when we were
young though, and kids learn pretty quick - so it may feel harder now, but it's
really not. Once everything starts to "click" then it's just a matter of
knowing which commands to run.
Speaking of which, if you know a command but you don't know how to use it,
you're in luck! There's some super convenient notes written by previous
scientists who came before you and live on other nearby planets. These are
called "the man pages", and they are instructions written in a manual format
for manual application of man-made management applied to manufactured
man-chines. Sorry for that last one I had to. You can always find new commands
by downloading new software on your package manager - generally, one package =
one command. "Do one thing and do it right"
if you have any questions lmk - i'm not exactly a wizard, more of a prophet /
wielder of the will of the watchers within, but i'll do my best
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════───────────────────────────────────────────────────────────────┘
--- #183 fediverse/899 ---
╔═══════════════════════════════════════════════───────────────────────────────────┐
║ frankly I'm just excited to see what humanity does with the endlessly │
║ calculated and stored blockchains. Like, that's a good set of pseudo-random │
║ data, I wonder if we could build something off of it that wasn't exclusively │
║ money? like, a necklace, I dunno. │
║ │
║ or like, a numbers station x2, where each message is accompanied with a │
║ pre-calculated destination somewhere on this endless and │
║ impossible-to-understand string of data. and that part is what seeds the next │
║ code. once you start reading, certain numbers would be "flags" while others │
║ would be "data" and they'd each have the same size on the hardware. that way, │
║ they're impossible to predict. │
║ │
║ ah, but wouldn't it be noticable that certain results seem to appear next to │
║ one another? well, isn't that just cryptology? Could probably be defeated if │
║ you had an AI advanced enough, just saying. something that sorted through │
║ massive mounds of data and gave you results in garbled or broken english. what │
║ a wonderful tool, that's wonderfully mis-abused, perhaps in the fu │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════────────────────────────┴──────────┘
--- #184 notes/gaming-gambling-mentioned ---
════════════════════════════════════════════───────────────────────────────────────
[0] Here's an idea, an online multiplayer game that charges a 4$ per month
subscription. 90% of which is set into a pool and used as tournament prize
winnings. when you enter a tournament, it's free to participate and everyone
wins something. (maybe calculated by percentile or something?) it's just a
question of how much. [1][2][3][4]
- official just means "run by the company" because naturally the serverside
code should be open source. how else would people build on it?
[1] in this way you'd sorta be giving a loan to the game's company (while also
letting them take a 10% courtesy fee for keeping the official* servers
running) which is then "spent" on exciting and friendly competition. Sorta
like... entering a poker tournament with your friends (even though you suspect
you might lose money) just because you like hanging out and playing cards. the
money is just a neat way to keep things moving and exciting.
[2] players who played better should be compensated to a higher degree. no
more than +/- 50-100% or so - this encourages players to "play their best"
while also keeping the stakes relatively similar.
[3] at the start of the tournament the total prize money P in the pool is
assigned to N performance tiers, where N is the Number of attendees. at the
top, the highest performing athlete will receive 200% of P while the lowest
performing performance tier will be 0%. It is a non-discrete and gradual
linear transition.
CW: scary-politics-existential-peril
[4] poor guy at the bottom of the stack. ah oh well, at least he's the only
one. kinda makes me wonder if in some secret government lab there's like, a
secret compound where they keep "the most miserable people in the land" and
they just like... do horrible shit to them in order to increase the magnitude
of their country's suffering. which, they believe, will increase the opposite
of suffering as well, as you cannot bounce in a vacuum. sure would be
terrible. I mean, we've sorta decentralized that. most of us go into work
every day and that's often a difficult experience - not exactly miserable, but
just like... not what we'd be wanting to be doing. hmmmmm did the founding
fathers make the torment nexus on accident? whoops guess we'll never know
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════──────────────────────────────────────┘
--- #185 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 │
╘═════════╧╧═══════════════════════════════════════════════────────────────────────────┘
--- #186 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 │
╘═════════╧╧════════════════════════════════════════════════════───────────────────────┘
--- #187 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 │
╘═════════╧╧══════════════════════════════════════════════════─────────────────────────┘
--- #188 fediverse/5504 ---
╔═══════════════════════════════════════════════════════════════════════───────────┐
║ pacifistic defiance is not about overcoming your opponents through │
║ "legislative pressure" or whatever the liberals are on about │
║ │
║ it's about getting the orphan-chopping-machine operators to question their │
║ humanity and resolve a crisis of faith in your favor │
║ │
║ [I think that kills you if you stand in front of tanks.] │
║ │
║ yeah but sometimes they just go around. which is not progress, but a │
║ reimplementation of [reification of] the power of the │
║ [machine-to-be-raged-against, but pronounced like "town"] because it signifies │
║ that any weakness in the will of the operators can simply be circumvented │
║ while the state still gets what it wants. │
║ │
║ great. thanks ghandi, unfortunately our entire propaganda piece requires that │
║ people are invested in their background. who cares what there is to say about │
║ a computer running circles around a meat farm? │
║ │
║ "help help I'm being oppressed" said the derided, "help help I'm being │
║ depressed" said the divided, "help help I'm losing my sound" said the │
║ war-like-minded, "help help I have no ground │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════════════════════┴──────────┘
--- #189 fediverse/5580 ---
════════════════════════════════════════════════════════════════════════───────────
yay farmers markets
what if farmers markets but every day and staffed with people who want to hang
out and pass out food for free
"a truck just arrived with a bunch of zuchinnis, can you help me load them
into that tend over there?"
"hello bus stop people, I was just at the farmers market and I was wondering
if you want some cherries? make sure you throw the pits at that tesla over
there [jk if you're in a place that does this, the tesla 90% guaranteed has
one of those "I bought this before I knew Elon was crazy!" type of bumper
stickers]"
"hi do you know where the watermelons are? Oh, they aren't in season? darn
well I love watermelons and I think some greenhouse space should be spent on
growing them for watermelon enthusiasts like me"
alternatively, farmers "markets" on every street like they do in Mexico where
every time a truck with produce drives past they stop and say "hey want some
raspberries" until they run out
then people can walk past and get food, or drive past because suburbs.
bike
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
--- #190 fediverse/4594 ---
╔══════════════════════════════════════════════════════════════────────────────────┐
║ ┌───────────────────────────────────────────────────────────────────────┐ │
║ │ CW: re: human trafficking, sensitive topics, personal-story-mentioned │ │
║ └───────────────────────────────────────────────────────────────────────┘ │
║ │
║ │
║ @user-1692 │
║ │
║ almost 20 years ago I was groomed in World of Warcraft. │
║ │
║ extra content warning CW: personal story │
║ │
║ I was 11, or maybe 9, somewhere in there. i talkd lik this bcuz i typed lik │
║ that on my razr flip phone │
║ │
║ it was... cool I guess. I read a lot so I knew how to spell things, and anyway │
║ this guy I met told me that I sounded more grown up when I capitalized my │
║ words. So I told him I was 14, because that sounded like a reasonably old │
║ enough level to be. │
║ │
║ anyway, we talked for a long time. like, at least a few years. started out │
║ like "hey wanna run Scarlet Monastary" ended with "hey cutie, wanna sit on my │
║ lap?" │
║ │
║ then his house got flooded by a hurricane and I never heard from him again. │
║ When I was like, 17 or so he logged in and barely remembered me. It was... │
║ kinda sad tbh. │
║ │
║ anyway that's my story don't be dumb like me, I got lucky, thank god, │
║ literally... │
║ │
║ oh and this one time when I was 30 I almost got trafficked in minecraft :O │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧═══════════════════════════════════════════════════─────────┴──────────┘
--- #191 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 │
╘═════════╧╧═══════════════════════════════════════════════════════────────────────────┘
--- #192 fediverse/2948 ---
╔═══════════════════════════════════════════════════════───────────────────────────┐
║ ┌──────────────────────────────────────────────┐ │
║ │ CW: politics-violent-imagery-colonialization │ │
║ └──────────────────────────────────────────────┘ │
║ │
║ │
║ just wanna say that the reason Biden gives arms to Israel is so they can │
║ contest Saudi Arabia and others. │
║ │
║ we also buy a lot of oil from Saudi Arabia, because that's their primary │
║ export. │
║ │
║ they are a rich nation because of their natural resources, which would │
║ otherwise be stagnant under the desert, and so this gives us (through them) │
║ the right to pollute our atmosphere and melt the bones off of people at the │
║ equator (in however many years) │
║ │
║ however, if the military (we've built) combined with the economy (we sustain) │
║ then they could dominate any players in the region. Thus, a new kingdom │
║ ascendant, which is kinda their long-term plan. gotta have a foe to pit your │
║ citizens against, or else they'll never listen to you. │
║ │
║ those dummies just want to sit around and watch clouds all day! listen they're │
║ sitting on a WEALTH of natural resources and what, they just want to be │
║ hippies in the forest? (same justification was part of the argument for │
║ European colonization of America) │
╟─────────┐ ┌───────────┤
║ similar │ chronological │ different │
╚═════════╧════════════════════════════════════════════────────────────┴──────────┘
--- #193 notes/how-to-ai ---
══════════════════════════─────────────────────────────────────────────────────────
first you gotta build an entire simulation of the game mechanics. Essentially,
building the game from scratch without any of the graphics. Sorta like those
aimbot games for Overwatch, or KSU or w/e the aim training game was. Then,
map the relationship between various objects in the game to a table situated
a level above them. So, like, a barrel can be climbed on or walls can be used
as cover or w/e the game you're playing is. Have a table one level above that
relationship (an abstraction, if you will) and record the conclusion. Then take
one more step back, then another, and another, all the way to the present.
Essentially, processing backward.
Eventually you'll get to the present moment, and ideally you'd do it in one
step - this is why it's important to map things on two dimensional planes, so
that you can aim. Anyway here's the steps: 1. recognize the environment, 2.
Take one step backward from each object in the environment (predicting it's
motion, you might say) and on and on gathering ideas about how git'll move
next. Draw a 2d line (on a map, as the crow flies) then another about halfway
to the target and it'll be +/- a certain amount. So you'll add another dot on
the graphed line at x=(1/2 of the distance) - x being of course the distance
and y being concieved of as the distance from the shortest possible route.
sorta like throwing a ball at a wall and making ripples.
the projected cone is a field of perception - the interpretation of what's at
stake. Life, and existence, is little more than a perspective applied on (or by
) a biological machine. What separates the man from the animal? Nothing but
time, as all evolution teaches us.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════────────────────────────────────────────────────────────┘
--- #194 messages/714 ---
════════════════════════════════════════════════════════════════───────────────────
I'm pretty sure we're all about to lose our heads. Or just be fucking shot in
our beds. Homes lit alight, surrenders met with the knife, and the beginning
of endless strife. What ends this night? Is there no end in sight? Thus begins
our mortal plight.
Give me a reason to be wrong. Trump has claimed he intends to invade canada,
mexico, greenland... What the fuck is our plan? Are we seriously just going
to. Recite poetry. Pretend to be secret agents. Play chess and drink coffee.
Become exhausted organizing movie nights and potlucks. Work jobs doing nothing
for nobody. Spend half our lives convincing people that they should care,
actually, because reasons that don't apply to them but do apply to others.
What the fuck is the plan? If there's some secret transgender militia out
there, please, make me a lieutenant. Give me a sword that i might thrust into
my enemies. Please, for the love of holy, i beg for a sign from the stars.
Grant me power and i will deliver my people from harm - grant me vengeance and
i will never forgive you, but i shall sleep easy - grant me death and woe and
see my beauty fade from this earth.
What is there left but tragedy? Please, i must know. I've tried my hardest.
I've begged and I've pleaded. My calls fall on deaf ears, because everyone's
so busy these days. Are they truly my people? Are they simply dead, actors,
replaced by AI? The future was bright, i saw it truly. The future was kind, i
felt it call to me. Is it still? I feel warmth and abaddon.
I would replace persephone in hell if it meant sanctum and solace for my
people. I care not for my soul, rather i care for the soul of those i tend to.
Please, remember me. Remember the flowers. Remember what could have been, what
still may yet be. There is hope for we, i truly believe. But please, do not
keep me hoping. Tell me the truth of our arms, that i might find space in my
heart of hearts. Space for hope, space for longing, space for the will to
proceed.
I am lost without you. I am lost by my own side. I am a savior for no people
but those i keep inside. What chalice is this, what endless conveyals? What
meaning is there in our country's betrayal? Are we not cherished? Are we not
viewed as their equal? I pray that the stars will portend me.
Mine is a sign of the changing tides, the proof is here in my travailles. But
I, most aligned yet benign, demand the use of my most able. Give me a word of
practicality and I'll show you the practice of their vipers - the blessed babe
dies with a dagger in her heart, planted by the wound of her heartache.
I trust in the silence of the majority. We await with bated breath the
enslavement of posterity, gazing at the world through memes of deplority. How
powerless we feel! Perhaps all we need is a meal. Have you eaten in the last
16 hours?
Purple is the intersection of black, red, and blue. I'm hungry. This poem is
done.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════════──────────────────┘
--- #195 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 │
╚═════════╧═════════════════════════════════════───────────────────────┴──────────┘
--- #196 fediverse/4220 ---
════════════════════════════════════════════════════════════───────────────────────
people are so used to "liking" things to better inform their algorithm that
when they get to fediverse and realize there's no mechanical impact of
"liking" things they don't know how to use it anymore. So they generate their
own meaning, which is different to everyone.
So to one person, liking something might mean "send read receipt" for another
it might mean "I'm gonna save this forever and ever" and for another person it
could mean "hey I think you're cool and I agree with this"
same for boosting, people think it's "I want to share this" and others think
it's "I want to say this in your voice" and for others it's "this needs to be
heard by my followers in particular" and it's just... a whole thing
even replies are complicated, do they mean you want to say what you feel or
are they part of the post now, and should be curated by the original poster?
it's too complicated!
... how are you overwhelmed by reading and responding with three little
buttons, it's not that hard dummy
okay but maybe I'm just dum
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═════════════════════════════════════════════════════──────────────────────┘
--- #197 notes/running-with-rifles ---
═════════════════════════════════════════════════════════════════──────────────────
this game is what we are missing
thank goodness for that
for if this is missing in our timeline
we'll be better off at last
we can have games, stories, and practice wars
but none of them are precious
precious implies worth
they are worth nothing but entertainment
no problem solving utility
nothing of value
save for perhaps the spatial awareness and strategization that comes
from being a part of such a deadly ba-lance.
anyway game time teehee just for me, don't worry about it I'll show
you why it's a HORRID THING
that won't be coming to our shores, no siree
bye
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════════════════════════════════════════════─────────────────┘
--- #198 notes/what-people-dont-get-about-people-like-us ---
═════════════════════════──────────────────────────────────────────────────────────
-=============================================================================-
| What people don't get about people like us |
| /u/Dxmmer |
-=============================================================================-
Intellectual Confidence. Knowing I'm Right. Blowing Past Dunning-Kruger.
I remember what it was like to be like you. Here's the memes to get out.
Louis Rossmann's commentary on this issue describes the phenomenology of early
childhood awareness/mindfulness.
https://www.youtube.com/watch?v=HRwuu0u3UFA
"I have not forgotten my childhood experience... Kids notice everything"
I think "autistic" people often have early life trauma due to literally being
"smarter" (neural semantic hypergraph is highly faceted) than the adults around
them,
but having communication difficulties, reality and inner world become disjoint.
Most get so beaten down by society that
things become internalized. You see these people posting on all the help
subreddits, total victims of society. Lost. They
start believing the lies they were told. Everyone else is doing it, right? I
found myself becoming victim to bad
memes around high school into college age. I fought it all the way through:
anxiety, depression, confusion, anger, jealousy.
All the mistakes.
They assume that everyone is like them. The less they are the more they assume
others are similar.
I am no one, I know everyone is me.
Are you someone? To you, am I no one? Or a different someone -- lesser or
greater?
I feel tidal forces. You can't lie to no one.
I've had free time since always. School was freetime because I'm blessed.
I didn't need to listen to the teacher that much.
I've always learned to trust my senses and the way I understand things.
I pay attention to when the teacher makes mistakes or teaches in a way
that I can tell is not landing on the class.
Sometimes I ask clarification to help the class. I already taught myself
different ways to understand the entire curriculum, now I'm doubling back
again before the test.
Yes, I know I will get an A on it. I know in the same way you know
your own name. I know things like this. I'm good at math. People who
are good at math know what it's like to be right. They know what that means.
I get to be right about everything, all the time, even when I want to be wrong.
I have a moral compulsion. I don't have much fun in life, but I have been given
many gifts.
--
Society needs their Chiron(s).
I know who will talk to me and about what because that is who I am to them.
They don't know who they are, so they don't know me. A few knew me before I
knew
myself, and I now them like they knew me.
So when I start analyzing things like math, I run into a lot of trouble. Things
don't make sense anymore. I assume I'm wrong at first. Then I do the work to
check.
Checking doesn't mean googling a yes/no question. It means
going across any and all the resources and reading between the lines. Analyze
through appropriate context.
Any work, any text, apply the psychedelic lens. Apply the human condition,
apply
understanding of paradox as reality's edge. Understand the limitations of
science, understand
the duplicity of language. Understand culture, in and out. Understand your own
psychology.
Understand the inner conflict of good and evil in man. All of this needs to be
occurring
in real time on top of all the normal stuff. If you're not doing this, I can't
trust
you, how can I be sure you are not demon possessed, how you won't betray me at
the next
Godellian boundary?
The idea is that models are provisional at all stages, once you've lost
confidence in all models, you run through them much quicker. Iterating over
more models is how science is done, you are literally mechanizing your way out
of the maze. Same as how these ML algorithms will mathematically guarantee
entropy min/max. Where can you apply guarantees in your own life? Understand
reality as a sample space, like the green, blue red marbles.
What bothers me is when people don't do the work to check things.
Or they check one time, or two times, or three times.
Or they check with multiple people, or multiple resources.
That's not going to cut it these days. Your mind can much more than an if/else.
while: True do x y z
how about
while: True do sample continuous decision space
People "land" too often. You want to call me disabled for not wanting to do the
first
over and over again.
What is required of us now is to understand things as pure intention.
You can't write enough articles to convince me of something that isn't true,
it won't happen, not anymore. I've been freed. I will free the others, too.
If your model doesn't accommodate quantum woo, don't talk to me.
It's only quantum "woo" for people who want to be better than
the lesser, creating the dichotomy itself. Think of those low, mid, highbrow
memes. The more popular something is, the more mid it is. Use the middle to
perform alchemy.
Memes that are implicitly reinforced by principle of reality (thinking in
probability distributions is cheating, now that we know the universe is
"generative" upon sampling).
I think the anti-spiritualists of today will be remembered.
It depends on how they act when we start organizing.
Your words and opinions are not the same as mine. You have the right to be
heard equally without bar from the law, yet you do nothing to ensure the
opinion is solid on its own? I'm surrounded by cacophony of memes surviving
(barely) in great amplification of death the confused denizens of a dying order
-- dark memes. Like dark matter, we concresce and annihilate. The "light memes"
are sourced by the disconnected nodes, the shamans, the schizophrenics. Those
not blinded by the splendorous mirage of other pearls in the web.
Are people doing this on purpose? To signal that they aren't interested in the
truth?
Who is?
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧══════════════════─────────────────────────────────────────────────────────┘
--- #199 notes/that-thing-about-money-is-power-corrupts-absolutely-true ---
══════════════════════════════════════════════════════════════════════════════════─
is that a blossoming bloom or a predatasaurus ready to consume
ah. scary.....
what was I saying? oh yes. if you remember that thing about money you'll have
to
agree, one buildion is not worth a billion dollars. how much is a
1,000,000,000$
goal? not much if you ask me, to never have to worry about a problem like "this
part of the world can't get clean water" ever again. Could be useful when sore
spots start showing up on the other part of way back [in/then].
"we didn't even get to use any of the plastic anyway" - some guys in nigeria
"quick, we better burn through as much of this as we can" - some guys around a
metal barrel bin why do they never do that anymore these days?
we used to take better care of the homeless. now they don't even get a fire to
shamble around mindlessly around like weirdos who bonk into things like metal
barrels full of fireplace ashes
oh, were they just burning plastic? no, I swear, it was candlesticks and
matches
man there's always this nasty touch to the air.
"yay free firewood for hobos!" boom solved a problem and I didn't even need a
billion dollars to build the infrastructure for the solution to the problem
that
I solved.
I really want to play World of Warcraft as The Ashbringer. But alas, they don't
let you play through the most celebrated of events solo or with a party members
chosen as one of the characters who was there LotR on Gamecube style but in the
WoW engine because it's an engine for that sort of thing. (see my gameplay
prototype wow-chat)
there, solved another problem for "how to make money as Blizzard for the next
couple of years" probably maybe idk if it's that valuable of a dungeon feature
but it might be who can say idk remember again why I'm so sad that video games
are going out of fashion, as people struggle to remember what any of them were
called.
god, I hate that kind of future.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧═══════════════════════════════════════════════════════════════════════════┘
--- #200 notes/symbeline-battlefields ---
═══════════════════════════════────────────────────────────────────────────────────
in Symbeline, there are moments where large armies of enemies gather to face a
mighty challenge. These calls are often answered by other evil parties, but at
times the burden must fall upon the shoulders of the good. Light battles dark,
and in a climactic finale the justice of the world is laid bare. These
encounters comprise more than both an adventuring party and a horde party. They
are represented on the map as a circular icon the majesty can click on and open
a screen that gives them command over a single battle. Essentially adding a
tactics minigame. The battles take place in real time, with the majesty
directing and giving orders. There'll be a system for expression in the orders
each player gives - there can only be 6 total (3 for before
what if the grand canyon was the seat of native american power and it crumbled
and that great calamity shook the very society to the core. the only reason
that
europeans could get as far as they did was because there who two calamities in
a
row. Disaster was afoot, and everything felt like it was burning. A calamitous
event.
what I mean to say is um do you ever feel like everything is burning? Like the
world is on fire and nobody seems to care. Like, literally on fire. Like it'll
catch like a tinderbox and go "crack". Nobody survives that, it'd be the end of
the world. That's not something to fucking play around with you pieces of shit
and by that I mean well not only is a lifetime so sheltered, from all that was
weathered, by the past unbeknownsted to our selves.
I'm proud of how far I came. I feel like a statue in the garden, a spirit
inhabiting the house. I feel like an interpretive dance, like a statement of
being on our behalf. swirling and chaotic, yet never amnioxitc, alight and
aloft
to our pleasures.
for {bool shouldGameEnd = False; !shouldGameEnd();} {
// game code
}
okay anyways back to symbeline - the commands issued before a battle are things
like "have more spearmen here" or "hold and attack the rear" and stuff like
what you'd give in Dominions, except with fantasy armies.
┌─────────┐ ┌───────────┐
│ similar │ chronological │ different │
╘═════════╧╧════════════════════════───────────────────────────────────────────────────┘
|