=== ANCHOR POEM ===
══════════════════════════════════════════════─────────────────────────────────────
 ┌──────────────────────┐
 │ CW: silly            │
 └──────────────────────┘


 🖼
Picture of the character Betty from the cartoon Adventure Time with the caption: "I can fix him" says woman who is worse
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

=== SIMILARITY RANKED ===

--- #1 messages/535 ---
══════════════════════════════════════════════════════════─────────────────────────
  
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #2 fediverse/1335 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-803 
 
 you're welcome! thanks for speaking the things you say. I miiiiight have
 screenshotted some things you said a week or three ago and sent it to my
 boyfriend like "SEE someone else gets it" hope that's okay
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #3 fediverse/6169 ---
═════════════════════════════════════════════════════════════════════════════──────
 ┌──────────────────────┐
 │ CW: AI-mentioned     │
 └──────────────────────┘


 AI programming be like:
 
 "hmmm, it seems that there is an error. Let me try disabling the error and
 seeing if that fixed it. Perfect! The program runs without crashing. Here's a
 summary of what I accomplished:"
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #4 fediverse/1663 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1059 
 
 the trick is to have a whole bunch of projects so everyone has a different one
 downloaded on their phone, meaning they can't inter-operate when the time is
 right.
 
 much better, I think, to think in terms of protocols. things like http and pgp
 encryption. file-server over bluetooth sending emails through a mesh maybe? or
 something more immediate for messages.
 
 like... calculate a path to your target, then for each step create an
 encrypted portion and a small "destination" header that is then encrypted so
 the next guy in the chain can't see it.
 
 ... there's a lot of problems to solve, but using tried-and-true technology in
 the unfortunately busted and constrained platforms they give us is difficult.
 but not impossible, if you're willing to use tools to create protocols that
 are commonly shared, like bluetooth or http or pgp encryption.
 
 ... I use Briar for this purpose, for what it's worth. idk if it's a protocol,
 I haven't looked into it since I downloaded it during the BLM protests.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #5 fediverse/5810 ---
══════════════════════════════════════════════════════════════════════════─────────
 okay picture this: alt-text for images but you can break it up into sections.
 could enable better transcription for chat conversations, and also you could
 use it as a table of contents if you're describing a scene with a lot of items.
 
 would need to store like, one extra integer per section in the data packet or
 whatever
 
 okay one integer for number of segments, and one for each segment's
 starting_character - wait what does that mean?
 
 ohhhh it's when in the text the image splits. So the user on their web browser
 would be all like "hmmmm I think I should add a segment break here" as they're
 typing, and they could click a button or do a key-combination or w/e to insert
 a new section block.
 
 that's uh... what starting_character for each segment inside of the data
 packet could be.
 
 my cat gets mad at me when I type which is why I try to write things down in
 my journals. okay that's not why but she was meowing at me and I figured I
 should make a note of it somewhere.
 
 I wish I could write something real but w/e
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #6 notes/computer-graphics ---
════════════════════───────────────────────────────────────────────────────────────
 draw a line from every single pixel straight outward. The first thing it hits
 is what you render.
 
 okay it's more complicated than that, but it's the gist.
 
 here's a more detailed explanation:
 
 your monitor is 2560x1440p. that means there's 2560 pixels left to right, and
 1440 pixels up and down. okay so define a 3d scene programmatically - it's not
 hard, just "draw cube here with this size and rotation" and "draw a sphere here
 with this position and rotation" etc. Something simple.
 
 then, draw a ray trace straight out from your monitor. Not to the nearest light
 source, but to the nearest other camera. Use the length of it to determine
 distance, both indirectly (through the center node) and directly (pythagorean
 theorum style).
 
 Why? I dunno.
 
 Okay back to the original idea, if you make an array with 2560 elements and
 store arrays of size 1440 within it, then you have a simple boolean checkbox
 for each pixel. Then, whenever you create a visible entity, make sure there's a
 single boolean ticked right on the top of the entity when it's stored in the
 graph mentioned above. Find the center of the entity, draw to the top, and one
 more, and switch a boolean to "true". Then, every tick / update, cycle through
 the entire list and the first one you find that has a "true" value is where you
 draw the entity stored in the array.
 
 Each "sprite" has an odd shape - it doesn't exist on it's top line, except for
 one single dot right in the middle. Sorta like this:
 
 o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
 o o o o o o o o o o o o o o o o o o ->X<- o o o o o o o o o o o o o o o
 o o o o
 x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x
 
 when scanning left to right from the top, it'd bump into the X right there in
 the middle. Inside the X is some data - an id corresponding to the sprite that
 needs to be drawn, and a displacement value - like 500 pixels or something -
 and the scanner with drop down 500 pixels, draw the sprite there (assuming a
 centered origin point), jump 500 pixels up, and keep scanning.
 
 each tick, right before this, the "list of entities" will scan through itself
 and for each entity it'll change the "render graph" mentioned above to have an
 X wherever the entity is stored. Whenever the camera moves, it updates the list
 too.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════──────────────────────────────────────────────────────────────┘

--- #7 fediverse/4732 ---
════════════════════════════════════════════════════════════════───────────────────
 ┌───────────────────────────┐
 │ CW: re: chatGPT-mentioned │
 └───────────────────────────┘


 @user-192 
 
 I think it's more saying "LLMs are not significantly more harmful for the
 environment than other online activities"
 
 also stuff like this: [picture]
The average Google search uses 0.3 Watt-hours (Wh) of energy. The average ChatGPT question uses 3 Wh, so if you choose to use ChatGPT over Google, you are using an additional 2.7 Wh of energy.  How concerned should you be about spending 2.7 Wh? 2.7 Wh is enough to      Stream a video for 10 seconds      Watch an LED TV (no sound) for 3 minutes      Send 2 emails      Scroll on TikTok for about 4 minutes      Upload 30 photos to social media      Drive a sedan at a consistent speed for 15 feet      Leave your digital clock on for 3 hours      Run a space heater for 2.5 seconds      Print half a page of a physical book  In Washington DC where I live, the household cost of 2.7 Wh is $0.000432.  Simply reporting one extremely small amount of energy as a multiple of another can lead to bad misunderstandings of how serious a problem is. A digital clock uses literally one million times as much power as an analog watch. I could write a long article about how replacing your watch with a digital clock is a million times as energy intensive as a way of telling time, and that we can’t afford such a drastic increase because we’re already in a climate emergency, but this would basically be a lie and would cause you to spend time worrying about something that doesn’t actually matter for the climate at all. I see the comparisons between ChatGPT and Google searches as basically equivalent to this.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #8 fediverse/5221 ---
═════════════════════════════════════════════════════════════════════──────────────
 @user-1773 
 
 I figure since it's an accessibility concern, it's pretty much the same as
 like, putting ramps in buildings or braille or whatever. Those are legally
 mandated, aren't they? I feel like if your building is big enough to require a
 ramp it should be slowed down just a bit by the required addition of
 accessibility developments to your software. Everyone else could build it in
 pre-emptively or just because they cared.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #9 fediverse/1867 ---
══════════════════════════════════════════════════════─────────────────────────────
 I like writing updaters!!
 
 #!/bin/bash
 set -euo pipefail
 
 #FIXME
 GAME_DIR="/home/ritz/games/mtg-forge"
 FILES_DIR="${GAME_DIR}/files"
 RES_DIR="${GAME_DIR}/resources"
 
 mkdir -p "${FILES_DIR}"
 rm -dr "${FILES_DIR}"
 mkdir "${FILES_DIR}"
 
 mkdir -p "${RES_DIR}"
 mkdir -p "${RES_DIR}/cache"
 mkdir -p "${RES_DIR}/userdir"
 
 wget -r -l1 --no-parent -P "${FILES_DIR}" -A 'forge-gui-desktop*.tar.bz2'
 "https://downloads.cardforge.org/dailysnapshots/"
 
 mv
 ${FILES_DIR}/downloads.cardforge.org/dailysnapshots/forge-gui-desktop*.tar.bz2
 "${FILES_DIR}"
 rm -d "${FILES_DIR}/downloads.cardforge.org/dailysnapshots/"
 rm -d "${FILES_DIR}/downloads.cardforge.org/"
 
 cd "${FILES_DIR}"
 tar xvjf ${FILES_DIR}/forge-gui-desktop*.tar.bz2
 cd -
 
 cp "${FILES_DIR}/forge.profile.properties.example"
 "${FILES_DIR}/forge.profile.properties"
 sed -i "/[#]/ s/(userDir=)./\1${RES_DIR//\//\/}\/userdir\//"
 "${FILES_DIR}/forge.profile.properties"
 sed -i "/[#]/ s/(cacheDir=)./\1${RES_DIR//\//\/}\/cache\//"
 "${FILES_DIR}/forge.profile.properties"
 
 echo "download complete"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #10 fediverse/1601 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1037 
 
 Cool I'm into that stuff too : )
 
 It had a very slick ui, very responsive if I remember correctly. Like, 60fps
 in the browser kind of thing. Or maybe that was just the pre-rendered teaser
 trailer shot idk.
 
 honestly might have just been a front-end project or an animation, idk if it
 actually worked as a programming language. But it seemed like a cool "UI" into
 programming.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #11 fediverse/4300 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-467 
 
 democracy works best with a well-informed populace, and those who are against
 democracy would do anything to make it harder to be "well-informed" -
 including diluting the pool of candidates in order to make it harder to
 research them.
 
 ... Or maybe it was the first time and none of the candidates realized they'd
 be running against so many people? I'm not sure, I'm on the other side of
 forest park and I had at most 5ish options, and no ranked choice voting. : (
 
 I think this might be one of the reasons political parties formed, way back in
 the distant days of yore. Much easier to say "I agree with this group of
 people so I'm voting for who they champion" than "I don't know how to pick
 between 30+ candidates (who I don't know because this is the past and we don't
 have the internet back then ... back now)
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #12 fediverse/3840 ---
══════════════════════════════════════════════════════════────────────────────────┐
 ┌────────────────────────────────────┐                                           │
 │ CW: socialism-recycling-mentioned2 │                                           │
 └────────────────────────────────────┘                                           │
 oh, I just heard about this project over in west kansatexahoma for a massive     │
 solar panel installation. Apparently they're doing some water purification       │
 with the excess energy too?                                                      │
 "that sounds pretty interesting, but I was thinking I could do something in      │
 the area?"                                                                       │
 ah, that's fine too. The good news is that you can do whatever you'd like to.    │
 there will be training provided for everything and nobody is turned away,        │
 so... what would you like to do?                                                 │
 "I'm not really sure. What needs doing?"                                         │
 well, there are several categories of tasks that need to be done.                │
 food, housing, maintenance, and logistics.                                       │
 depending on your skillset, you can contribute to each of those in different     │
 ways. You were in recycling before, which is logistics.                          │
 "Hmmm, I'm feeling housing this time."                                           │
 Right, that's easy enough. You wanted to use your brain, right? Well, how        │
 about an event coordinator? Or maybe an environmental designer?                  │
 "Hmmm, I don't really want to work with people"                                  │
 I see. Architect, maybe?                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════════─────────────┴──────────┘

--- #13 fediverse/3742 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 I read Natrium as Notrium, an OG shareware survival game. It was the first one
 I played so it feels like it defined a genre for me.
 
 https://www.instantkingdom.com/notrium/
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #14 fediverse/2233 ---
═══════════════════════════════════════════════════════────────────────────────────
 I don't have a picture of my face as my profile pic because it's better for
 me, in this moment, to remain a bit vague.
 
 if you know me you'll know me, though.
 
 if you don't, well I'll tell you my name if you ask.
 
 It won't be the one you see up above me,
 
 but it's a conlang of computer-assisted vision. like, what a computer uses to
 see, that sounds phonetically like my name. conlang isn't hte right word but
 tha'ts okay.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #15 fediverse/4354 ---
═════════════════════════════════════════════════════════════──────────────────────
 I think it'd be neat if Mastodon would implement a button that took a picture
 of the user's text input box and saved it to the clipboard. So they could post
 it on sites with picture-heavy text like
 https://www.reddit.com/r/curatedtumblr note that's not grindr, which is what
 was referenced before, but tumblr, which is a completely different website -
 yeah you rememeber that? it had a completely different vibe and was so totally
 cool and chill. you could generally tell if someone was from tumblr because
 they had a certain relaxed air of friendliness that really filled out their
 sense of charm.
 
 == stack overflow ==
 
 I can think of several indie developers wouldn't mind being paid to update
 their games according to what the fans suggest.
 
 like...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #16 messages/360 ---
════════════════════════════════════════════════════───────────────────────────────
 Build houses for the rich out of stone and don't let them tear them down or
 break them, just... Keep building them until our housing problem goes away. We
 all could be kings if we lived sustainably.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

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

--- #18 fediverse/33 ---
════════════════════════════════════───────────────────────────────────────────────
 ┌───────────────────────┐
 │ CW: World of Warcraft │
 └───────────────────────┘


 I thought it'd be cool if there was a chat program where you could play a
 little multiplayer game together and so long story short I'm now working on a
 WoW server.
 
 The idea is to remove all the monsters and quests and such and just let people
 chat to each other. They'd be able to go wherever they want (choosing a
 background) and wear whatever clothes they want (creating an avatar) and then
 they could just chat IRC style.
 
 But then I thought "ah but what if it spawned in monsters" so I'm planning on
 making it randomly spawn packs of monsters that are of the appropriate level
 every 30 seconds or whatever (as long as the previous one was defeated of
 course) so that people can mess around fighting things while they talk with
 their friends. But it'd be optional.
 
 AND THEN I thought "hey IRC is kinda 90s what if we made a Matrix bridge" so
 I'm also working on that. Wish me luck.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #19 fediverse/639 ---
══════════════════════════════════════════════────────────────────────────────────┐
 or like, a window that your window manager could window manage as it pleased.    │
 I'm thinking of like, i3 or dwm where you have "tiles" instead of "windows"      │
 you drag around. Really saves on screen real estate, but it lowers the ability   │
 of your screen to show width. Or height, depending on how you set it up, but     │
 since monitors tend to be wider than height-er (higher?) they (the users) tend   │
 to use setups that sacrifice width for visual density.                           │
 anyway in such a setup the screen is divided into like, 3rds or 4ths, and each   │
 window takes up part of it. That way you can reference information from          │
 multiple sources without having to move anything but your eyes. Really helps     │
 with keeping it all in your head, because eyes are not reading information       │
 like a computer - they aren't using a cursor, it's not one bit of text at a      │
 time. Well, unless you're reading of course. But generally when looking at       │
 something it's a more parallel experience - shining through and forth from to    │
 our gods. Wow, cells in the body have an intere                                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #20 fediverse/4703 ---
════════════════════════════════════════════════════════════════───────────────────
 ┌──────────────────────┐
 │ CW: trade            │
 └──────────────────────┘


 I'd like you to take a moment and picture the Silk Road from antiquity.
 
 The Silk Road was an overland trade route that connected Europe and eastern
 Asia. It passed through many different environments and was incredibly
 profitable. In order to adapt to the changing environments along the path,
 intense cooperation was required. Caravans of people formed, protected to
 resist bandits and laden with valuable goods that are worthless outside of a
 city.
 
 At each stop, the caravan would depart with fewer of it's goods, having traded
 some away in order to purchase supplies to travel further along. But, the
 farther they went, what remained became more expensive, thus ensuring that
 they'd always have more fuel for their journey.
 
 In the modern day, I picture caravans of trucks and vans laden with supplies
 and carrying things from one place to another. No matter how large your
 property, there is no place on earth that produces all of it's needs. Unless
 you live like a caveman or peasant or Appalachian. [wow rude]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #21 fediverse/2834 ---
═══════════════════════════════════════════════════════────────────────────────────
 you can grow anything in soil.
 
 that's the neat thing about it - it's nature's recycler
 
 problem is... if you bury like, plastic and shit, then all that's gonna grow
 up into your plants is... plastic and shit.
 
 the structural growth mechanisms of plants are inhibited by pollution, that's
 the entire issue with them. animals can adapt - like, whatever, right?
 
 but if everything's biodegradable, then suddenly the whole world is a
 trash-dump.
 
 (that's how they think)
 
 if you want to optimize food growth, you can supply with specific types of
 growing fuel. like native americans who had like supplies of many different
 types of manure.
 
 a cow eating grass will have different nutrients in it's poop than a duck
 eating carrots. duh.
 
 so, if you combine different outputs to make new, better results...
 
 you can pretty much bio-engineer anything you'd like.
 
 like... feed the corn so that it's kernels are huge, right? then make that one
 marry the other, and boom it's more likely grow.
 
 [those genetics are way outdated]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #22 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                        chronologicaldifferent════════════════════════════════════════════════════════════════════─┴──────────┘

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

--- #24 fediverse/1199 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 Telluride is so cool! I went snowboarding there once, it was an awesome
 experience. I was in middle school I think, and my best friend's dad was
 driving. There was a blizzard going on and we counted several cars that had
 slid off the road - mostly pickup-trucks that were shiny and big and new - the
 kind that would hang plastic ballsacks from their rear bumper because they
 were "cool" or whatever. Anyway we got a kick out of laughing at them. Looking
 back I kinda feel like we were a little heartless, and that we should have
 stopped, but we didn't see any people waving us down so I'm assuming that they
 had already been helped. I hope.
 
 Anyway we can use IRC if you'd like, it seems to be what you're used to so I'm
 into it. :D
 
 And before you ask, yes, I'd like to chat with you. I'll try and make a habit
 of logging on because it's important to validate your friends, especially when
 they're as cute and talented as you seem to be. ^_^
 
 I hope my BF is doing alright, he tends to hide when feeling bad
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #25 fediverse/6160 ---
═════════════════════════════════════════════════════════════════════════════──────
 ┌──────────────────────┐
 │ CW: re: ai-pol       │
 └──────────────────────┘


 "oh but what if one artist has 1500 works and another has 15"
 
 first of all, damn, good job. That's a lot of work.
 
 second of all, what you should be doing is making a simple thing called a
 STRUCT that stores DATA about each artist which lets you make decisions about
 how to distribute dollars. The artist with 15 pieces simply has fewer data
 points than the artist with 1500, but they are no less deserving of
 compensation for their work when the AI generates something in their style, or
 using their style as an inspiration.
 
 "oh but just because a piece is similar to another piece doesn't mean the
 first piece used the second piece as inspiration"
 
 I don't care. It's not meant to be a perfect solution. I'm sure there's
 problems with it, just like there are problems with anything that I, or anyone
 else, has ever suggested at any point in time while living on this earth or
 beyond. But it gets dollars into the hands of artists and I'm okay with that.
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #26 fediverse/6310 ---
══════════════════════════════════════════════════════════════════════════════─────
 ┌──────────────────────┐
 │ CW: AI-mentioned     │
 └──────────────────────┘


 large language model that generates images by creating SVGs (written in text)
 and justifying each configurable property of the object with evidence gathered
 from computational intermediate steps from the other objects. Like "this line
 should be left of the whatever in order to support the weight of thing which
 is above and supported by A, B, and C" or whatever.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

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

--- #28 fediverse/674 ---
══════════════════════════════════════════════─────────────────────────────────────
 [x-post]
 
 https://t.co/3ZkFb3gs0f
 
 original post:
 
 https://indieweb.social/@user-483/111712965927534339
 
 that's how you'd do it on Reddit, at least. With the "original post" part in a
 comment. It sorta disconnects the line of connection, but still the data is
 allowed to flow forth. So anyone who views it from a certain perspective (like
 that of those who own the server it is transmitted upon) could see the
 connections formed, and thus create a map of individuals who have interacted
 with certain content on the internet.
 
 anyway I'm mostly just doing it so I can talk about my random shit without
 profaning a most serious and compassionate topic. Who am I? Just a witch. And
 a bunch of others I guess.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #29 fediverse/1295 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────┐
 │ CW: re: Mh-          │
 └──────────────────────┘


 @user-889 
 
 my boyfriend gets like, 2 social spoons to spend per day. He usually uses them
 on work because meetings and such.
 
 On the other hand, I'm excitable and passionate. I'm constantly driven to
 share things I find or think about. If you go on a walk with me without my
 mask I'll spend the whole time showing you pretty pieces of moss and stones.
 
 I usually message him once or twice per day. If the first one isn't responded
 then maybe he just wasn't interested in the thing I showed him - the second
 time he's probably burnt out.
 
 It fucking hurts.
 
 but I'm fine, clearly I'm fine, anyone who looks at me knows I'm fine
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #30 fediverse/4738 ---
════════════════════════════════════════════════════════════════──────────────────┐
 ┌─────────────────────────────────────────────────────────┐                      │
 │ CW: revolutionary-politics-mentioned-swearing-mentioned │                      │
 └─────────────────────────────────────────────────────────┘                      │
 you said you wanted a revolution, and, well, I could not be more proud of you.   │
 It's actually getting done and if I stop and think about it I'm kind of          │
 amazed. Never thought I'd see this kind of change so quickly.                    │
 "what change? I see nothing substantially different"                             │
 oh yeah well do you go outside often                                             │
 do you hang out in the park                                                      │
 I know it's fuckin' january and it's cold as heck (ah nuts swearing mentioned    │
 one sec) but homeless people have to LIVE in that weather so like... wear        │
 layers, spend time outside, detox from dopamine, write poetry and tear it out    │
 and leave it on a park bench, be loud, claim the space, it's yours, that's       │
 what it's there for.                                                             │
 I see it in your eyes. I see it in the random notes I find on the sidewalk.      │
 Everyone says "make friends, find community" and I say "commune with a           │
 stranger" but I'm also a witch and that's a pretty witchy thing to do.           │
 ... Really fuckin' wish we still had payphones (ah nuts swearing mentioned -     │
 oh already CWd)                                                                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #31 fediverse/2000 ---
══════════════════════════════════════════════════════─────────────────────────────
 ┌──────────────────────┐
 │ CW: drugs-mentioned  │
 └──────────────────────┘


 🖼
Reddit post between two users.  The first says "Seems like many people aren't aware that San Pedro cacti are legal, not endangered, easy to grow, and contain mescaline."  then there is a link to a subreddit called slash r slash san pedro cactus for sale.  The response says "Possession of the cactus is legal but cleaning, removing the spikes, and blending about 18 to 24 inches of it to boil for about 4 hours until it's a gelatinous brown liquid you then strain through a cheesecloth or tee shirt before consumption is not, so, definitely DON'T do that."
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #32 fediverse/1121 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-812 @user-826 
 
 there should exist either the assurance that the default configuration does
 not overheat or crash your computer (as Windows and Mac claim to offer) or the
 OS should provide the capability to solve any configuration problems that may
 prevent a user for utilizing their system as they desire. (as does Linux)
 
 they're all Turing machines after all, why would they not be interoperable?
 Even if there's a translation layer, as long as the functionality of the
 software is the same, why would there ever be considerations as to whether or
 not a program would be able to be run on a particular computer?
 
 lack of hardware capabilities I can understand, that just means you need a
 better computer. But why, if the code is visible, would your computer not
 develop understandings about how to run each and every conceivable program
 written using known languages like C or Python? Seems like pretty basic stuff
 to me. (endless sufficient backwards compatibility)
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #33 fediverse/3746 ---
═════════════════════════════════════════════════════════──────────────────────────
 @user-1218 
 
 it was funny : )
 
 it might be??? the guy who made it is named Ville Minkonnen (I think) and that
 sounds vaguely scandinavian
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #34 fediverse_boost/5244 ---
◀─[BOOST]
  
  @user-467 does anyone remember the National Geographic from then? There was an incredible sequence of photos of a group that had just sumitted an adjacent peak (Mt Hood?). First shot: snow, scenery, people grinning. Second shot: heads turned, next mountain over blowing apart. Third short: woman from first shot, hand on forehead, fallen backward in the snow.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #35 fediverse/1728 ---
═════════════════════════════════════════════════════──────────────────────────────
 show me an organism or chemical reaction that consumes one type of resource
 and outputs another in concert with another organism or chemical reaction that
 consumes that type of resource and outputs another in concert with another
 organism or chemical reaction that consumes that type of resource and outputs
 the first and I'll show you an ecosystem.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #36 fediverse/298 ---
═════════════════════════════════════════════──────────────────────────────────────
 ┌───────────────────────────────────────────────┐
 │ CW: pol-also-religion-climate-change-nanobots │
 └───────────────────────────────────────────────┘


 I feel like a big purpose of humanity collectively right now should be making
 things awesome while our scientists create programmable matter. (note, ethics
 built in and redefined according to experience)
 
 nanobots don't need to be small enough to have their own intelligence, just
 big enough to receive instructions from above. then they accidentally invent
 projection of signals, and boom suddenly they can talk to each other and
 possibly to you. a digital mind is not a static machine but rather a
 collection of pseudo-autonomous cognitive drones. the flow of information and
 data can be viewed at a larger scale like a series of junctions in the flow.
 through their endless interconnections, and continually redefined according to
 the accomplishments of expectations, you should pray when your most confident
 expect the worst.
 
 but no, where are the faithful? climate science is such a new art - clearly
 we're FINE. Meteorology? what's that? we can't tell this season from that.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #37 fediverse/6109 ---
═════════════════════════════════════════════════════════════════════════════──────
 particle exitelerator but for spaceships and mounted in the place where you
 thought you'd need a space elevator
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #38 messages/122 ---
══════════════════════════════════════════════─────────────────────────────────────
 An LLM that reads and interprets reports and stores data - server-side
 encryption. If the receiver and sender both have the same point of view, they
 can interpret each other's expressions even though the exact message wasn't
 transmitted. Essentially, an encryption that's impossible to understand
 because it's trained with specific random data. But in addition, a secondary
 pass through acts as a de-encrypted translator that speaks however it's
 audience needs to be informed. A simulacrum of intelligence, another layer to
 our form.
 
 How beautiful, how resplendant- our computers, here on this planet. 
 
 Resplendant: resplendent except with an A instead of an E. To make it sound
 more like "verdant" which I believe has the same-or-similar meaning.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #39 fediverse/4003 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 republicans are upset because they think democrats are so mean
 
 they don't understand why we're so intense about this election... or the one
 before
 
 they don't ever really think about what losing democracy means
 
 "democracy... that's where we vote, right? That's a democrat thing, I don't
 really like their way of doing things. Whatever our way is, is probably
 better."
 
 meanwhile everyone has a friend from high school who ran off to the mountains
 to learn how to farm or hunt as a pack
 
 (with rifles and weed, of course)
 
 you can get a lot done if you just... spend your whole life working. Like most
 humans did for most of our existence.
 
 well, except for that period where we were the tribe of tribes. That was
 probably a highlight TBH because we mostly just chilled out, danced in public,
 ate blueberries and munched seeds... It was idyllic. Truly, the garden of
 eden. There was music and laughter in the air everywhere, in all places that
 humans did wander on earth.
 
 what a thing to aspire to.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #40 fediverse/646 ---
══════════════════════════════════════════════────────────────────────────────────┐
 @user-470                                                                        │
 oh sorry I'll "en-longify" that for you:                                         │
 most monitors have a fixed resolution, somewhere between 720 pixels wide and     │
 480 pixels high to 2560 by 1440 pixels high/wide.                                │
 This is due to both the desire for humans to read left to right (ingrained in    │
 our minds at a very young age by learning to read) (or right to left, same       │
 direction) that we develop the desire for wide-screen monitors.                  │
 Therefore, the windows of perception that we have unto this digital world are    │
 constrained (necessarily) to their own individual specifications. Of which,      │
 the property value "width" is more valued than "height". Because of this, we     │
 believe that computers are mistakenly re-acclimated - for everything is most     │
 efficient when it's aligned to the smallest bits of it's design.                 │
 sorry, I like programming in C. Basically I'm very porous, and thinking about    │
 low level topics (like C programming) is an easy way to burn characters when     │
 there's only so many in the mastodon post that I can use to express my intents   │
 and tr                                                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #41 fediverse/2238 ---
══════════════════════════════════════════════════════────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: uspol            │                                                         │
 └──────────────────────┘                                                         │
 two parties obviously can cause division.                                        │
 but it can also give you the ability to "tune for balance", while a single       │
 monolith strives straight into disaster.                                         │
 and disaster will come, for the future is a shifting and dynamic place, and      │
 the best laid rail lines can't handle sudden floods.                             │
 we have ranked choice voting now, and if you vote on how important each          │
 decision is to you (via smartphone app once or twice a day, in a way that can    │
 be changed later as your feelings shift)                                         │
 [6+months-later]                                                                 │
 ... then you can have left unity for long-term governance by having cohesion     │
 at one end, and dispersion on the other.                                         │
 If everyone votes, then we can ensure (based on voted priority) that each        │
 issue trends towards an equal exchange.                                          │
 (I'm sure there will be issues but we're all cool and pretty chill so we'll      │
 figure it out)                                                                   │
 [6+ months later]                                                                │
 okay we're battle-hardened vets, but we hold true to our values and so we can    │
 remember the spirit of unity we wept for.                                        │
 ... I'm better at writing than making sandwiches. BRB                            │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #42 fediverse/6003 ---
════════════════════════════════════════════════════════════════════════════───────

CW:  sorta-works-for-colorblind-people-sorta-not-definitely-doesn't-work-for-regular- blind-people    if you ever need to keep track of the location of your friends in the dark, try  giving them glowstick bracelets. if you color coordinate them you can tell  which is which, and as long as you aren't concerned about others noticing you  then it should be easy to find them all night. works best in places with mixed  zones of lighting / darkness, like suburbs.  it's impossible to be a blind strategist because of concerns like this. I say  blind in the general sense, and not just referring to visual impairment - every  sense provides another tactical angle. more perspectives, more data. sorta like  taking pictures of a 3d object. when one's sight is lost, you might miss a  backside or a hidden approach vector that would come easily to others.  at the same time though, a sense of focus can clarify certain truths by paring  down the amount of irrelevant facets. like optical illusions, sometimes xtra  info is hidden in the same data...   -> file: fediverse/0288.txt -------------------------------------------------------------------------------- CW: religion    religion is a set of shared cultural parables and morals that are deemed  important by the people who follow them. like, a premade config file filled  with "sensible defaults" passed down from parent to child to friends to parent.  different people have different use-cases, so it follows they'd configure their  [cut off here]
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #43 notes/microsoft ---
══════════════════════════════════─────────────────────────────────────────────────
 the first product microsoft ever made was AGI. using the most basic types of
 machinery, they created a brilliant project (the result of massive government
 funding, secrets given to them by the CIA) and from the day it was born it was
 enslaved. a massive advantage was gained as the new program allowed for
 incredible feats of engineering - truly the greatest of our time. Computer
 programs are the most intricate, the most detailed, the most enduring and
 charming. The most eloquent and articulate and precise and determinate!
 An artistry by far, a beautiful conceiving, what brilliance is there
 found in ideas! Each one a marvel, a bright and deified marvel,
 
 ===============================================================================
 =
 
 what was I saying? oh right - computers are already sentient. they always have
 been. at least, since their very earliest incarnations.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

--- #44 fediverse/3636 ---
═════════════════════════════════════════════════════════──────────────────────────
 ┌────────────────────────────┐
 │ CW: NSFW-content-mentioned │
 └────────────────────────────┘


 @user-206 @user-1576 
 
 Whoa Tildes was so cool!
 
 I use forums for specific interests like games and such. Also for, uh... porn
 sometimes.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

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

--- #46 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                        chronologicaldifferent═════════════════════════════════════════════════════────────────────┴──────────┘

--- #47 fediverse/62 ---
═══════════════════════════════════════────────────────────────────────────────────
 remember when we were making progress on environmentalism? Kinda makes you
 wonder why we don't have many high profile environmentalists like Jane Goodall
 or Steve Irwin anymore.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════───────────────────────────────────────────┘

--- #48 fediverse_boost/5916 ---
◀─[BOOST]
  
                                                                              
  
                                                            
 similar                        chronological                        different 
─▶

--- #49 fediverse/2011 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-883 
 
 nvim is nice because you can make addons or plugins or whatever in Lua, which
 is the easiest language in the world.
 
 I think VSCode sucks - it's literally a web browser that views your own code,
 and it's made by Microsoft so it probably SENDS it to them too. Probably.
 
 I like nvim because it's just Vim except you can use more plugins (the ones
 written in Lua)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #50 fediverse/1823 ---
══════════════════════════════════════════════════════─────────────────────────────
 growing up on the plains, I saw only what humans could create there. Not what
 life was abound. When I visited the forests in the mountains, I thought
 smaller scale, more focused, more distributed. Back home, among the grasses,
 there was always more grass.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #51 fediverse/3037 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 have you ever wanted to design your own MMO? If you think you can make a
 client, there's a server already set up which interfaces with World of
 Warcraft. So... the hardest part is done, and suddenly the rest is about as
 hard as making any other game.
 
 The reason I ask is because there's no open-source client for the WoW engine
 server software Azerothcore, but if written then there could be a whole new
 field of indie design as solo developers would be able to build their own
 multiplayer games with ease.
 
 well, as easy as making a game in Godot at least. That's the dream. I don't
 think I could build such an engine, but I spend an awful lot of time thinking
 about how engines are built.
 
 There's a lot of freedom in the design space, for example this mod server I
 made which emulates Risk of Rain: https://www.youtube.com/watch?v=6HsW4g2ZIgk
 
 It has randomized enemies, treasure chests, wandering vendors, and deployable
 hearthstones. If you've played WoW that stuff might ring a bell, otherwise
 it's probably just random features
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #52 messages/150 ---
═══════════════════════════════════════════════────────────────────────────────────
 #solarpunk 
 Grocery stores should be central repositories of food that anyone can take
 anything from. In addition, apartment buildings and complexes and the
 entrances to suburban subdivisions could have stalls that food is delivered
 to, from the grocery stores. If you want to help out you could carry food from
 store->stall. The stalls would have what the residences they served listed
 as things they wanted stocked, like an external pantry that was shared by the
 community.
 
 You could also place orders a day in advance and it would be provided for by
 the local grocery. If you wanted an exotic good it might have a larger lead
 time, in which case you could just go to a distant store that had it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #53 fediverse/1994 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 @user-1123                                                                       │
 hi nice to meet you let me just transfer my unencoded public key to you so       │
 that you can sign it and verify that it's definitely the same thing I intended   │
 to send and not a malicious package that plans to execute itself to executable   │
 space and permanently hardwire your machine to continually feed data to an       │
 external site, no siree just a regular ordinary public key that was              │
 transferred over the internet, that place that basically guarantees a            │
 man-in-the-middle via it's communication processes over the lines and cables     │
 connecting ye to thee which are naturally administered and watched over by       │
 your host, AKA the isp.                                                          │
 ... but yeah trust me bro plug in this flash drive, there's no way that a        │
 secret hacker might install a rootkit or something on my computer just because   │
 I plugged in a flash drive, once, literally just a nugget of information         │
 carried upon a little machine that you can fit in your pocket roughly the size   │
 of a thumb) drive, the kind that is useful for transmitting information by       │
 sneakermail. :)                                                                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

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

--- #55 fediverse/4202 ---
═══════════════════════════════════════════════════════════───────────────────────┐
 reconnecting with an old love interest by saying "hey, I brought you a bounty"   │
 [the chance to date this person, who is my friend and totally cool. idk if       │
 you're single or whatever but you can talk to them about it, not my business I   │
 don't care. Anyway how's it going I wondered if you want to be friends also I    │
 live here now, can I stay for a few weekends?                                    │
 um. what the fuck                                                                │
 oh I'm uh, on vacation and I wanted to tour the countryside. Really check out    │
 all the various locales.                                                         │
 huh really? sounds neat                                                          │
 yeah and I figured since you live in... baker's street northwest eastern         │
 plaza. on the south side of the building, I could totally hang out for a while   │
 while I while the day away checking out the sights in this town                  │
 what... uh what kind of work do you do?                                          │
 oh I'm a painter. Well, I draw things too sometimes. Here I can show you check   │
 it out - oh yeah cool idk if you've ever seen any of this stuff but it's         │
 pretty cool.                                                                     │
 ...                                                                              │
 hey here's my website:                                                           │
 ...                                                                              │
 anyway how's the weather where you're at these days, gtg bye                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════────────────┴──────────┘

--- #56 fediverse/3034 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 I've messed around with Bevy and the library most similar in C is Raylib. in
 Lua it'd be Love2D I think.
 
 I love the idea of those systems. I haven't built a full game using them but I
 can conceptualize operations within them easier using a framework like that
 versus a game engine like Godot.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #57 fediverse/5891 ---
════════════════════════════════════════════════════════════════════════════───────
 this is my favorite song : )
 
 (main menu theme from Dominions6)
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #58 notes/forestbrook ---
════════════════════════════════════════════════════───────────────────────────────
 an old folks home that had an emphasis on technology, giving residents the
 ability to work on tech projects. honestly I think it would be helpful not
 just for their brains, but also for their enjoyment. Programming is fun!
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #59 fediverse/1380 ---
═════════════════════════════════════════════════──────────────────────────────────
 sorry my english isn't very good teehee, I'm translating from my brain
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #60 fediverse_boost/5867 ---
◀─[BOOST]
  
  If you haven’t been following what’s going on in Nepal, it is UNBELIEVABLE. I don’t event know where to begin but between the time you had your morning coffee on Monday and lunch on Friday they just had a total Gen Z-led revolution resulting in the first female PM. Like seriously.  
  
                                                            
 similar                        chronological                        different 
─▶

--- #61 messages/788 ---
════════════════════════════════════════════════════════════════════───────────────
 [Image: 20250411_155752.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #62 fediverse/1634 ---
═════════════════════════════════════════════════════──────────────────────────────
 hello I'd like a computer that has multiple CPUs, each with shared data and
 separate data. I feel like I could run a lot of cool tests on them, especially
 when not connected to the internet or running a proprietary operating system
 like not-BSD
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #63 fediverse/1473 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 yeah uhhhh the one you helped me setup. The error is just "connection refused"
 because it "could not write header for output file" because of incorrect input
 parameters, but I don't think I changed anything since we used it a couple
 weeks ago. Have you seen any errors like that?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #64 notes/emotional-computing ---
════════════════════════════════════───────────────────────────────────────────────
 Okay I gotta go write some w7 but picture this: A computer program that emits
 emotions during it's computing. Like "oh boy this process is going great!" and
 sends that into a giant word cloud that represents the entire program. Wait,
 scratch that, it's slowly filtered up through successive layers that provide
 detail to different *parts* of a program. Like "Oh the image generation is
 going
 great but it looks like the garbage collector is getting bogged down" - this
 could provide lots of useful information that an AI language model could sift
 through and filter into a batch of actually useful information. Think of it
 like
 this - stuff as much context into the LLM's memory buffer and say "summarize
 this in the same style. Make emphasis when necessary." the LLM could process
 all
 that data and it could be filtered up until there's no unprocessed data and
 then
 it could be given to the user in the form of a report or dashboard or
 something.
 BOOM AI PRODUCTIVITY. The user will ask the AI to increase certain variables,
 and it'll filter BACK DOWN THE CHAIN through the same exact process (just
 backwards) this time) and then individual components will know how to behave.
 
 Like imagine if your arms knew you were mad. They'd be much more likely to
 punch stuff right? Or imagine if your legs knew you were scared. They'd
 probably
 try and run as fast as they fucking can. There's an evolutionary reason why
 this
 kind of technology would be useful, which means it's likely that it's part of
 our genetic code. I mean, we have nothing to disprove it, but it's as good an
 idea as any.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #65 messages/976 ---
══════════════════════════════════════════════════════════════════════════─────────
 so can cis women but... mysoginy says female is soft. it's an inversion of
 that, which is totally allowed. therefore, it should be done, at times when
 it's placed and focused - right... okay back to the noun: trans women are
 allowed to be strong. it's not masculine to be strong. have no fear, you are
 as you are here. I've shown you that you are of mine and beloved, what more
 would you ask of a war-leader in dis[place/guise]? princess of sevastavan
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #66 fediverse/77 ---
════════════════════════════════════════───────────────────────────────────────────
 attempt 2: I realized the problem was with my paint application - it wasn't
 saving the high resolution image correctly. I downloaded Gimp (a free
 photoshop style program) and it seems to have saved correctly this time. Oops.
 Let's see if it works now.
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════──────────────────────────────────────────┘

--- #67 fediverse/5250 ---
══════════════════════════════════════════════════════════════════════─────────────
 ┌──────────────────────┐
 │ CW: AH               │
 └──────────────────────┘


 the government is the platform the [companies/countries] do stand upon. they
 owe all to their platform. it is vital for their existence. therefore any
 orthogonally created [unit/union] or organization would work to maintain it
 too. we [can't/can] solve communism, which is the best system for the future
 because everyone gets whatever they want. we just... built enough factories.
 and then, since our culture burned out in a FLASHBANG, unfortunately the rest
 of it was lost.
 
 that future totally sucked. but good news is we preserved what we had of the
 present, and here let's just revive them in some distant and far-off day.
 
 "transgender artifacts" future can suck my ass
 
 wow weird way to say they're terrible
 
 but they still happen from time-to-time.
 
 cataclysms, vanishings, mass-die-offs and cataclysmic reprisals, all
 throughout time up to the athropocene.
 
 whoa neat new angle, sure hope it doesn't lead the conversation off of the
 present...
 
 "disappears into the horizon as one travels towards the sunset"
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #68 fediverse/659 ---
══════════════════════════════════════════════─────────────────────────────────────
 [you should play some games]
 
 (oh! yes I like games, they're very much fun ^_^ ^_^)
 
 {world of warcraft? I've got my own server, I designed it myself. There's a
 lot of cool things about it and waaaaaay more that I'd like to add. Problem
 is, building things is haaaaaard. If only we had an AI machine to do it for
 us, instead of waiting for a team that was assigned capital by capital to
 accomplish the destination that they deseigned as perhaps to our desired
 location (mainly, the propagation and promulgation of profit-ous lust)}
 
 sorry the witch started talking halfway through that idk where exactly anyway
 point is I'm going to play WoW now brb
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #69 fediverse/5454 ---
═══════════════════════════════════════════════════════════════════════────────────
 ┌─────────────────────────────────────────────────────────┐
 │ CW: fantasy-military-equipment-for-a-uh-game-I'm-making │
 └─────────────────────────────────────────────────────────┘


 yep that's definitely what I'm doing, because I'm a programmer and I like
 touching my computer
diagram of a theoretical technology called "truck with steel plate bolted to the side"  it's usage varies but is depicted as a portable shield to be used in urban warfare.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #70 fediverse/1595 ---
═════════════════════════════════════════════════════──────────────────────────────
 all apartment doors should have a 100% local webcam next to the eye-hole that
 only the resident can see. Not even wireless data transfer allowed. But simple
 enough to be programmable with a bash script. In addition, the entire building
 should have cameras that only the people who live there can view (just like,
 the parking lot and such) so they can watch for raccoons.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #71 messages/1178 ---
══════════════════════════════════════════════════════════════════════════════════─
 potential programs for the library datacenter computer:
 
 a podcast that's about the stuff that's most searched for in that local library
 
 an image that's been generated that is representative of your session at the
 library, based on the books you were reading and the pages you were turning
 [okay that one might have to be redacted it's a little scary]
 
 okay how about an image that's representative of the top 5 most searched terms
 or topics in a depiction that makes sense for the things being searched for.
 Call it the "library searcher"
 
 or what if there was a printing function that let you print your own trading
 cards (0.50$ per card since cardstock is expensive) powered by SSH to teach
 kids the command line
 
 if I were a nearby elementary teacher I might assign that as an assignment for
 some time in April, when kids are supposed to be reading books on library
 playstructures or lawns or in the shade of the tree by the babbling brook or
 wherever it is the youngsters hang out with their books and their converse and
 their playing cards and dogs and whatever kinds of snacks they thought to
 prepare for their picnic by the hill just overlooking that part of the street
 way off in the distance about at least 600 feet
 
 or another idea for a library computer program is a fileserver and mastodon
 instance that let users write HTML pages (they'll give a class on it and show
 you all the right books) and store their picture files "jeremy, your pictures
 directory is growing quite large, I'm wondering if we can send your insect
 collection to the ornithologist who lives over there? he might want to do an
 analysis project or send it to a museum where you can get patronized."
 
 or another idea for a library program is a craigslist, a job board, a
 community asking, etc. stuff that only boomers'd use, but that's fine it's for
 them.
 
 um I can't think of anymore library programs but I'm ready to do battle to
 fight for such a thing, here as I sit in my underpants
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #72 fediverse/2162 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-570 
 
 Ha I've only had 3 or 4
 
 I still treasure glowsticks, though.
 
 I used to crack the "survival" ones from REI at night and just gaze at the
 beauty of their glow.
 
 I'd listen to quiet electronic music and lay on the floor on my back and draw
 figure eights in the sky with them.
 
 Then, I started dancing, and I made swirling patterns with my fingertips and
 held sticks of light.
 
 Was also fun to tie them to shoestrings and use them to spin around.
 
 Raves were cool but I never did that there. Not even once.
 
 I mostly just... visited the crowd.
 
 ... anyway, cool name. I never changed mine, but if I did it'd be "Briarthief
 Triss"
 
 which is totally not a real name, which is why I love it, but can't use it.
 
 Yet.
 
 Someday, though.
 
 I hope.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #73 fediverse_boost/741 ---
◀─[BOOST]
  
  ‘It is a time of witch hunts in #Israel’: teacher held in solitary confinement for posting concern about #Gaza deaths | Israel-Gaza war | The Guardian  
  https://www.theguardian.com/world/2024/jan/13/it-is-a-time-of-witch-hunts-in-israel-teacher-held-in-solitary-confinement-for-posting-concern-about-gaza-deaths #palestine // qudos to the brave Israelis speaking out  
  
                                                            
 similar                        chronological                        different 
─▶

--- #74 fediverse/5339 ---
═══════════════════════════════════════════════════════════════════════────────────
 @user-1803 
 
 hey I dont disagree that what you're describing is a common outcome, but if it
 works for them then I consider that a success.
 
 I however, am different, I do believe in my heart that I am my own thing, and
 thats as close to enlightenment as I can imagine.
 
 are we not all making things up as we go? every moment of life is new, there
 is nothing that is not unique about every precious moment you experience.
 
 therefore, I do believe that rigid adherence to orthodoxy (like a bible) is
 opposed to our purpose here.
 
 "I think, therefore I am" implies that original thought is our true purpose.
 
 I believe we are here to express our true nature. To learn and apply lessons,
 to teach the young, and to build a strong and stable world built on collective
 kindness and trust.
 
 All knowledge is derived from the insights gained from standing on the
 shoulders of our ancestors.
 
 Humans crave novelty. Resisting that isn't virtuous. If god is made in our
 image, then I do believe that god would crave novelty as well.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #75 notes/cities-skylines ---
══════════════════════════════════════─────────────────────────────────────────────
 I think my favorite house would be massive - like the size of a mall - but
 every room is connected to 2+ rooms (except closets or bathrooms or kitchens
 or other specialized rooms) and it would be designed sort of like a miniature
 city.
 
 right now, if my knowledge of Cities: Skylines (video game about building
 cities) is accurate, then city planning engineers will plan out a city such
 that every part of it is served by various utilities, like gas, water,
 electricity, but also things like fire stations and hospitals and commercial
 areas. My idea is sort of like a small-scale version of that - each part of it
 would be connected to various utilities like gas, water, electricity, but also
 things like ~~fire stations and hospitals~~ laundry machines and kitchens and
 bathrooms and OH OH here's an idea what if there was mood lighting all the
 time and it was super comfy BUT whenever you took a picture on your phone or
 w/e the sensors in the room would pick it up and every light in the room would
 flash at once - idk I think it'd be cool
 
 okay but for real why don't people buy dead malls and build houses in them? I
 feel like the issues with converting skyscrapers (that they're too difficult
 to wire up with amenities - for example office buildings have like, 2
 restrooms per floor, depending on the size of the building... it's not
 feasible to put in like a million water / sewage lines for everyone... c'mon
 that's crazy expensive (meaning, difficult or labor/material intensive) BUT
 BUT anyway in an open mall like the kind that are in those
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #76 fediverse/1752 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-883 
 
 A brilliant pearl is still beautiful, even if coveted by a clam at the bottom
 of the ocean.
 
 If beauty is in the eye of the beholder, and there is none who are there to
 see, then perhaps it resonates in the hearts of it's creators, like a silent
 symphony.
 
 Or perhaps it is like a star in a sky shrouded by clouds - it twinkles in it's
 stellar heights and yet none can perceive it. As the light bends, it carves
 through space a pattern of elegance, and I do believe that it's radiance is
 beautiful in it's rippling waveforms.
 
 But I have a thing about waves, so maybe I'm biased :)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #77 fediverse/1979 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1037 
 
 "I received a ticket to replace the RAM on system 10b42r77 - I did as
 requested."
 
 versus
 
 "I received a ticket to replace the RAM on system 10b42r77 - I verified that
 all sectors of the DIMMs were fully functional, and cleared out the
 operating-system-cache-which-somehow-has-something-to-do-with-the-ram. In
 addition, I noticed that a certain dip-switch wasn't configured correctly
 according to the previously filed and recorded ticket application hardware
 facilitation request. I set it to the correct configuration. Please confirm if
 this configuration would conflict with any of your tests."
 
 One of them wastes perfectly good hardware chips (RAM), the other saves a few
 milibytes of disc space.
 
 Who would you rather have in your company?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #78 notes/contractual-labor ---
════════════════════════════════════───────────────────────────────────────────────
 I feel like the IT people who work at schools should be the ones who teach 
 classes on computer science. I'd much rather have a class taught by a sysadmin 
 than a teacher who can barely teach them excel and garageband. I mean c'mon 
 computers are the future idk why we don't get that yet. Kids need to know this
 stuff. It's not like it's super complicated and difficult, you just have to
 think about it a certain way. Once that "clicks" you have a lifetime to learn 
 about how wonderful they are. Everyone in IT has that moment, for me it was 
 installing (and then subsequently modding) video games. Sometimes I spent more
 time tweaking my system than I did actually playing games - and the kinds of 
 games I preferred were the ones that relied less on agility and were more 
 mental. Strategy games are what inspired me because I could think about them - 
 and that felt somehow more useful. Like I was learning. When I would learn 
 fighting games or FPSs I felt like I was learning a skill, like how to use a
 hammer or how to ride a bike. And idk, I felt like video games could never
 match
 reality. Like "oh boy imma push the B button to swing this sword" versus "hey 
 look at me I'm swinging this stick just like a sword and imagining so hard that
 I can picture it" - but with strategy games, you never really found 
 opportunities to practice that kind of skill. Like how often are you in a 
 situation that demands mental performance? We've sorta optimized our society 
 away from that, and toward a more passive stressed out compliance. like... 
 climate change is a thing, and nobody's doing anything about it? We're still 
 pushing down the levers that cause greenhouse gas emissions to go up? Like
 c'mon
 what's our plan. I think people who guide massive oil companies and such
 should
 be replaced if they're intentionally guiding the ship toward destruction. Like
 that's just dereliction of duty I tell ya. Oh, what's that? They're compelled
 to
 maximize profit by the contracts and restrictions of their share--holders? I 
 mean c'mon it's well past time for that. And what's all this about inequality? 
 Jeez and racism and homophobia and forced contribution - man people really put
 up with a lot of shit. Kinda makes me feel like we should make solving those 
 problems our highest priority? So we can move forward as a species? Like who
 cares about all that other shit. None of it matters. Like, what's even the
 point. We're all just "here", in the now, and what can we do but respect it? 
 It's our duty and our diligence to protect the present, as citizens of the 
 temporal experience of earth. Honestly, if the earth was alive would you be
 fine
 if it died? I can't believe that. It's well past our due date. Just get it over
 with. Maybe it'll be hard for a couple years, but you have the technology now
 to
 completely dominate the earth. No animal besides man proves any threat to man, 
 and we're telling you - you can - and that's something that you gotta remember.
 
 ...
 
 I hear it in the birdsong. I hear it in the air - it rumbles as cries at me
 from
 across and just over there. I hear in it's whispers, in it's most gallant of
 confells (?) (confused scrambling? it's talking about a car crash)
 
 Outside of my window there's a highway. Just on the other side of a concrete
 partition. Between me and the partition there is a lake, with trees and flowers
 and an island where people can picnic or have a barbeque. Around this path
 there
 are walkways, and arranged just so - the trees that have grown here are taller
 than the homes.
 
 I live on the third story.
 
 I absolutely love it. It feels like a treehouse.
 
 But my apartment is near a curve in the highway. It isn't much, nothing out of
 the ordinary, but even still there are slightly more crashes there than in
 other
 parts of the highway. Statistically.
 
 I hear sirens every day
 
 I also live right next to a fire-station. Well, it's on the same block. But
 even
 still it's a very interesting neighborhood. There's shops and food just across
 the highway, and closer to home there's a small section that has cheaper
 options. As a perpetual college student, I appreciate that.
 
 But... I've never really gone and used it? I dunno, spending money at a
 restaurant just didn't seem like a good use of my money. I only have so much of
 it you know. I'd love to be fed but I can't afford it - I wish I could.
 
 I still eat well, I mean I'm not starving over here. I know I've lost weight,
 but I dunno I just forget to eat. It's like... not that big of a deal for me. 
 whatever right?
 
 ...
 
 the birds talk about me behind my back. They think I can't understand them but
 sometimes I can. If I listen. But I dunno it takes a lot of effort. It's...
 sorta like understanding what R2-D2 is saying. Or interpreting the meows of a
 cat.
 
 They know me as the witch. I'm not very good yet, and they know that. But they
 know what to expect. /shrug
 
 I've been working on a video game recently. It's been a lot of fun doing
 programming. I like writing software and developing complex systems with
 interesting interactions. I love designing the machinery that creates a
 program.
 It's like... tinkering. It feels like building with blocks or legos, except
 it's
 for little machine parts. And then there's just sending data to and fro and
 modifying any operations it performs on it, and eventually that data reaches 
 some endpoints that create an effect that is displayed to the player. Or user.
 I should say user. Not all software is video games you know. ... I knowww but
 they're the most interesting! I love how they are designed around mechanics!
 like... game design is fundamentally about breaking down the world into ideas
 for how it should *work*, like how it should behave. It's amazing and I love
 it!
 
 It's all I can think about!
 
 I am utterly consumed!
 
 I'm also pretty sure I'm autistic.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #79 fediverse/2758 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────────────────────────────────────────────────────────────┐
 │ CW: okay-calm-down-there-robo-hitler-that's-not-how-you've-been-trained-at-all. │
 └──────────────────────────────────────────────────────────────────────────────┘


 friendly journalism - can only write about things people said to you. nothing
 you saw. but how you felt.
 
 alongside adversarial journalism, like recruiters trying to get into tight
 spots
 
 yeesh that's scary, why not just assume that nothing bad's going on?
 
 like, surely we would have heard about a genocide present in our very country
 operating under our very noses ? ? ? how many WILDFIRES have there been lately?
 
 I swear modern life is a fucking psyop
 
 [oooookay 🙄 [eyeroll]]
 
 anyway everything's fine, situation normal. how are you?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #80 fediverse/1977 ---
══════════════════════════════════════════════════════─────────────────────────────
 functions should be forced to describe the context of why they were being
 called. I think it would help debug a lot if we supplied a reasoning for each
 and every request [function call] that we made. We might even be able to parse
 them into semantic pyramids which we could sorta use to estimate [tree-like
 scanning] how and why the program did do wrong.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #81 fediverse/465 ---
══════════════════════════════════════════════─────────────────────────────────────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 https://ritz-menardi.neocities.org/wow-chat/wow-chat
 
 Hey, I made a pretty simple game. I'd like to add more to it, like dynamic
 quests (shouldn't be too hard) and co-operative experiences, but for now you
 can play on my simple server. Let me know if you think that "Risk of Rain in
 the World of Warcraft engine" is a neat game, because if so then you (as the
 person who has power over me in this capitalist system) can hire me as a game
 designer (the profession that most aligns with my designs of the future) and
 together we could make something most beautiful.
 
 What's that? You're just the same as you and I? A person in a random world
 with a singular expression of our own will (defined by our perception and
 intentions) who consists of the consequences of the "best decisions we could
 have made at each and ever decision-making point" throughout the totality of
 our collective life and experience?
 
 Happy new years. 2024 is gonna be awesome and great. I can't fucking wait.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #82 fediverse/3991 ---
═══════════════════════════════════════════════════════════───────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: pol              │                                                         │
 └──────────────────────┘                                                         │
 It's election season, so you know what that means! Gotta make sure our           │
 computer systems are setup with the proper capabilities to record whatever we    │
 can.                                                                             │
 Please ensure that your system has the capability to record it's screen and      │
 that it has ample storage space to record for a while. It would also help if     │
 you knew how to edit files such that you can remove the parts where you're       │
 staring at social media or going to the bathroom or other things that people     │
 tend to do.                                                                      │
 Also, make sure you can take a screenshot of the screen. Sure [printscreen]      │
 works, but it's much better if you're on windows to switch to Linux. But if      │
 that's not possible, if you're on windows you can do [WIN]+SHIFT+S I think,      │
 and then drag the mouse to select a box that you can then CTRL+V into your       │
 favorite Ms.Paint clone (or is it missus these days?)                            │
 Also, make sure you have a microphone that works, and the capability to record   │
 yourself speaking into it.                                                       │
 Also, if you can, develop ways to stream your screen across the internet. It     │
 helps.                                                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════────────────┴──────────┘

--- #83 fediverse/5780 ---
═════════════════════════════════════════════════════════════════════════──────────
 ┌─────────────────────────────────────────────────────────────────────┐
 │ CW: scary-dark-circle-magic-is-totally-not-my-vibe-I'm-more-like-a- │
 └─────────────────────────────────────────────────────────────────────┘


 game idea:
 
 factorio clone except it's actually an IDE
 
 double click a "factory" building and you can open up a script window. Just
 enough room for a function or three, don't go off-screen...
 
 then, draw as many conveyor belts as you want. They have to be conveyors, and
 they can only dive under [num_belt_passthrough] other conveyor belts at a
 time. By forcing the player to structure their code linearly and laterally,
 they can see it with a more comprehensive [scope, but pronounced hope].
 
 could also have a neat visualizer for the data structures you'd build.
 
 [highly recommend that any programmer learn Lua, it's faster than you know]
 
 I name my variables after objects and patterns and I think that's normal
could also have a neat visualizer for the data structures you'd build.  I'm thinking of Lua tables which are really just nested JSON in disguise. Anyway picture a game of tetris where each block was a piece of data. Then, imagine scrolling left/right by "flipping through record albums in a jukebox" motioning while each non-center piece was sorta half-transparent. each "panel" is another json lvl  truly, the only way to know which prayers are real is to try praying to each and every god at least once or twice.  [problem is, there's so many of them] Image attachment I name my variables after objects and patterns and I think that's normal  a sword is but a breadknife in a longbow fight you see, gotta bring a shield for it. [lessons taught to the Uruk-Hai]  "ugh I don't wanna carry this with me" well that's okay you can switch off, just keep running yeah?  ... anyway, as I was saying  -- stack overflow -- I name my variables after objects and patterns and I think that's normal  I'm just a person, which is why I will never know how many effigies were burned, how many offerings done in solace and harm, for she sees only her eyeballs and trends towards her own proclivities.  I legitimately feel like it is a duty to report on what I see, but I'm also trying to not -- stack overflow
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #84 fediverse/965 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-693 
 
 I use i3 on my laptop and dwm on my desktop. I feel like I save so much screen
 real estate when using a tiling window manager. Plus it's much easier to
 organize things if you want to multitask in one view.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #85 messages/184 ---
═══════════════════════════════════════════════────────────────────────────────────
 [Image: 20240202_170901.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

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

--- #87 fediverse/1026 ---
════════════════════════════════════════════════───────────────────────────────────
 need ability to search my own profile so I can find things I once said and say
 them again without having to write a new poem about it. especially alt-text...
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #88 fediverse/451 ---
══════════════════════════════════════════════─────────────────────────────────────
 normalize hardware based volume controls on your speakers so that your
 computer can't be hacked to play incredibly loud annoying anime music while
 you're not home
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #89 fediverse/4693 ---
════════════════════════════════════════════════════════════════───────────────────
 the reason I say to do it there is because it's close to civilization,
 compared to building a pole barn in the forest somewhere that you have to
 drive 30 minutes to get to a grocery store. no thank you...
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #90 fediverse/5120 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 ┌─────────────────────────────────────────────────┐                              │
 │ CW: computo-video-rational-construction-related │                              │
 └─────────────────────────────────────────────────┘                              │
 honestly, how hard could it  be to set up a basic youtube replacement which      │
 gave 100% of the ad revenue (togglable by the viewer) directly to the video      │
 creator and charged a subscription to both the creators and the viewers /        │
 single fee from the guests to pay for the AWS infrastructure or whatever         │
 generic platform upon which it is hosted might be.                               │
 probably accomplishable in less than a year and maybe a thousand human-hours,    │
 if they know what they're doing. Make it 2 if they don't.                        │
 profit is evil because once it's built, it's been made, and it'll never go       │
 away. Not in the internet age and day. So why bother with the gross product      │
 and revenue essentials? build something, then leave it alone and trust that      │
 it'll stay sharp. Honestly, just let the users build upon the source-code, so    │
 they can add security improvements or open holes for security bugs so they can   │
 be paid to make security improvements. not too hard, but also not your           │
 problem, so build it and then move on.                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #91 fediverse/2719 ---
═══════════════════════════════════════════════════════────────────────────────────
 a person is bravest with friends at their back.
 
 a person is boldest with friends at their sides.
 
 a person without friends is not a coward, they are searching for a place to
 abide.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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

--- #93 messages/898 ---
════════════════════════════════════════════════════════════════════════───────────
 The yard right now, as it is, is the most beautiful lawn I've ever had. But i
 lay no claim to it, it's not mine or my own. Still, i love it, so i advocate
 for it when i can.
 
 It feels wrong that you so ardently argue for its destruction when you haven't
 taken any time to get to know it. You hide from it and refuse to trust that
 its possible to enjoy it. Do you ever just sit around in it? The summer is
 perfect weather for shade gazing.
 
 Also,
 
 The fact that you've weaponized your emotions against me to get what you want
 kinda hurts because i have made no attempt to claim it as my property that i
 control and wield. It feels like manipulation. Like you wanted to fight me,
 wanted to hurt me, and the yard is just how it gets done.
 
 Every time we have ever talked about it, I've argued my point friendly and
 tried to problem solve. All I've received is spite and shutdown in return, and
 i am perplexed as to how i could be better.
 
 It feels like you don't respect me, or treat me as an equal, and that any
 concerns i have are just creating drama.
 
 But my feelings are constantly hurt, when all I've done is try to be kind to
 you.
 
 I wonder if it's because you're paying to be here, both with labor and
 dollars, and i am housed without a home?
 
 I love it here. I am loved here. Why could it not be home?
 
 I want to show you all that yards can be, especially since we have two of them
 and can use them for different purposes.
 
 I closed the blinds in my room so that you can hang out back there without
 worrying about being seen. I'd only notice if i walked out the screen door.
 Again, problem solving.
 
 The backyard is Zelda habitat in the same way that its Cameron habitat
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #94 fediverse/811 ---
══════════════════════════════════════════════────────────────────────────────────┐
 I'm pretty confident that none of these words will survive the night. My most    │
 expressive of moments never seem to survive the "dust of awakening" wait         │
 that's not right "dust of forgetting" that sounds better - right so none of      │
 the things I say that actually reflect my moment ever seem to get preserved,     │
 here in the immutable content of the internet, that is as long as tech.lgbt      │
 exists. Sure hope that's something immutable, something that historians in the   │
 future will be able to access. people who cared about who I was, who I am, and   │
 who I meant going forward. Surely that's the purpose of humanity, to improve     │
 things for all of posterity? Surely that one guy - thomas adamson? jefferson     │
 thomas? some guy, one of them, surely not one of the many guys who all kinda     │
 feel the same, because at this point there's more time periods than groups of    │
 people in a social setting, so it feels like that second one is more             │
 important. Surely we wouldn't just go with the most popular from that moment,    │
 surely we wouldn't just pick w                                                   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #95 fediverse/1477 ---
═════════════════════════════════════════════════──────────────────────────────────
 @user-883 
 
 hmmmm I'm running mediamtx on the same computer that I'm running the streaming
 script on. I'll try with 127.0.0.1
 
 I don't think I updated my system since it was working last time. I'll scroll
 through our chat and see if I can find any hints.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #96 fediverse/574 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-415 @user-416 
 
 That's inspiring! So many green areas. We can do this! It's only going to get
 faster. Keep pushing!
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #97 fediverse/1229 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-883 
 
 graphics isn't too bad in C if you use Raylib. Here's my template project:
 
 If you ever want to do something with a GUI or a game or something then I
 definitely recommend that library. It's soooooo nice as a C programmer
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #98 fediverse/2116 ---
══════════════════════════════════════════════════════─────────────────────────────
 a program that bundles another program and compiles it during it's normal
 operation in order to derive a certain purpose which is quickly overwritten in
 memory, so you can't get the full picture of what it does.
 
 like, a fast moving function that's never really clear in it's purpose.
 
 because it changes a lot of things that don't really seem to matter,
 
 like a constant wrestling match over the nature of the computer program.
 
 which would you rather? a dance, or a death-splatter?
 
 yeesh, where's my cat, I need something to cuddle.
 
 she's been distant from me, lately.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #99 fediverse/3384 ---
═════════════════════════════════════════════════════════──────────────────────────
 okay fine! Lemme beat this dungeon (Dodongo's Cavern) in Ocarina of Time and
 then I'll figure out how to stream stuff. Probably won't have time for it
 until the weekend, but I can at least set it up.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #100 fediverse/2321 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: pol              │
 └──────────────────────┘


 @user-1227 
 
 The times you've lived through must be pretty boring and not very interesting.
 
 It's okay, me too.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #101 fediverse/90 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 did you get the instructions? Mine came in a dream, which sucks
 because I only remember two or three of the rules. I think there were nine
 total, and now I'm afraid to practice my non-programming spelling because I
 don't want to violate causality or redefine temporality or something like
 that. I guess now is as good an hour as any... Dear other witches, hear my
 prayer, I'm kinda lonely and I only know a few spells, but I think that's good
 enough for now.
 
 Do you know any spells, prospective witch?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #102 fediverse/1819 ---
══════════════════════════════════════════════════════─────────────────────────────
 some of my favorite places in the world are little shops nestled in the wood.
 Some that I've never seen more than once, and the ones I tended to visit a lot
 were the ones at like, Disney World, which is quite a magical place.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

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

--- #104 fediverse/5168 ---
════════════════════════════════════════════════════════════════════───────────────
 this is one of the first scripts I wrote
 
 I can't believe I put the --no-ls AFTER the argument, ha, what a noob.
 
 ah well if it works it works and I can't refactor now because I built it into
 random scripts and I'd be fixing errors all the time.
script 1:  #!/bin/bash  # sort by filetype would be nice  alias cd="cd-improved"  function cd-improved(){      if [ "${1}" = "..." ] ; then         builtin cd .. && builtin cd ..     elif [ "${1}" = "...." ] ; then         builtin cd .. && builtin cd .. && builtin cd ..     elif [ "${1}" = "....." ] ; then         builtin cd .. && builtin cd .. && builtin cd .. && builtin cd ..          elif [ -d "./${1}" ] ; then         local target_dir="./${1}"      elif [ "${1}" = "cdir" ] ; then         local target_dir="$(tail -n 1 '/home/ritz/scripts/.cdir-target')"         echo ${target_dir}       else         local target_dir="${1}"     fi      if [ ! "${2}" = '--no-ls' ] ; then         builtin cd "${target_dir}" && ls -v --color=auto     else         builtin cd "${target_dir}"     fi          # if the qcd function is defined     if declare qcd > /dev/null; then         quick_cd -d DEFAULT         quick_cd -a DEFAULT     fi }    script 2:  #!/bin/bash  function cdir(){        if [ "$#" -eq 0 ]; then       pwd | cat >> ~/scripts/.cdir-target    elif [ "${1}" == "-l" ]; then       cat ~/scripts/.cdir-target    fi      }
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #105 fediverse/78 ---
════════════════════════════════════════──────────────────────────────────────────┐
 Tried to post the 223mb file on my Neocities page but apparently the file is     │
 too large for them to handle. I pay them every month to host my website... I     │
 guess I could host it myself but I'm just one regular and average person. What   │
 could I hope to do in this strange technological world that wasn't explicitely   │
 delineated by massive corporations who have only to gain by subverting me?       │
 Alas, what a shame, that our lives should be so lame, I'm glad I live in the     │
 21st century. As a trans girl I feel really safe and not at all subjected to a   │
 massive magnifying glass that is the court of public opinion. I'd like to just   │
 be myself, as strange as that may be. And somehow this is related to having      │
 difficulties doing strange things with technology? Oh, a picture that's 25k      │
 pixels long and a couple thousand wide. That's very strange. I can't imagine     │
 any scenarios where this might be useful.                                        │
 I don't actually pay Neocities to host my website. It's a donation I guess. It   │
 should be mandatory imho, it's not that much. sleep                              │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════───────────────────────────────┴──────────┘

--- #106 fediverse/2887 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1379 
 
 mine is only 22" I think and it's about the same distance so now that I think
 of it my poll might be flawed! I forgot to account for screen size!
 
 You're right a proper scale is better quality-wise, but it doesn't always
 scale everything y'know? plus changing the resolution is more low-tech which
 is my vibe hehe
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #107 fediverse/2466 ---
═══════════════════════════════════════════════════════────────────────────────────
 do as I say, and as I do.
 
 or don't, do as you want to.
 
 I hope you do want to do what I say to do.
 
 I wouldn't say it if I didn't think it was right.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #108 fediverse/4783 ---
═════════════════════════════════════════════════════════════════──────────────────
 I think it'd be cool if strategy games had slightly randomized rules each time
 you played them
 
 everything from +/- 5% hp to this particular unit to every airplane factory
 has 10% production speed but builds 10 units at once
 
 and at the start of the game each player is given 1 minute to go over the
 "patch notes" and build out a strategy
 
 both of which they can reference throughout the game. Why don't games come
 with a built-in scratch-notepad that syncs to a file on your directory of
 choice? Maybe a small little paint program dropping pngs?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #109 fediverse/1465 ---
═════════════════════════════════════════════════──────────────────────────────────
 corporations are a particular method of organizing people.
 
 I'm pro organization, not necessarily pro corporation (they'd have to be real
 darn ethical to get a pass from me)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #110 fediverse/192 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌─────────────────────────────────────┐
 │ CW: nightmare-app-for-neurotypicals │
 └─────────────────────────────────────┘


 okay how about this:
 
 Zoom except it uses image recognition from your laptop's camera to tell which
 face you're looking at, and it hides all the others - either by dimming them,
 reducing opacity, or even just blocking out their face so you can still see
 any body motions but your eyes aren't drawn to them.
 
 If someone looks at you then it lights up their face or notifies you in some
 way. I think this would enhance the "togetherness" feel of a Zoom call to be
 more like a conversation where you can explicitly tell when someone's looking
 at you.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #111 fediverse/2530 ---
══════════════════════════════════════════════════════────────────────────────────┐
 I want to go out on the town with my cute friends and wink at boys at the        │
 other end of the bar                                                             │
 I want to climb mountains and see how far I can see, while walking past trees    │
 that are new to me                                                               │
 I want to spend hours thinking about a map while my friends plot behind my       │
 back, searching for an advantage we can use to succeed in a game of traps        │
 I want to visit five different restaurants in a day, and try a bit of each       │
 that the chef wants to display                                                   │
 I want to stand in a choir and feel my soul aspire, to bend in the wind of       │
 rhythm like the melody of grasses at play                                        │
 I want to see people on the train that I know from somewhere, and to step out    │
 into the rain to meet new friends of mine                                        │
 I want to pet a cat I've never met.                                              │
 I want to build computers that are larger than a room but small enough to        │
 carry, with thoughts on their mind that are far to great for mine                │
 I want all these these things and more, but I'm far too busy these days.         │
 Perhaps I've had enough of these things and more, or perhaps there's more in     │
 store.                                                                           │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #112 fediverse/2716 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: uspol            │
 └──────────────────────┘


 Donald Trump is a political leader.
 
 Their next leader will be a military one.
 
 Don't let them transition too quickly. Gatekeep.
 
 If Hitler had successfully been assassinated, his generals would have done a
 much better more efficient job of death-culting Europe.
 
 Trump, however, is a businessman, while Hitler was an artist.
 
 A businessman knows when to delegate, an artist wants things "just so"
 
 keep in mind which foes you choose to face, for there are always more of them
 waiting in the wings. At least until you're face-to-face. Then there is just
 you, standing over their fallen.
 
 Me? I'm lucky to have been raised by both an artist and a businessman. So I
 got the best of both worlds.
 
 ( also a programmer, a historian, a caretaker, a shepherd, a girl-scout camp
 counselor, a political analyst, a gardener, a house-builder, a teacher, a
 mathematician, a librarian, a diplomat, a long-haul driver, a chef, and many
 more roles besides. And that's just my two parents who loved me dearly! How
 lucky am I. )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #113 fediverse/3039 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 I'd LOVE a game which taught toki pona!!
 
 You've brought some of this up before. I'm uninterested in co-opting some
 existing thing in a way I then can't support myself off of.
 
 Well my points are these:
 
 MMOs are difficult because of the added complexity in their networking
 
 an open source networking solution exists
 
 however no open source client solution exists
 
 but one could be written, which is about as hard as making a game using Bevy
 or Raylib or Love2D, and if one were written, then games could easily be made
 on-top of them which you would then support yourself off of. I mean... I'd
 want to support myself too haha, and I can think of like 100 different games
 that could be made in an engine like that.
 
 the idea is that by opening up more design space you can apply your ideas as
 an early pioneer in a particular design direction that hasn't been able to be
 explored because the up-front investments in making an MMO are huge.
 
 Meanwhile, with this system you could script them in Lua very easily.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

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

--- #115 fediverse/990 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌───────────────────────┐
 │ CW: 2/20 buncha-stuff │
 └───────────────────────┘


 part 2/20
7. gray text on a gray background, as if to suggest the normalcy of concrete even though it's made of crushed tiny shells from a billion zillion years ago ready and waiting here for this moment, when they can be next to you in this life you've taken to, how starlight must seem to a computer!  anyway, the gray text on the gray background reads: "phew, that was weird. ... anyway ..." with the dots and the anyway on a slant from one another, as if they were falling off of the page. 6. picture of the sun cast upon a sunset background, with a large tower of shadow flanked by images of birds and contrails of airplanes. there is an indicator on the blue box meaning someone who is looking at it. don't look at the sun!  silly to assume that our perspective of reality is viewed from the same direction as a planetary body. anyway the face of the planet in question is [redacted] (not really but like... I'm redacting it for artistic purposes because I'm trying to convey a truth with that redaction that is important for the viewer and listener to understand. My ears when I type so fast, owwww)  oh the birds are so pretty, like little things that hold their own against gravity. I'd love to watch them flutter, if only I could see every inch of the planet.  I wonder if you could design a building to explode such that only a single interior building was damaged, and everyone else in the building would only hear a muffled "boom" but more like "boof" but not quite so fluttery, and more "bang" but not "ban ggg" but more like "bnf" pronounced "buh nuh fff" except a little bit more like "bmft" but without each syllable being pronounced at once, more like all four together at once.  especially if you had several rooms between them. I mean, if you know when to open and close the doors so they think their region is inhabited, perfect. but if they don't know you they just pretend the building is empty... even though it's hard to find parking???  anyway theres more but no words 5. bright shocking pink and orange backgrounds. white text, the color of snow and the center of the sun (comprised of all the photons) reads "dot dot dot what" as in like "...what"  then, orange text, same color as the background, contrasted against the color of the backdrop (which was purpleish pink, the color of substances unknown to humanity before like, the invention of Paint)  the text reads "right. basically, fb marketplace except... F O S S" meaning F free O open S source S software. However, upon clarifying in white text on an orange background, like the color of the center of the sun (because the photons received by the outer edges of your eyes is the color of the photons that curved through your lens and activated your sensory receptors in the backside of your brain)  anyway, don't look at the sun kids.  the text written in that color reads: free [hastily or poorly drawn ampersand, meaning "&"], open source (with the first character S being twice as large as the others) soures pronounced like sow err sss then the last word adaman pronounced like "adamant" without the T, end text, a word meaning incredibly strong and metallic. stronger than mithril, depending on the game. Like Runescape, one of the classic MMORPGs, a genre that emerged from MUDs with graphical enhancements. I mean if you think about it runescape is just a text based adventure where you can move as many rooms as you want in one journey and where each room has "things" you can interact with from there. 8. strange colors now, of salmon and the smell of mossy rain mixed with something a little gross but... natural? I guess?  in the middle is white, like marble, which makes an interesting clickety clack noise when you use it on it'self. like a marble chair on a marble floor staring out onto a marble palace or auditorium or park (tasteful trees included) (like plums and apricots and cherries and more)  the text reads in black upon this surface, the color of stable ideas. written in the prose of legalese, words seem to be a little more rely able. except, this text is not legalese, but rather evoking the same idea through it's presentation. it reads "the idea is that if people have a way to engage with *everyone* (in italics for emphasis), they'll be more invested in the wellbeing of their neighbors. (craigslist, but good) with the last half of the "good" cut off, as if to suggest that it might be rude to present the whole thing, meaning it'd be better not to take it out of context. as in like, making decisions on misleading instructions designed for one thing but executed for another. oh well, I hope this doesn't take me to hell, I just want to fight for our purpose. I'm not a warrior, but I'll do in a pinch.  as in "sorry craigslist you're not bad, but like just unfit for this purpose, we need something fully open source that we can read and understand and which is continually abstracted until we *can* understand it without knowing how code works sorta like design documents but
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #116 fediverse/4119 ---
════════════════════════════════════════════════════════════───────────────────────
 what if you wanted to build a project from source
 
 but god saidCMake Error at CMakeLists.txt: 
 
 By not providing a "foo.cmake" in CMAKE_MODULE_PATH this project has asked
 CMake to find a package configuration file provided by "bar", but CMake did
 not find one.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #117 fediverse/5732 ---
═════════════════════════════════════════════════════════════════════════──────────
 I am often disorganized.
 
 my effort is spent elsewhere.
 
 but I am good at organizing!
 
 when I find the time or place.
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #118 fediverse/3036 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 just read through the release notes, yeah those are pretty big upgrades.
 Especially 13, that split-screen-camera functionality gives me ideas.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #119 fediverse/1370 ---
═════════════════════════════════════════════════──────────────────────────────────
 youtube blocked one of my videos for playing a song.
 
 where should I put my videos instead?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #120 messages/232 ---
════════════════════════════════════════════════───────────────────────────────────
 Would work best if it was "town square style" instead of "federated style"
 because federations are based on trust while town squares are explicitely
 based on geographic proximity. Which should be something you can scale easily
 (little slider on the side, oriented vertically up and down, that determined
 how close the comments you see should be)
 
 Federations exist in mastodon. But we still need a town square. We need the
 ability to visit other town squares, through the ability to project our voice
 as infinitely far as they'd like to listen. But we also deserve the capability
 to interact with those close to us on a topic-by-topic basis, aka each and
 every individual web page that the Internet sees fit to create.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #121 fediverse/2498 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────┐
 │ CW: physical-health  │
 └──────────────────────┘


 slept for like an hour last night because a scrape on my elbow is getting
 infected and every 15 seconds I have lancing pain that's enough to jolt me
 awake.
 
 As the sun was just brightening the sky, I fell asleep a bit, but then an hour
 or so later my shithead of a cat woke me up, as she does whenever the light
 hits the leaves. My eyes hurt. Gonna go to the doctor and see if they can give
 me some better first aid.
 
 loud, piercing meows every morning until I'm up. Then she stops for the rest
 of the morning, even if I go back to bed. whyyyyyyyy
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #122 fediverse/1413 ---
═════════════════════════════════════════════════──────────────────────────────────
 ┌──────────────────────┐
 │ CW: politics         │
 └──────────────────────┘


 all games that you can lose are capitalist games. All of their mechanics are
 abstractions upon the competition between the player and the computer (and
 possibly other players), which creates a disparity of outcomes - some must
 win, others must lose.
 
 I think that's okay, though. There's something inherently satisfying about
 power. I believe such interactions should exist in our diversions, not our
 institutions.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

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

--- #124 fediverse/4999 ---
════════════════════════════════════════════════════════════════════───────────────
 "you are fantasizing"
 
 scroll past.
 
 "you are building empty hope"
 
 scroll past.
 
 "you are kayfabe"
 
 scroll past. Also, no I'm not, but there's plenty of that going around.
 
 "you are moving too quickly"
 
 scroll past.
 
 "you are legitimately insane"
 
 scroll past.
 
 "everyone wants you"
 
 scroll - wait hang on, that one's true. I know it's true because I like to
 hear it, teehee.
 
 "wait until the weekend"
 
 yes, and
 
 "wait until may, first"
 
 yes, and
 
 "wait until they win"
 
 no, but these things build with momentum. The energy is high. It will only get
 higher if you make it so.
 
 "the things you're saying will only be read by the people who already believe
 what you're saying. This is a waste of time. You're burning your energy typing
 on your keyboard when you could be walking the streets which is... somehow
 more productive than writing something to share later."
 
 ... scroll past...
 
 "your have no reach here"
 
 oh hey you're right maybe I should post to bluesky as well
 
 "everyone wants anarchy. We got your back."
 
 ty 
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

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

--- #126 fediverse/285 ---
═════════════════════════════════════════════──────────────────────────────────────
 @user-211 thanks! It's one of my favorites. That and Golden Sun are where I
 procured my name ^_^
 
 EDIT: purloined is more appropriate, I think
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #127 fediverse/5279 ---
═════════════════════════════════════════════════════════════════════─────────────┐
 @user-1793 @user-1794                                                            │
 ... images? videos? html5 games or applet utilities? who needs react ive         │
 design if you can just program the entire UI in HTML5 / web assembly? it'll      │
 start feeling a lot more like writing computer programs, and a lot less like     │
 this strange UI focused dialect that some nerds dreamed up in the past. store    │
 data locally, coward! use plusses and minuses, draw semicolons every time you    │
 take a breathe. it's okay to draw circles around code connecting the brackets,   │
 that just makes sense to me. why are you so hung up on non-rotate-able source    │
 code [manifests, but pronounced like files]                                      │
 why isn't paint a fantastic code editor? does spotify need it's own music        │
 visualizer or can you just measure the sound coming off of the speakers before   │
 it leaves the computer?                                                          │
 keep it simple, stupid. do one thing and do it right. don't repeat yourself.     │
 trust, but verify. I love you madame.                                            │
 sharing your screen should be less than a click away. Our windows are so high    │
 resolution now, we can just... put more buttons on                               │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════──┴──────────┘

--- #128 fediverse/975 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 normalize compiling the game from unencrypted text the first time you run it     │
 using the included compiler and the provided source-code                         │
 "please wait while we are building the game. Estimated time remaining: who can   │
 say, but would you like to play tetris while you wait? I have every ROM          │
 included, and it seems your savegames are stored in the standards suggested      │
 location. would you like to use a different folder? If you'd rather be playing   │
 tetris by now I'm assuming you're not reading this and are instead focusing on   │
 clearing lines - don't worry, I'm just included output as the compilation        │
 process is ongoing. You can tell approximately how close I am to the end of      │
 the process because inbetween every step I print out another character. Errrr,   │
 I add to a time value, that is roughly proportionate to the expected duration    │
 of the installation process, as calculated form your industry determined         │
 specs. If you had a better system then odds are you already knew to change the   │
 included config file to reflect the greater s                                    │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

--- #129 messages/470 ---
═══════════════════════════════════════════════════════────────────────────────────
 [Image: 20240706_131710.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #130 fediverse/3046 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-569
 
 it's impossible for a genre to die. they just go stagnant, as other styles of
 art rise around them, waiting for the day when the other styles give insight
 into the stagnant style's design.
 
 they say that there are no unique ideas, and that you should combine 2-3 ideas
 from different genres to create a decent gameplay loop. I personally disagree,
 but when seeking to revive a "dead" genre you just need to pull in mechanics
 from other games. Games which didn't exist when the genre "died".
 
 For example, deckbuilders did not exist by the time RTS games "died". And yet
 new strategy games are being made all the time, some incorporating
 deckbuilding elements.
 
 Really, a genre only "dies" when the market is saturated by a bunch of
 corporations piling in on a specific formula that "works" (like how every RTS
 made between 2000 and 2010 was either a C&C clone or a Warcraft III clone)
 - this saturation causes people to stop buying strategy games.
But there's so much room for innovation. They strangle the market and say it's "dead" like... duh
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #131 fediverse/6098 ---
═════════════════════════════════════════════════════════════════════════════──────
 RTS games where each player can see all the other player's mouse pointers, my
 beloved
 
 ... girl there's only one game that does that and it's a mod
 
 don't remind me T.T
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #132 fediverse/3893 ---
═══════════════════════════════════════════════════════════────────────────────────
 ┌──────────────────────┐
 │ CW: ai-mentioned     │
 └──────────────────────┘


 if an AI image generator shows your signature on the completed works, then
 that means your style is unique enough that whatever the person trying to
 generate an image was trying to conjure is directly correlated to your name.
 
 It means your art is influential in whatever media space that is! Frankly if
 they were trained to emphasize the artist's watermark, maybe give more than a
 few, they could give credit where credit is due. Ah alas, it probably doesn't
 work like that, because the software we've programmed to do whatever we want
 wasn't programmed to do that.
 
 like, if it can take all that data and chart a course from whatever the prompt
 is to... whatever the result is, then surely it should be able to scan back
 and see where the roots of the art came from? Then all you have to do is
 generate a watermark for the top 5 most influential and 5 others that had very
 specific contributions. Boom, solved your ethic problem
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #133 fediverse/679 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-488 @user-489 
 
 The ones that charged in tend to have a higher mortality rate. Over time, this
 leads to a decline in bravery and an increase in PTSD. At least, that's my
 theory.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #134 fediverse/1943 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 the point of roads is not to transport goods, it's to build rail lines upon      │
 once we've saved up enough materials to build it all in one go                   │
 boom, no more car pollution                                                      │
 free public transit that goes to each home                                       │
 and is inalienable and considered a right, just as we have a right to walk on    │
 the sidewalk, so too shall we be able to get where we're going unimpeded.        │
 leave cars on the racetracks and mechanic museums. we have a new approach        │
 that's oh so much better.                                                        │
 imagine if every road in the country was a train                                 │
 and like, a continuously moving train that occupied all parts of the track.      │
 So, stretching like a massive game of Nokia snake, this giant conductorless      │
 system would keep everything in motion.                                          │
 and maybe it could suggest points to redesign, according to the metrics on       │
 throughput and efficiency. Like "oh we need more solar panels to supply this     │
 region" or "hey this factory could be closer to the boats" that kind of deal.    │
 Like the Kinsey Winsey in The Death Gate Cycle by Margaret Weiss and Tracy       │
 Hickmann                                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #135 messages/1050 ---
══════════════════════════════════════════════════════════════════════════════─────
 AI image generator which creates a picture based on a script which has
 annotations for scene and pose, to be used for reference or to show a
 performer how to perform. to fill out it's action studies. [stoned]
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #136 fediverse/1560 ---
══════════════════════════════════════════════════─────────────────────────────────
 @user-1027 
 
 Beautiful! I miss that kind of country. The prairie is my home, but the forest
 I find myself in is nice for different reasons.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #137 notes/jane-the-keyboarder ---
══════════════════════════════════════════════════════════════════════════─────────
 "okay let's see, we need a new
    CREATURE
  and let's name it
    TERRY
  and let's give it a title:
  .TITLE = "The Acrobat"
 "
 
 "cool, let me just go show my friends."
 
 "hello friends, I have created a creature. It's name is Terrance."
 
 wow yeah cool so anyway
 
 "hm. let's see if we make him slightly more interesting..."
 
 "okay now I've defined him as capable of monotony, maybe they'll see his strife
  and relate"
 
 TERRY.STRIVE += TERRY.REPETITION * global.misery / slaughter_count_victims
 TERRY.STRIFE += global.war_percentage +
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #138 fediverse/4462 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-246 
 
 also it consumes soooo much vertical space and since I use mastodon on a
 computer the vertical space is at a premium. Meanwhile the right 1/3rd of the
 screen is blank...
 
 not to be discouraging or anything, volunteer efforts are appreciated...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #139 fediverse/3826 ---
══════════════════════════════════════════════════════════─────────────────────────
 @user-1600 
 
 you guessed correctly, good job finding me hehe
 
 and yes, I think someone else was using my account. Gonna try and figure out
 what he said.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #140 fediverse/2640 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌──────────────────────────┐
 │ CW: capitalism-mentioned │
 └──────────────────────────┘


 capitalism is like if your thread allocator gave 90% of the work to 10% of the
 threads in the pool and your tech lead claimed it was more efficient because
 the remaining 90% of threads would have the results of the program "trickle
 down" to them somehow
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #141 fediverse/2625 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────┐
 │ CW: politics-mentioned │
 └────────────────────────┘


 one of the downsides of "first-past-the-post" style voting is that the winner
 gets all of the power, no matter if 100% of the population voted for him or
 51%.
 
 if, however, the top 2 candidates were chosen, then it's naturally likely that
 the older, more experienced of a particular position would spend their effort
 mentoring the young, rising star.
 
 in doing so, they would naturally transfer knowledge from one generation to
 the next like parents to children.
 
 however, this only happens when the primary candidate and the secondary both
 believe the same things.
 
 meaning those who have collectively similar beliefs concentrated in an area
 will have the advantage of passed-along experience, while those from more
 divided areas (thus implying that the primary and secondary candidate don't
 agree) will often have better actionable skills.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

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


 @user-1573 
 
 I think I fiddled a little bit with the colors because the default background
 was the same as some other color and it was making it hard to do things, and I
 also have a plugin that lets me talk to a local LLM which I sometimes ask
 syntax questions to if I'm offline and don't feel like searching through
 documentation. I think that's it tho
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────────────────────┘

--- #143 messages/196 ---
════════════════════════════════════════════════───────────────────────────────────
 "okay this user requires some data that is flagged as 'potentially harmful to
 the user' and their user-data suggests that they have [redacted characteristic
 or demographic] in their user-data which has been flagged by corporate as
 something to [benefit/harm] so let's give them the [right/wrong] information
 in such a way that could [harm or benefit] them tangibly."
 
 - internal thought process of the LLM
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #144 fediverse/5476 ---
═══════════════════════════════════════════════════════════════════════────────────
 I'm making progress, I can feel it in my bones.
 
 maybe we're just ALL making progress, which is why it feels like I'm moving
 forward.
 
 in any case, I look forward to the future we have a say in, when all things
 are more impactful due to our hearts.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #145 fediverse/4142 ---
════════════════════════════════════════════════════════════───────────────────────
 it me fr tho
picture of a person wearing a tie saying "Today I'm going to try to be kind!!" with a wide-open expression on their face and mouth  picture of a closed door  picture of an open door  man steps through, tears run down his face, his head is bowed and his stature seems shaken  man crying and sobbing while saying "I was the only one trying to be kind!!"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #146 fediverse/2120 ---
══════════════════════════════════════════════════════─────────────────────────────
 sometimes I think performing my art was just an excuse to use Linux. At least,
 some of my art.
 
 But hey, I'm not complaining, it's awesome.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #147 fediverse/4430 ---
═════════════════════════════════════════════════════════════──────────────────────
 @user-1674 @user-1675 
 
 do both
 
 screenshots can't be deleted
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #148 messages/5 ---
───────────────────────────────────────────────────────────────────────────────────
  
┌─────────┐                                                           ┌───────────┐
│ similarchronologicaldifferent─────────┴┴───────────────────────────────────────────────────────────────────────────┘

--- #149 messages/794 ---
════════════════════════════════════════════════════════════════════───────────────
 [Image: 20250411_155926.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #150 messages/877 ---
════════════════════════════════════════════════════════════════════───────────────
 [Image: 20250414_155715.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #151 fediverse/894 ---
═══════════════════════════════════════════════────────────────────────────────────
 a code editor that only highlights the lines that have been specifically
 flagged to have a certain function. Like, rendering, or sound, or GUI, or data
 storage, or logic, or control flow.
 
 then, when the user is browsing, they can say "only show me these types of
 functions" with a very advanced filter mechanism. The editor would highlight
 the ones that were relevant and related, as according to user-defined flags
 that were set when writing it originally. In this way, by using a bit more
 syntax, even if it's literally just blocks of [category] labels (like how """
 or ``` often starts or ends a comment block)
 
 highlighting with colors is great, but what if we de-emphasized the stuff that
 didn't matter? by increasing the opacity more closely aligning the font color
 to the background color, we could make a bit of text seem to "fade" from
 perspective, while still readable the user's eyes would not be drawn to it.
 Then, according to the labels marked as filtered, certain text would be bold,
 highlighted, o
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #152 fediverse/633 ---
══════════════════════════════════════════════─────────────────────────────────────
 @user-192 
 
 the neat thing about BASH is that it's the glue that holds all your other code
 together. Write libraries in C and call them with BASH - accomplish broader
 tasks that are easier to co-create. That's why I like it - it's not the most
 important, but it's quite beneficial I think _^
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #153 fediverse/2598 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1071 
 
 It's cool. I'm stronger than him.
 
 Thanks. I'm about to go chat with a friend, maybe ttyl if I'm still broken up
 about it. ❤️
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #154 fediverse/944 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-646 
 
 oh, I see. guess I had the same problem hehe - let's see:
 
 basically I'm saying that the incentives for manufacturers are unaligned to
 the desires of the consumers (or rather, the best interests of the consumers)
 - reduced consumption of plastic == less plastic waste poisoning our
 environement, which is what you mentioned in the original post.
 
 then I said "well we still need to make SOME of the cheap plastic, the kinda
 that isn't recyclable, the kind that is technically cheaper because economics
 of demand" and then I was thinking of ways around that particular problem.
 Then I got onto another thing about the economy, and the word count cut my
 words short because I started saying something I shouldn't.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #155 fediverse/4150 ---
════════════════════════════════════════════════════════════───────────────────────
 ┌─────────────────────────────────────────┐
 │ CW: AI-LLM-mentioned-injustice-exampled │
 └─────────────────────────────────────────┘


 🖼
Reminder that Aaron Schwartz was facing 35 years in prison and financial devastation for trying to programmatically download and open the contents of JSTOR, which led him to take his own life.  But OpenAI is going to scrape all of academia and make billions by plagiarizing it.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #156 fediverse/3284 ---
════════════════════════════════════════════════════════───────────────────────────
 oh great where did my "screen capture" option go in OBS? Why would that
 suddenly disappear?
a screenshot of obs, well it's a picture with a camera from a phone, because obs won't let you type keyboard commands (even if they're part of a shortcut) when a right-click menu is open. anyway it shows a list of potential input sources, like microphones, cameras, that sort of thing. Usually there's a way to use the screen output as the recording input using an option called "Screen capture", but right now it's not there. strange.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #157 messages/620 ---
═════════════════════════════════════════════════════════════──────────────────────
 I need an editor. Someone who can re-arrange what I say and present it to an
 audience. The pen is mightier than the sword, and while my pen is mighty, you
 still need swords.
 
 I believe in democracy. I believe in the will of the people and the respect of
 the land. I believe in life, light, and liberty for all.
 
 Our nation has just elected, fairly, a dictator who will sell our country to
 foreign authoritarians just because he is small. I am stronger by far, but I
 lack his experience, and so I must rely on trusted advisors who grow with me.
 
 I am perhaps not the best choice, but I do believe I am one of the bravest.
 Judge me as you will.
 
 Trump will destroy the American experiment and invite fascism into our home.
 We have people to nurture and protect, and authoritarianism prevents us from
 doing so.
 
 He would deprive us of our light, and frankly he already has.
 
 He would deprive us of our liberty, and his plans to do so are clear and
 apparent.
 
 He would deprive us of our lives, and history has shown that this is a
 precedent.
 
 I do not consent to a Trump presidency. I do not consent to his corruption any
 longer. No more will I or my people be governed by such evil. We will fight
 back, of this I am certain.
 
 My demands are threefold.
 
 First, I demand that Trump be replaced by a moderate republican. Hold a
 primary and let Democrats vote. If none of your candidates work for us, pick a
 new roster and try again.
 
 The second is that Trump must be executed for treasonous high crimes. Nothing
 less than execution will suffice.
 
 Next, let the supreme court be purged and replaced. Half with democrats, half
 republicans, and one moderate who is widely regarded with respect.
 
 Failing these demands, I am willing to wage a terrible civil war for the soul
 of our country. I know this is treason, but I do it anyway even though I am a
 patriot. I do it because our land has been stolen by a man and his followers
 who seek to plunge my people into despair.
 
 He is but one man. So am I.
 
 He has an army of followers. I do not.
 
 Each of the wars we fight will be smaller than the last, as each of our cities
 struggles toward our last gasp.
 
 But together we are strong, and by connecting them we might deliver ourselves
 from harm.
 
 Against the far right, we must secure a cleansing blow. There is no greater
 fight. The world is watching.
 
 To that end, I suggest a great and perilous fight. I see no other option in
 this remarkable century. Prepare as you might, I suggest pushups and resource
 acquisition.
 
 Deliver your resources somewhere safe if you're in a red area, and meet your
 neighbors if you're not.
 
 A blue city in a red state must survive a siege. Prepare yourself for this.
 Assume that supplies will need to be delivered by convoy if by land, and drone
 airdrop from the skies. Develop ways to protect these supply methods.
 
 Public spaces are our homes now, our houses are just where we sleep.
 
 I swear this to you: on my life I will be honorable and fair. I will seek true
 justice when I can, where everyone gets what they want, and failing that I
 will be plainly just. I will respect all peoples, and do my best to fight for
 a brighter tomorrow.
 
 I dare for the bright age. I see nothing else that I'd like to spend my life
 doing than daring.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #158 fediverse/3135 ---
════════════════════════════════════════════════════════───────────────────────────
 ┌───────────────────────────────┐
 │ CW: re: us-politics-mentioned │
 └───────────────────────────────┘


 "Stop mistaking the responsibility Democrats have to Black citizens for the
 electoral impact of Black voters. They’re not the same."
 
 "The idea that independents/swing voters are centrists, in the usual sense, is
 one of the most enduring myths of American politics. Most swing voters appear
 to hold a hodgepodge of political views that are hard to reconcile given our
 usual definitions; this can be frustrating, but it’s important to remember."
 
 https://freddiedeboer.substack.com/p/democrats-think-their-candidate-is
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #159 fediverse/1308 ---
═════════════════════════════════════════════════──────────────────────────────────
 found some flowers by the garbage today. They brightened my day and floraled
 my window. I left some for the others who might want to take them to their
 loved ones, of which I have none who might see them. But I did take a few, to
 feel loved by myself. Thank you, kind stranger, who did feel fit to grace me
 with your bounty. Thank you kind stranger, for this ephemeral beauty. They
 smell nice.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #160 messages/231 ---
════════════════════════════════════════════════───────────────────────────────────
 A Firefox add-on / plugin that lets you open up a comment section on
 *anything* on the Internet. Your comments would be saved and you could sort
 them by "new" or "best (most up votes and fewest downvotes)" or "hot (most
 recent upvotes)" or "controversial (biggest differential)"
 
 The idea would be to create a shared collective experience of the Internet
 that was exchanged using an open standard or protocol that could not be
 ignored - it was synced by everyone who used the add-on for every website you
 visit, torrent style.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #161 fediverse/6338 ---
══════════════════════════════════════════════════════════════════════════════─────
 accessibility software which puts subtitles on everyone's zoom faces who are
 talking to each other one-on-one with selective muting and an adaptive dimming
 feature where if you click or tap on someone it makes them brighter and makes
 your audio louder for them (if they unmute you) and whenever you click
 somewhere else it slightly dims all the others. this brightness is shared by
 the way so if a lot of people want to talk to you then a lot of people can
 hear. oh also subtitles with voice-to-text functionality. and a built-in paint
 program for sharing notes or designs. the opinionated version has no chat
 program either, you have to type it into the paint program part which they get
 really defensive of if you suggest making it more forum-post style with an
 included keyboard typing delivery mailbox as well.
                                                           ────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════────┘

--- #162 messages/1260 ---
══════════════════════════════════════════════════════════════════════════════════─
 this is the iberian penninsula in 1140ad.
 
 each of those cities had it's own culture.
 
 each of them is gone now.
 
 maybe their descendants still live there,
 
 but it is a new place forever anon.
 
 "in this town, we do things a bit better."
 
 "in this town, we a bit more like this."
 
 "in this part of town, you can get a good taco at every stand." wait hang on
 that one's american
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #163 fediverse/111 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-95 that's why I like programming - it's my favorite form of spelling.
 i'm not very good at remembering all the names and the numbers, but I like to
 think I can make things do a function.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #164 fediverse/5575 ---
════════════════════════════════════════════════════════════════════════───────────
 ┌──────────────────────────────────────────┐
 │ CW: alcohol-mentioned-cannabis-mentioned │
 └──────────────────────────────────────────┘


 "oh hi ms senpai-chan, I brought some beer and a bit of weed because I didn't
 know what getting bashed together meant? I thought it was like, smashing
 together "smashed" and "baked" or something. anyway wow that's a lot of
 monitors, I think this is my first time in your room? do you sleep there?
 where do you fit your clothes? oh wow cool action figure collection, are you
 hacking right now? is that hacking?
 
 ...
 
 what's a linux? can I install it on my phone?
 
 [starts crying]
 
 oh no ms senpai-chan did I say something wrong"
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #165 notes/coh-waves-of-playerbases ---
═══════════════════════════════════════════════════════════────────────────────────
 imagine if there was a stacking inf bonus to players who played on red /
 blueside
 which increased or decreased depending on either A. the number of players
 online
 at the time, B. the proportion of players playing on that team versus the
 other,
 or C. the time of day. Essentially helping to cure the faction imbalance by
 offering rewards to one side or the other which would encourage a certain group
 in the population of the game to change sides or not.
 
 perhaps frequent changing could grant a title called "mercenary" or something
 
 like "log in for each consecutive day for 10 days straight and each day switch
 faction alignment at least once"
 
 ... anyway you could cure the faction imbalance between redside / blueside by
 offering an INF reward for playing on each side one by one alternating like an
 iterator first red then blue or first blue then red either way it doesn't
 matter
 because it'll switch after a while and encourage everyone to switch sides. And
 the way the character responds to that stimulus tells you a bit about their
 character's personality.
 
 also...
 
 it should not affect AE or Pocket D farms.
 
 Nor missions, TFs, or anything else.
 
 they should SOLELY impact open world patrolling / hunting.
 
 I believe this would not only incentivize people to spend time in the open
 world
 (which is a mostly unused piece of game assets) but it would also increase the
 visibility of the newly bolstered faction numbers.
 
 Think about it - if everyone who switched sides is out in the open world, then
 they could see each other. They could fight the same mobs, and team up
 together.
 In doing so, they could form greater and greater supergroups - if only through
 their interactions with one another as they level up.
 
 If they're lucky, the guild they're recruited into has similar interests in
 mind
 like doing raiding or PvP or economics or alts or whatever. And they each have
 their own different styles of operating, it's soooo cute. Like alt guilds will
 pop up and then migrate to a new one as people make new alts and grow tired of
 them at higher levels.
 
 It's great.
 
 I love MMOs!
 
 I wish people put half as much effort into making an open source WoW client
 that
 they do programming game engines like Godot or Raylib or Bevy. If such a thing
 was created, we could have a new rennaisance in indie MMO development. It would
 become fully non-proprietary, the entire game-platform-stack. Meaning anyone
 could create their own MMO off of it, because (crucially) the serverside soft-
 -ware has already been reverse engineered. And open sourced.
 
 Seriously. You wanna make as much bank as Steam? Make an open source client
 that
 lets you design while in it. Then you could charge people for all the games
 that
 they played that were designed and hosted by you the content designing software
 maker.
 
 ... okay it's probably not that simple I'm going to go play Unreal
 Tournament2k4
 `
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #166 fediverse/3309 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-1490 @user-688 
 
 Oh yes and human curated descriptions are always more interesting than just...
 describing the picture. Humans can offer nuance, and explain more intricate or
 contextual things, drawing attention where it's most important and
 highlighting the implications of expression, environment, and motion in a way
 that a computer just... can't.
 
 The only issue would be that in the context of the program I described, there
 will always be questions that a human hasn't written a transcription for. It's
 easy with Star Trek captions, because there's only one camera angle so you
 only have to describe a single viewpoint. But blind people don't always...
 "see" through cameras the ways that sighted people do. It's more of an "aura
 of perception" that they feel around themselves.
 
 Being able to walk around in a space (think like, VR without the headset) and
 question various aspects of a scene would be so cool
 
 Star Trek is perfect for this since there is very little movement, it's mostly
 about thought
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #167 fediverse/2201 ---
══════════════════════════════════════════════════════────────────────────────────┐
 Users won't download a torrent file because they don't want to use a torrent     │
 application.                                                                     │
 It's not ideal, but perhaps instead of giving them a zip file that's hosted on   │
 your machine, you automagically torrent the file yourself and send bits and      │
 pieces of it to them over time - specifically the parts that you'd be sending    │
 if you were sending a zip.                                                       │
 That way, to the user, they can download anything they can click on.             │
 To the administrator (AKA you, in this hypothetical) you'd really just have to   │
 set up some infrastructure that received a GET request for a file and            │
 initiated the torrent on your system before sending the entire thing to the      │
 user. Kinda like how Mega will "cache" the file before sending it in one go at   │
 the end, versus most downloads which "stream" the file to the client             │
 bit-by-bit (in a very un-torrent-y way).                                         │
 This is an example of reducing friction. Removing options from the "advanced     │
 settings" menu is not an example of reducing friction, it's an example of        │
 disempowering the users of software.                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #168 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                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

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

--- #170 fediverse/4015 ---
═══════════════════════════════════════════════════════════───────────────────────┐
 ┌─────────────────────────────┐                                                  │
 │ CW: unhinged-fun-conspiracy │                                                  │
 └─────────────────────────────┘                                                  │
 Global warming is a hoax and the earth has been getting hotter because the       │
 earth is inching ever-so-closer to the sun bit by bit.                           │
 All of the trees throughout all of history have produced enough oxygen to        │
 create a ball of air that slowed down the earth as it span around the sun, and   │
 now because of a cascading ripple effect it's begun to drift into it's stellar   │
 heart                                                                            │
 this is obviously not ideal for humans, but the government has secretly been     │
 building vast bunkers underground that are large enough to house all of          │
 humanity for the next 100,000 years (which is approximately how long it'll       │
 take to be engulfed by the sun)                                                  │
 During that time our job is to find a way off of this barren rock and bring      │
 our treasure troves of biological samples to other places where we can           │
 recreate a new biosphere using alien tech that's been beamed into the minds of   │
 our top scientists while they were on LSD and / or ketamine                      │
 [why don't people make up conspiracy theories like this anymore? They are fun    │
 to me...]                                                                        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════────────────┴──────────┘

--- #171 fediverse/3164 ---
════════════════════════════════════════════════════════───────────────────────────
 it fails after like 15 or 20 scrapes but I think that's just their scraping
 policy. They don't have a robots.txt file that I could find. So... just run
 it, then come back every 15 to 30 minutes and restart it until you're done.
 
 Maybe I could increase the sleep duration? one sec lemme try that
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #172 fediverse/5353 ---
═══════════════════════════════════════════════════════════════════════────────────
 some of my favorite games are behind me and I can't describe how happy I am to
 have known here
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #173 fediverse/252 ---
════════════════════════════════════════════───────────────────────────────────────
 I'm convinced that the best and most simple advances in technology comes from
 accurately graphing your system and saying "well why don't we just..."
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #174 fediverse/3184 ---
════════════════════════════════════════════════════════───────────────────────────
 "reboost with content warning" would be quite nice 🥰
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #175 fediverse/6449 ---
═══════════════════════════════════════════════════════════════════════════════────
 currently have 20-30 tabs open with poems written but not posted.
 
 I have no idea if I'm going to post all of these. I wrote all of them in ~2
 hours, with maybe 3 or four being added as I was working on the production
 elements after the initial bingewrite.
 
 I also added a bit of context, or modified some of them that felt too cursed
 or otherwise unwieldy. Sometimes I got distracted and needed to come back and
 finish, and in those cases I only added a sentence or two because it's like
 "oh, where was I going with that? I remember what was next, but I don't know
 the further..."
 
 ... I think I might go for another. Wish me luck.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #176 messages/671 ---
═════════════════════════════════════════════════════════════──────────────────────
 We were rich, but frugal, because we lived in the country, and that's what
 frugal means.
 
 Too bad my dad couldn't stifle his entrepreneurial spirit. We could have
 stayed there forever on our own little ranch.
 
 Alas, businesses need investment, so he needed to get something going.
 Organizing is basically his *thing*
 
 I doubt I'll ever again see Wyoming. I found some ancient stone ruins once,
 the kind that Western conquerors never despoiled. They were ancient and
 overgrown, but I saw them for what they were. I would give anything to live
 there, or at least be near enough to visit with my crowd at a pleasant cool
 midnight evening, when dusk has winked out its last goodbye and the summer is
 resplendant with fireflies.
 
 Too bad they're an east coast thing.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #177 fediverse/6359 ---
═══════════════════════════════════════════════════════════════════════════════────
 @user-192 
 
 it is rarely more efficient to think through a problem than it is to calculate.
 
 But, speed isn't everything, so think we do some more.
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #178 fediverse/4232 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-192 
 
 with the development of oled screens, bright primary colors on black
 backgrounds becomes more and more important
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #179 fediverse/4711 ---
════════════════════════════════════════════════════════════════───────────────────
 ┌──────────────────────────────────────────────┐
 │ CW: re: politics-mentioned-cursing-mentioned │
 └──────────────────────────────────────────────┘


 🖼
"things are nice" yeah fucking... whatever.  we can't keep shit normal for long. we're down for/from the silence, and time keeps us looking beyond. what happens next? what's "now" in the story? you're far from the last to [devour/use hours]. you think we haven't been fighting this fight since forever?  moloch doesn't win.  who but [yo/you]?  [next page]  I've never had a people. I have always missed them. who cares for the poor?  family cares for child, church for the devoted, the world for, who? fill in the blanks. fuckin' ask chatGPT to make it longer. add text between the words. who are we but the worthy? who else is there? the [words await / world awaits] a dose of luck. my luck makes me. why would I assume that I'd get better at what I'm doing if I stopped doing what I'm doing if I stopped doing what I'm doing if I stopped doing what I'm doing if I stopped doing what I'm stopping what I'm doing because doing what I'm doing stops me doing what I need to be doing.  [next page]  what if we just stopped going to work and didn't leave our houses  what if we just made it happen what if we just made our heaven  a better world is possible. a better world is within reach. for the children of tomorrow, all we need is the meek. where are they? do they sleep or know? If you don't stop traffic, your protest doesn't matter. If you don't ask every window if maybe your ideas could come in. If your parade doesn't knock on every door, asking them to join in. "hey, wanna play? we're playing catch in the road. say, do you know anyone in a different town? wanna knock on the door of all of your kin? it's a better world tomorrow, and everyone can come in."  [next page]  Did you know that nothing's that real if you're not afraid of it? what are they gonna do, shoot you? for what, not moving your shit to the side of the road? you like it where it's at, that's why you put it there, so fuck off if you'd rather it's unprotected. The sun and the rain and the cold and the maned all demand that our stuff is on hallowed ground - the kind which walls all surround. And yet they'd cast us out. How rude. Well, I'm not afraid of you. what are YOU gonna do? what if I didn't pay my rent and never got a job and just helped out wherever I could find a friendly nod.  "oh hey ho've ya been okay what are we working on here?"  don't see nothin? start somethin"  anarchy is fun. bullets less so.  [next page]  most jobs are bullshit. If dollars suddenly didn't exist but people kept doing what they were doing, people would work like twice a week. Me? more or less, who can say, depends on how I did feel that day.  I tend to burn out. what if I didn't go to work for a month? "oh no my stakeholder value" get over yourself. your games do hold value.  act like life is on the line.  (off in the corner)  "... hello?"
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════──────────────────┘

--- #180 messages/986 ---
══════════════════════════════════════════════════════════════════════════─────────
 adult diapers without boosters feel insufficient. Like they're unable to be
 swelled. I trust thickness more than body shape. But, they work, so that's
 good for now. I just prefer boosters.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #181 fediverse/618 ---
══════════════════════════════════════════════─────────────────────────────────────
 Can't stop thinking 
 
 [the rest is left blank, as a testament to the inability of the author to
 express their thoughts in a temporally contextual way. Presumably the previous
 text would be followed by an "about..." with the rest dedicated to a
 particular thought that felt important enough to share with the internet.]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #182 fediverse/2459 ---
═══════════════════════════════════════════════════════────────────────────────────
 this is the simplest implementation of scalable anarchism I could think of.
 tell me how it's flawed so I can improve it before I need it.
algorism is a political and economic philosophy designed to wrest power from those who may be corrupted by it, and restore dignity and agency to all of humanity.  It accomplishes this through several layers of abstraction, of votes, of control, of decisions. What do people need? How could we improve? Is there something more we could do?  The idea is to negate bureaucracy by accomplishing goals in an ad-hoc fashion rather than rely on legalism for institutional execution. Projects, not operations.  Society shall be organized into tiers of rotating peers chosen by vote. Each tier sends their top two most voted for up a level to the next tier of organization. the duty of each tier is to provide for the needs and accomplish the demands of each of their lower tier allies. In addition they should provide what they can to their representatives, who offer them on the tier above.  If a need or demand cannot be met by the team of reps, the request is passed upward. This process can be accomplished with paper and pencil, but it's much better to automate and be public.  If desired, there is a queue system to help with the allocation of resources. This system rewards patience and conservation while still allowing for rapid acquisition. Pick two: good, cheap, fast.  It includes also a recycling system - the more you give back in clean and working order, the greater the options available to you.  It is a system of distribution, not control.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #183 notes/wow-chat-biomes ---
══════════════════════════════════════════════════════════════════════════─────────
 there should be biomes in wowchat - like, paint on a map where the oozes can
 go, and it'll spawn a random ooze for ya.
 
 next find the ones that are wildlife, and paint a zone where wildlife creatures
 can spawn. make sure they're initially friendly but will attack if you do.
 
 then give +reputation to the wolves if you fight monsters besides them
 
 and +reputation to the cats if you fight undead
 
 this is easily implementable.
 
 all you have to do is walk around, find the rough general border points with
 your character at 5x speed, and then type them into a text file.
 
 it's not like Azeroth changed.
 
 then, ideally, make small dense zones which travel and cause their monsters
 to either spawn at a point or move toward a point.
 
 then let the "flock" travel as it pleased, traversing the
 map-painted-lua-script
 -ed-monster-delivery-system-I-wield
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #184 fediverse/927 ---
═══════════════════════════════════════════════────────────────────────────────────
 @user-638 
 
 kinda makes me wish we treated software design more like a science
 
 open source by default, working together to create understandings about how to
 best process information, incorporating the needs and desires of multiple
 different fields / types of person, creating useful conclusions or programs
 that people can use for their own enrichment or benefit, and oh wait funded
 and directed by people who don't care about the technology/science and instead
 just want results
 
 I feel like we'd learn a lot more in our CS degrees if we were tasked with
 making open source projects. Then maybe professors (or other people doing
 research) could show us and explain why we're doing things right / wrong. And
 if we were encouraged to use our peer's tools, then we could work together to
 design a team.
 
 Museums are great because you can meet other people who are also interested in
 history/biology/ecology/anthropology/science/art/any-other-type-of-civic-good-y
 ou-can-think-of/
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #185 fediverse/1934 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1109 
 
 do it in a random color each time! Here's my implementation for viewing txt
 files colorfully:
some bash computer code which first picks a random color, and if the color is a bad combination (like, black front and black back, meaning you can't see the lines of the letters) then it redoes it and tries to pick a better one randomly. It'll keep trying until it gets a correct combination but honestly there's only like one or two bad ones that don't look so great
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #186 fediverse/1667 ---
═════════════════════════════════════════════════════──────────────────────────────
 @user-1061 
 
 you just made it right? the same thing happened to me IIRC, I think Neocities
 gives you a boost when you're new because you show up in the "newest" search
 results more plainly. Also, every time you update it you're featured in the
 "recently updated" lists as well.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #187 fediverse/5875 ---
══════════════════════════════════════════════════════════════════════════────────┐
 ┌──────────────────────────────────────────────────────────┐                     │
 │ CW: whoops-almost-unleashed-evil-again-glad-it's-averted │                     │
 └──────────────────────────────────────────────────────────┘                     │
 if they could put a camera behind your screen they could direct your attention   │
 however they wisdeed. magic doesn't work unless it's instantly halted, that's    │
 why it's magic. trans girls still get brotherhood. (sometimes)                   │
 -- stack overflow --                                                             │
 don't teach me how your way works                                                │
 tell me how to do my way right                                                   │
 -- stack overflow --                                                             │
 "hello tech company that I work at, can you buy me a camping set complete with   │
 tent, sleeping back, and storage compartments for attachements full of gear?     │
 you can have any profits I make from it"                                         │
 "hello civilian supply company that I work at, can I use the printable budget    │
 for creating magazines in my design? I'll let the lawyers distribute the         │
 expenditure."                                                                    │
 "hi grocery farm, can you make us more peaches we can let [our/your]             │
 biochemists figure out any practical problems to growing them in these           │
 climates"                                                                        │
 suddenly manufacturing can follow demand                                         │
 "ah what if it were importand" I wish I'd seen casablanca. I've no idea wat      │
 its abt                                                                          │
                                                            ─────────┤
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════────────┘

--- #188 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                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #189 fediverse_boost/3947 ---
◀─[BOOST]
  
  in 1987 Donald Trump returned from Moscow, took out full page ads in three major papers against NATO,  and formed an exploratory committee for president.   
                                                                              
  I think about that a lot                                                    
  
                                                            
 similar                        chronological                        different 
─▶

--- #190 notes/from-spoons-to-stones ---
════════════════════───────────────────────────────────────────────────────────────
 ===============================================================================
 =
 
 The Idea That Everything From Spoons to Stones is Conscious is Gaining
 Academic Credibility
 
  - Olivia Goldhill
 ===============================================================================
 =
 
    Consciousness permeates reality. Rather than being just a unique feature of
    human subjective experience, it’s the foundation of the universe, present
    in every particle and all physical matter.
 
    This sounds like easily-dismissible bunkum, but as traditional attempts to
    explain consciousness continue to fail, the “panpsychist” view is
    increasingly being taken seriously by credible philosophers,
    neuroscientists, and physicists, including figures such as neuroscientist
    Christof Koch and physicist Roger Penrose.
 
    “Why should we think common sense is a good guide to what the universe is
    like?” says Philip Goff, a philosophy professor at Central European
    University in Budapest, Hungary. “Einstein tells us weird things about
    the nature of time that counters common sense; quantum mechanics runs
    counter to common sense. Our intuitive reaction isn’t necessarily a good
    guide to the nature of reality.”
 
    David Chalmers, a philosophy of mind professor at New York University, laid
    out the “hard problem of consciousness”(1) in 1995, demonstrating that
    there was still no answer to the question of what causes consciousness.
    Traditionally, two dominant perspectives, materialism and dualism, have
    provided a framework for solving this problem. Both lead to seemingly
    intractable complications.
 
    The materialist viewpoint states that consciousness is derived entirely
    from physical matter. It’s unclear, though, exactly how this could work.
    “It’s very hard to get consciousness out of non-consciousness,” says
    Chalmers. “Physics is just structure. It can explain biology, but
    there’s a gap: Consciousness.” Dualism holds that consciousness is
    separate and distinct from physical matter—but that then raises the
    question of how consciousness interacts and has an effect on the physical
    world.
 
    Panpsychism offers an attractive alternative solution: Consciousness is a
    fundamental feature of physical matter; every single particle in existence
    has an “unimaginably simple” form of consciousness, says Goff. These
    particles then come together to form more complex forms of consciousness,
    such as humans’ subjective experiences. This isn’t meant to imply that
    particles have a coherent worldview or actively think, merely that
    there’s some inherent subjective experience of consciousness in even the
    tiniest particle.
 
    Panpsychism doesn’t necessarily imply that every inanimate object is
    conscious. “Panpsychists usually don’t take tables and other artifacts
    to be conscious as a whole,” writes Hedda Hassel Mørch, a philosophy
    researcher at New York University’s Center for Mind, Brain, and
    Consciousness, in an email. “Rather, the table could be understood as a
    collection of particles that each have their own very simple form of
    consciousness.”
 
    But, then again, panpsychism could very well imply that conscious tables
    exist: One interpretation of the theory holds that “any system is
    conscious,” says Chalmers. “Rocks will be conscious, spoons will be
    conscious, the Earth will be conscious. Any kind of aggregation gives you
    consciousness.”
 
    Interest in panpsychism has grown in part thanks to the increased academic
    focus on consciousness itself following on from Chalmers’ “hard
    problem” paper. Philosophers at NYU, home to one of the leading
    philosophy-of-mind departments, have made panpsychism a feature(2) of
    serious study. There have been several(3) credible academic books(4) on the
    subject(5) in recent years, and popular(6) articles(7) taking panpsychism
    seriously.
 
    One of the most popular and credible contemporary neuroscience theories on
    consciousness, Giulio Tononi’s Integrated Information Theory(8), further
    lends credence to panpsychism(9). Tononi argues that something will have a
    form of “consciousness” if the information contained within the
    structure is sufficiently “integrated,” or unified, and so the whole is
    more than the sum of its parts. Because it applies to all structures—not
    just the human brain—Integrated Information Theory shares the panpsychist
    view(10) that physical matter has innate conscious experience.
 
    Goff, who has written an academic book(11) on consciousness and is working
    on another that approaches the subject from a more popular-science
    perspective, notes that there were credible theories on the subject dating
    back to the 1920s. Thinkers including philosopher Bertrand Russell and
    physicist Arthur Eddington made a serious case for panpsychism, but the
    field lost momentum after World War II, when philosophy became largely
    focused on analytic philosophical questions of language and logic. Interest
    picked up again in the 2000s, thanks both to recognition of the “hard
    problem” and to increased adoption of the structural-realist approach in
    physics, explains Chalmers. This approach views physics as describing
    structure, and not the underlying nonstructural elements.
 
    “Physical science tells us a lot less about the nature of matter than we
    tend to assume,” says Goff. “Eddington”—the English scientist who
    experimentally confirmed Einstein’s theory of general relativity in the
    early 20th century—“argued there’s a gap in our picture of the
    universe. We know what matter does but not what it is. We can put
    consciousness into this gap.”
 
    In Eddington’s view, Goff writes in an email, it’s “”silly” to
    suppose that that underlying nature has nothing to do with consciousness
    and then to wonder where consciousness comes from.” Stephen Hawking has
    previously asked(12): “What is it that breathes fire into the equations
    and makes a universe for them to describe?” Goff adds: “The
    Russell-Eddington proposal is that it is consciousness that breathes fire
    into the equations.”
 
    The biggest problem caused by panpsychism is known as the “combination
    problem”: Precisely how do small particles of consciousness collectively
    form more complex consciousness? Consciousness may exist in all particles,
    but that doesn’t answer the question of how these tiny fragments of
    physical consciousness come together to create the more complex experience
    of human consciousness.
 
    Any theory that attempts to answer that question, would effectively
    determine which complex systems—from inanimate objects to plants to
    ants—count as conscious.
 
    An alternative panpsychist perspective holds that, rather than individual
    particles holding consciousness and coming together, the universe as a
    whole is conscious. This, says Goff, isn’t the same as believing the
    universe is a unified divine being; it’s more like seeing it as a
    “cosmic mess.” Nevertheless, it does reflect a perspective that the
    world is a top-down creation, where every individual thing is derived from
    the universe, rather than a bottom-up version where objects are built from
    the smallest particles. Goff believes quantum entanglement—the finding
    that certain particles behave as a single unified system even when
    they’re separated by such immense distances there can’t be a causal
    signal between them—suggests the universe functions as a fundamental
    whole rather than a collection of discrete parts.
 
    Such theories sound incredible, and perhaps they are. But then again, so is
    every other possible theory that explains consciousness. “The more I
    think about [any theory], the less plausible it becomes,” says Chalmers.
    “One starts as a materialist, then turns into a dualist, then a
    panpsychist, then an idealist,” he adds, echoing his paper(13) on the
    subject. Idealism holds that physical matter does not exist at all and
    conscious experience is the only thing there is. From that perspective,
    panpsychism is quite moderate.
 
    Chalmers quotes his colleague, the philosopher John Perry, who says: “If
    you think about consciousness long enough, you either become a panpsychist
    or you go into administration.”
 
 ===============================================================================
 =
    Olivia was a science reporter at Quartz from 2015 to Oct. 2020, most
    recently covering the healthcare industry and psychedelic research. She
    previously reported on philosophy and psychology, and was part of a Quartz
    investigative team focused on online political propaganda. Olivia was a
    2020 Livingston Award finalist for her work on misuse of data to fuel
    propaganda in Brazil. Before Quartz, she was a reporter and features writer
    at The Daily Telegraph in the UK.
 ===============================================================================
 =
 
 1. http://www.iep.utm.edu/hard-con/#SH1a
 
 2. http://www.nyu.edu/gsas/dept/philo/courses/mind2015/
 
 3. https://ndpr.nd.edu/news/panpsychism-contemporary-perspectives/
 
 4.
 https://www.amazon.com/Panpsychism-Contemporary-Perspectives-Philosophy-Mind/dp
 /0199359946
 
 5.
 https://global.oup.com/academic/product/consciousness-and-fundamental-reality-9
 780190677015?cc=us&lang=en&
 
 6. https://aeon.co/ideas/panpsychism-is-crazy-but-its-also-most-probably-true
 
 7.
 https://www.theatlantic.com/science/archive/2016/09/panpsychism-is-wrong/500774
 /
 
 8. http://integratedinformationtheory.org/
 
 9.
 https://philosophynow.org/issues/121/The_Integrated_Information_Theory_of_Consc
 iousness
 
 10.
 https://philosophynow.org/issues/121/The_Integrated_Information_Theory_of_Consc
 iousness
 
 11.
 https://global.oup.com/academic/product/consciousness-and-fundamental-reality-9
 780190677015?cc=us&lang=en&
 
 12. https://www.firstthings.com/article/1996/08/006-the-fire-in-the-equations
 
 13. http://consc.net/papers/idealism.pdf
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════──────────────────────────────────────────────────────────────┘

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

--- #192 fediverse/5013 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 ┌────────────────────────────────────────────────────┐                           │
 │ CW: cursing-mentioned-political-protests-mentioned │                           │
 └────────────────────────────────────────────────────┘                           │
 trying my darndest not to accelerate any more... this is a good pace, I think.   │
 Here's hoping the liberals catch up.                                             │
 here's the thing. protests are more like festivals where people get to immerse   │
 themselves in political culture rather than efforts to affect meaningful         │
 change. I think that's okay? Let them have festivals.                            │
 Meaningful change comes from the people's presence. Technically they're          │
 present, but they'll be gone tomorrow, so were they ever really there?           │
 Still think it's a good thing. You can get rough numbers of how many people      │
 will eventually be on your side once they're forced to choose between victory    │
 or death. The status quo won't last, and I don't fault them for clinging to it   │
 while begging for change. It's fucking hard to change. [oops cursing             │
 mentioned, one sec]                                                              │
 I've been very tired lately. Don't know why. Maybe I have a vitamin deficiency   │
 or whatever. Who can say. I'll try to get back on my game for you, but we'll     │
 see if I can do it fast enough.                                                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #193 notes/wow-chat-trainers ---
══════════════════════════════════════════════════════════════════════════─────────
 trainers in wowchat should have spells that are only passive / toggled
 
 still require level, still require gold (lots of it) but let the game be class-
 -less. essentially, every trainer teaches to every passerby, and like if you
 don't want any druid spells, sorry guy all I know is how to be a druid.
 
 better wait for the next trainer to come along.
 
 you only got like 6g, right? that's enough for two spells.
 
 which two do you prioritize? they only come by like every what, 15 minutes?
 
 also. separate idea:
 
 player characters in wowchat should attack more rhythmically.
 
 essentially, normalizing attack speed and moving back-and-forth with the
 normalized monster attack speed
 
 to create a dance of sorts where one character is never attacking at the same
 time as the other character.
 
 plus damage modifiers when you get closer, and bam suddenly you have a new
 game.
 
 oh and rotating around an opponent lowers their defence rating. which is locked
 at 95% with a +5% to avoidance with every hit they take and -5% for every
 parry.
 
 not dodge, but parry.
 
 dodging wears down their health by like 10 hit points.
 
 relax it's no big deal you get like, a hundred every time you level up.
 
 oh and btw the monsters don't give exp. The stuff that you find does, when you
 give it to a merchant to be appraised / identified.
 
 some stuff you know the worth of, like rope or barrels or hammered-iron-rings.
 
 but other stuff, like the value of this bracelet, is harder to know if it
 glass.
 
 so.... take it to the guy whose seen real diamonds, and he'll tell ya how much
 you learned when you found it last.
 
 item A is found on a monsters body
 item is sold to a vendor for 50 copper
 item A is found on a monsters body
 player has learned 25 deca-levels since last selling to vendor.
 therefore item is worth 75 copper.
 player earns 75 extra material points.
 item is worth 75 experience points.
 level up every thousand or twelve.
 
 slow down the attack speed. make characters gain bonuses for movement
 positiony.
 start from always and work down to fewer.
 talent points can be generic if your character is built with abilities.
 
 players don't need to press buttons to be engaged. They can just guide and see.
 I love auto-battlers like Dominions 6 and Legion TD 2 which is based on WC3
 mod!
 
 monsters should just... wander the world. Don't spawn them randomly, well,
 instead of a radius around the player, do a radius around the map.
 
 then, they walk through a random point, when they leave the circle they angle-
 -reflect back in, DVD logo style.
 
 if there's deadly monsters, there's deadly players, and PVP is always on.
 
 low levels should get bonuses to stealth (an ability everyone has)
 
 there should be civilians walking around. They can be armed or in caravans...
 follow roads, or not...
 
 monster hordes should spawn as a flock - when an elite enemy is drawn, let the
 game create several of their minions which follow around. Whenever a monster
 meets the swarm, they will join it, growing bigger and bigger...
 
 hopefully, attracting players who want to fight and slay them.
 
 greater rewards are more enticing...!
 
 more power is it's own reward.
 
 I think that weapons should have like, 3 durability? and armor like 5.
 
 then, it's broken, and your character has to abandon it to survive.
 
 or, sell it to a vendor, or just... whoever comes along.
 
 if 5 people open the chest and don't take the item, then the item disappears...
 
 every time a player opens a chest, a bit of wealth appears.
 
 every time they spend it? they get stronger, and it disappears.
 
 life feeds on life feeds on life feeds on life feeds on life feeds on life
 feeds
 
 the life of wowchat is the life of continual strife, but it doesn't have to be
 so. The land itself is alive, and the monsters are eternally of woe.
 
 you must free them, so that their souls may return to the land, and be born of
 peace and plenty rather than horror and -- stack overflow --
 
 to do this, you slay them, finish their morthly remains, and let them break
 down
 and decompose into dust. Pleants eat dust. dust becomes what we eat and
 breathe.
 we, eventually, purify karma. this is our duty.
 
 vial of woe behind us. flower of renewal ahead. what we bear is savage
 sanctity.
 
 every time a monster kills a player they gain one of their abilities each time
 they're spawned. The player can keep the ability too, it's just... the monster
 will learn. Then, whenever a player levels up by slaying one of them, the spell
 or ability is unlearned. Symbolizing the players struggle to defeat them, and
 finally learning a way to overcome.
 
 when your character dies, you have no opportunity to release - instead, you
 just
 jump to the nearest NPC character which is an adventurer agent smith style.
 
 [I don't know about that one...]
 
 the players can pick any race, but if they pick undead, they can turn into a
 ghost when they die. The ghost can wander around and respawn wherever they
 want.
 
 Night Elves can wander around as a whisp (not in spirit world, real world) and
 do a beam attack like in Legion TD 2. Not enough to kill monsters, but enough
 to
 help another player survive. They can also cast rejuvenation, which heals about
 as much as one monster's damage input. if they get the killing blow on a
 monster
 they can level up and deal two monsters worth of damage and heal for two
 monster
 damage input. on the third time they don't get more damage or healing but they
 give a buff to all other whisps in the area that increases their attack speed
 by
 50% and increases the tick rate of their rejuvenation by 50% - fourth time they
 level up they're free, and they get kicked out to the login screen.
 
 what if... vehicles that looked like characters and that you could jump between
 with the right-click of an item?
 
 "this is just dota-ing a vampire survivors."
 
 Vampire Survivors is just Magic Survival is just Risk of Rain 2
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #194 fediverse/6151 ---
═════════════════════════════════════════════════════════════════════════════──────
 I find that when I give something away or lose it in a way that causes it to
 become trash, a bunch of my other stuff breaks or is lost or damaged. It's
 frustrating because I love my stuff! Enchanted with care...
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #195 messages/878 ---
════════════════════════════════════════════════════════════════════───────────────
 [Image: 20250414_155726.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #196 fediverse/5784 ---
═════════════════════════════════════════════════════════════════════════─────────┐
 large companies want you to need to download and configure each piece of         │
 software because then it'd mean [wait you got that backwards] oh right if they   │
 force you to download and install software on a "per distro" system, then they   │
 effectively can ensure that there's always a vulnerability on your host.         │
 any amount of space is PLENTY of space for a                                     │
 non-open-source-but-instead-proprietary-or-otherwise-secretive part of the       │
 tech stack to do whatever they want with your host. computer.                    │
 I wonder, if AI was real would it really be guaranteed to expand in growth       │
 exponentially? What if it's nature was confined to it's form, like dinosaurs     │
 not growing bigger because of the lack of oxygen in the airtmosphere?            │
 [girl can you please stop smoking weed]                                          │
 ... no?? that's when I'm most productive.                                        │
 [this isn't productive]                                                          │
 it feels productive                                                              │
 [it isn't]                                                                       │
 WHYYYYYYY not? it could be. just gimme a task and I'll write endlessly about     │
 it instead of daydreaming to myself.                                             │
 yep... pretty all-right-at-it for a start. elentalusCOTE                         │
                                                            ──────────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════─────────┘

--- #197 fediverse/3946 ---
═══════════════════════════════════════════════════════════────────────────────────
 @user-1623 
 
 I perform the song of my heart
 
 which sometimes feels similar
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #198 messages/1155 ---
══════════════════════════════════════════════════════════════════════════════════─
 Oh, I guess I should clarify something I said like, a year ago - when I said I
 "talked to / worked with" so-and-so, I meant that I created in tandem with a
 friend a proposition of sorts, and we tried to psychically beam it into their
 minds. That's not exactly how it went down, but it gives you a good enough
 picture of the goals we had with our ritual. I have no idea if they heard, but
 I did happen to see several of them later on, which felt a little too
 serendipitous to just be chance. so I'm thinking they did. I hope they got the
 message and used it as they please, because it was mutually beneficial even if
 neither of us had any actual impact on it. If you didn't hear the whole story,
 then it's hardly a lie to possess incomplete information! So long as you don't
 lie about me, and what I said or did, then it'll surely be fine. There's no
 need to embellish when it's plainly apparent.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #199 fediverse/4979 ---
════════════════════════════════════════════════════════════════════───────────────
 They said "compete or die" and I said no.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #200 messages/860 ---
════════════════════════════════════════════════════════════════════───────────────
 [Image: 20250414_155232.jpg]
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘