=== 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 │
╘═════════╧╧═════════════════════════════════════════════════════════════════──────────┘
|