sometimes you invent mind prisons for yourself for no good reason and youre like "i really like being in the mind prison" even though you dont actually like being in the mind prison
I'd rather be in outer space 🛸

Game Changer & Make Some Noise
Show & Tell
Not today Justin
noise dept.
Claire Keane
tumblr dot com
let's talk about Bridgerton tea, my ask is open
almost home
Cookie Run:Kingdom Official!

bliss lane
🪼
art blog(derogatory)
No title available
macklin celebrini has autism
The Bowery Presents
Lint Roller? I Barely Know Her
h

❣ Chile in a Photography ❣

titsay
seen from United States

seen from United States
seen from United States
seen from Palestinian Territories
seen from Colombia
seen from United States
seen from Brazil
seen from Kuwait
seen from Brazil

seen from Thailand
seen from Türkiye

seen from Colombia

seen from Trinidad & Tobago
seen from Saudi Arabia

seen from United States

seen from Colombia

seen from Philippines
seen from Russia

seen from Malaysia
seen from Colombia
@jsunkiller
sometimes you invent mind prisons for yourself for no good reason and youre like "i really like being in the mind prison" even though you dont actually like being in the mind prison
james ortiz provided some of his own personal rocky backstory on the sag aftra podcast, transcribed by me because we all have to be miserable about it together.
link to the podcast, this section below is from timestamp 24.35
“andy weir provided a packet to the creature shop that was like a packet of eridian biology and stuff but there wasn’t much about eridian culture or eridian sociology and i made a bunch of choices going in because i just needed to have like a ‘who am i?’ right?
[…] and i made a decision that rocky’s species, that eridians are really social animals that in fact are like a beehive or a pod of dolphins - it’s a unique and really integrated ecosystem of everybody doing their [specific] part. and the fact that rocky had to fly that ship for about 45 years - longer than grace has been alive, i wanna point that out - he’s been alone on that ship, having to run that by himself and- ryan and i would talk about that, one day we sat down and he was like “so what’s the movie from rocky’s perspective?” and i was like “oh it’s like ‘alien’, […] like he’s in a ‘contagion’ movie by himself and he has no idea what’s going on.”
he’s basically in castaway by himself which of course ryan is too but like, one reason why we never cut to the past of rocky is like, i think it was really horrifying! i don’t think rocky has slept in however many years and so a thing i was really struggling with is this idea of like “rocky must watch sleep” because how do you make that a need as opposed to like, a cute idea? and i just had to make the decision that […] he has a lot of unprocessed trauma around the things that he doesn’t understand and how much he is blaming himself because he’s the guy who fixes, he’s the guy who fixes and there was something really freeing about deciding that rocky was a deeply emotional, deeply anxious, deeply horrified person - being - that is trying to move through that in some way and how that affects the early scenes with him until there’s a point in the story where you can see we’ve physically softened rocky’s behaviour, because he’s finally feeling more safe and ok but all of that lore, all of that information [was essential].
i also decided, this is just a small nerdy thing, that there was actually some of his family, was on that ship too.”
Was working on a panel and then suddenly I decided to live vicariously through Tails and have him address the important things in life.
I know that Ea-nasir is like a meme these days but it is wild that we have complaint letters from 1750 BC. That's over three thousand years before the release of Belgian techno anthem "Pump Up the Jam".
Couples shirts that say "I'm misery" and "I'm company"
[ID: Wild that we don't audit billionaires, but y'all will dissect a single mom's grocery cart like it's a crime scene.
— tammi_murphy]
Well. You can't say they don't take their theme seriously.
this reads like it was submitted to a local newspaper in the early 1900s
AND ANOTHER ONE BITES DUST!
"who do you self insert as when you read?"
This is me when I read:
my two moods these days
DESPERATELY trying to find the source of this image. where do you come from. i need to find you. you're like my dead wife
birth of venus
this is in excel btw. and this image is exactly half green and half pink. and for each shade of green there is an equal number of "opposite" pink pixels. and this represents a major leap forward in excel macro use by me
the origin of this concept was, oh, what if you were trying to recreate an image as a tapestry? and you had, say, 24 colors of yarn? and you wanted the image to have equal amounts of each color of yarn? how would you effectively use the yarn you had to create the image? you'd have to look at all the colors of the original image, then look at your yarn colors, and find some consistent method for choosing what original colors are replaced with what yarn colors. but then it turns out there's a lot of different rules you could imagine or follow, which produce different-looking images. and you can end up with something like this:
which is cool. and it would be cool to say, find a granny square cardigan pattern with 24 squares, knit these squares, make a sick cardigan. but then i realized i don't know how to knit or anything. and once you accept that there isn't really a clear "application" and this concept lives on a screen, you open yourself up to more possibilities. a la birth of venus.
step 1: python script that looks at the original image and generates an excel spreadsheet the same dimensions (793 x 1322 pixels = 793 x 1322 cells), and each cell is populated with the hex code of the color that appears in that pixel of the original image
step 2: excel macro to generate list of every unique hex code that appears in the excel spreadsheet.
step 3: excel macro to calculate the R, G, B values of each of those hex codes.
step 4: excel macro to fill each cell with the color of that hex code (not necessary, i just like to do it).
step 5: I add in Saturation (the difference between the largest and smallest RGB value) and Lightness (average of all RGB values).
step 6: pick a color palette. i always find myself gravitating towards groovy seventies palettes with warm reds and oranges, so i decided not to do that this time. i looked on coolors and found a color palette that was all dark greens that were similar to each other. there were only like four colors or something in this palette. and to make it truly different from the other project, there should be a small gradient. so i determined the smallest possible change between colors and used an excel macro to color it. i was going to stop here and do the entire image in shades of green (inspired by that guy on tiktok that paints using only one color) but then. idk. i realized the "opposite" of each color was an equally subtly changing pink. so i imagined that the end of this process would be an "abstract" image, with subtle variations of pink and green, that would end up suggesting birth of venus.
so all told, i had 502 unique replacement colors, 251 of which are green, 251 of which are pink. (793 x 1322) / 502 = either 2088 or 2089 of each color.
step 7: find some method for finding the difference between the original colors of the image and my new color palette. I use a method of comparing, R, G, B, S and L:
((abs(R1 - R2) + abs(G1 - G2) + abs(B1 - B2)) / 3) + abs(S1 - S2) + abs(L1 - L2)
and you come up with something like this. on the left, those are colors that appear in the original image. across the top, those greens are the colors i'm replacing it with. in blue, that's the number of each new color i have to work with (it's just blue for contrast). and in the center, this pink area, that's a giant spreadsheet with the "objective" difference between each original color and each replacement color. it's pink because i have some conditional formatting applied, ignore that part.
and in this situation, you have some choices to make. in the original image up there, i used a schema prioritizing light and dark--i.e., i looked at the darkest color (pure black) that appeared in the original image, then found the closest replacement color (i.e., the replacement color with the smallest number). then did the same with the lightest color. then the next darkest, next lightest.
but i'm going to do it slightly differently this time. and i don't know how this image will come out looking.
if you look at the "first" green, closest to the left, and sort by smallest to largest:
you can see that these colors on the left are closest to the "first" green i've decided to work with. that might seem odd. i mean, #7F9800--> #00a94f are pretty close, but #A95400 is red. but that's just a difference in hue. really, #A95400 and #00a94f are very similar in lightness and saturation.
and this also calculates the number of times that color actually appears in the original image. that first specific green, #7F9800, only appears twice. but some colors, like actual black #000000, appear something like 46,000 times. and if you add all the numbers in the "frequency" column, it should exactly equal the sum of each replacement color (2088 ish x 502).
step 8: excel macro again. this one is complicated. basically it sorts that first "green" column (column E in my spreadsheet) from smallest to largest. then it adds each cell in the "frequency" column until it reaches or surpasses the blue cell above column E, which for this particular color is 2089. it copies those "original image" colors and their respective frequencies over to another sheet. for the color that surpassed 2089, it splits in two. then it deletes that column E. Then it makes sure "frequency" and "replacement color sum" still total. then it runs again on the new column E, until the whole spreadsheet is used up. and it generates something like:
[color from original image] [number of times that color appears] [replacement color, filled in]
and there's approximately 8000 lines of that.
i have the replacement colors in the order above. starting with vivid green, slowing transitioning to dark green, switching abruptly to bright pink, slowly transitioning to pale pink.
step 9: another excel macro. this one looks at original image broken down into hex codes, then looks at the generated list and replaces each [original] color with the replacement color, that exact number of times.
end result of these macros, following different "rules" of assigning replacement colors to original colors, is this:
which looks different, obviously. but it is the exact replacement colors, and same number of each replacement color, as the original up there.
at maximum efficiency, it took about 20 minutes to complete step 8 and 9. i have a vision of creating a series of these, each time "starting" with the next replacement color, and then making a gif of it. idk how to make gifs though
Nintenhogs DS Original Soundtrack
an imagined OST of music for a pig sim game made with GBA/DS soundfonts 🐷
(bandcamp) (youtube)
the problem with tumblr spells is all of you lil sluts are casting and not giving it time to charge so you're all casting cantrips and not 9th level death spells. everyone wants to be the one to take them down no one wants to be the one who assists
we're going to try again witha little but minimal casting
IT will happen in August of 2026. like to charge and reblog to cast but cast sparingly
Wait stop. everyone +like now and spread it a little but cast on the same day in August. lets try August 6th or something.
CAST NOW!!!
CAST MORE