Avatar

Moosic

@phillypu / phillypu.tumblr.com

Having a boyfriend is literally free

I’m stuck in my room because i have a fresh arm tattoo that’s not exactly fun to drive with and my little sister and her friends are hanging out in the kitchen so instead of doomscrolling or agonizing over creative projects i’m sending him pictures of various car parts and asking him to name them

I think he likes it?

it really is crazy how quickly people were willing to just let chatgpt do everything for them. i have never even tried it. brother i don't even know if it's just a website you go to or what. i do not know where chatgpt actually lives, because i can decide my own grocery list.

i wisely turned off the notes on this when it was at 700 but oh my god stop telling me what you "just" use it for in the notes shut the fuck up shut the fuck up I AM NOT A CATHOLIC PRIEST, I DO NOT ABSOLVE YOU. WRITE YOUR OWN EMAILS.

we do need to revisit the wording of "you can't have your cake and eat it too" because i don't think it clearly enough conveys that it's more that you can't simultaneously retain a cake and also get to consume it (which would render you cakeless). for years i was like But why not....it's my cake....?

this fucking problem is how they caught the unabomber

hey you should uh. elaborate. for my own personal satisfaction

the unabomber was pedantic about idiomatic phrases like "have your cake and eat it too" and rephrased it to "eat your cake and have it too" (which to be very fair makes sense). fast forward to when he starts writing manifestos. he uses the phrase word for word in his pedantic style and his brother (who has been keeping his eyes on the unabomber shit for obvious reasons) notices the phrase and is like "oh fuck that's my fucking brother no one else fucking says that" and calls in an FBI tip

Well you can't deliberately speak in a way nobody else does and also stay anonymous you know. Can't eat your cake and have it too.

I love speed runners

to those asking: welcome to restaurant%, where you help ganondorf rebuild his life as a humble restaurant owner by building a restaurant around him as fast as possible without getting murked

I saw this video the other day! If it’s not immediately obvious, the “booth” is made out of indestructible parts, and enclosing Ganon in them breaks his AI so he no longer attacks.

This is genuinely the best speedrun challenge I've ever seen. I will think of nothing else for weeks, probably.

Avatar
Reblogged teaboot

nothing funnier to me than when AI does math wrong. like I get why it happens, it's a language model that's treating the numbers you feed it as words rather than integers and then giving you an answer based on how those words typically appear in a block of text instead of actually performing a calculation. but the one thing computers are genuinely incredible at. you fucked up a perfectly good calculator is what you did, look at it it's got hallucinations

Avatar
Reblogged teaboot

It’s crazy and fucked up that being yourself is actually the solution.

It’s like. When I was told to “just be yourself” as a kid I thought it was a passive thing. Like oh easy I just have to sit here and be myself. but the reason so many people think that “being yourself” is bullshit advice is because you actually have to make active choices to do this and it WILL make your life way more fun. You have to wear t-shirts of bands that were popular ten years ago because you like them. You have to do your hair in a way that you find cute or comfortable even if it’s “so nineties”. If your friend says a food you enjoy is gross to them, you can’t be afraid to admit you casually disagree. You have to do hobbies that you’re interested in even if you’re bad at them and you cant feel like you have to get good at something before you tell people it’s an activity you do. You have to read manga and comic books in public and get piercings your relatives think are unattractive. You don’t have to tell people you dislike that you dislike them, but you don’t have to give them your time and attention either. You have to rewatch that kids show you’re nostalgic for even if you’re in your 30s. You have to change your name if you hate it, even if only a few close friends can know. You have to get fun girly drinks at the bar. You have to order hot chocolate when you don’t like coffee and black coffee when you don’t like sweet things. I am still bad at practicing this but it is the only way to make it all tolerable.

First you have to realize that "yourself" is a construct built by the decisions you make. Then it becomes clear that being yourself is a deliberate and intentional practice, not a passive state of existence.

Avatar
Reblogged 3x1x2x5

reached the final phase of insanity regarding my fast food job (started viewing all my job observations through the lens of RPG Squidward)

i need to quit so bad

Avatar
Reblogged foone

How do you *accidentally* make a programming language?

Avatar

Oh, it's easy! You make a randomizer for a game, because you're doing any% development, you set up the seed file format such that each line of the file defines an event listener for a value change of an uberstate (which is an entry of the game's built-in serialization system for arbitrary data that should persiste when saved).

You do this because it's a fast hack that lets you trigger pickup grants on item finds, since each item find always will correspond with an uberstate change. This works great! You smile happily and move on.

There's a small but dedicated subgroup of users who like using your randomizer as a canvas! They make what are called "plandomizer seeds" ("plandos" for short), which are seed files that have been hand-written specifically to give anyone playing them a specific curated set of experiences, instead of something random. These have a long history in your community, in part because you threw them a few bones when developing your last randomizer, and they are eager to see what they can do in this brave new world.

A thing they pick up on quickly is that there are uberstates for lots more things than just item finds! They can make it so that you find double jump when you break a specific wall, or even when you go into an area for the first time and the big splash text plays. Everyone agrees that this is neat.

It is in large part for the plando authors' sake that you allow multiple line entries for the same uberstate that specify different actions - you have the actions run in order. This was a feature that was hacked into the last randomizer you built later, so you're glad to be supporting it at a lower level. They love it! It lets them put multiple items at individual locations. You smile and move on.

Over time, you add more action types besides just item grants! Printing out messages to your players is a great one for plando authors, and is again a feature you had last time. At some point you add a bunch for interacting with player health and energy, because it'd be easy. An action that teleports the player to a specific place. An action that equips a skill to the player's active skill bar. An action that removes a skill or ability.

Then, you get the brilliant idea that it'd be great if actions could modify uberstates directly. Uberstates control lots of things! What if breaking door 1 caused door 2 to break, so you didn't have to open both up at once? What if breaking door 2 caused door 1 to respawn, and vice versa, so you could only go through 1 at a time? Wouldn't that be wonderful? You test this change in some simple cases, and deploy it without expecting people to do too much with it.

Your plando authors quickly realize that when actions modify uberstates, the changes they make can trigger other actions, as long as there are lines in their files that listen for those. This excites them, and seems basically fine to you, though you do as an afterthought add an optional parameter to your uberstate modification action that can be used to suppress the uberstate change detector, since some cases don't actually want that behavior.

(At some point during all of this, the plando authors start hunting through the base game and cataloging unused uberstates, to be used as arbitrary variables for their nefarious purposes. You weren't expecting that! Rather than making them hunt down and use a bunch of random uberstates for data storage, you sigh and add a bunch of explicitly-unused ones for them to play with instead.)

Then, your most arcane plando magician posts a guide on how to use the existing systems to set up control flow. It leverages the fact that setting an uberstate to a value it already has does not trigger the event listener for that uberstate, so execution can branch based on whether or not a state has been set to a specific value or not!

Filled with a confused mixture of pride and fear, you decide that maybe you should provide some kind of native control flow structure that isn't that? And because you're doing a lot of this development underslept and a bit past your personal Balmer peak, the first idea that you have and implement is conditional stops, which are actions that halt processing of a multiple-action-chain if an uberstate is [less than, equal to, greater than] a given value.

The next day, you realize that your seed specification format now can, while executing an action chain, read from memory, write to memory, branch based on what it finds in memory, and loop. It can simulate a turing machine, using the uberstates as tape. You set out to create a format by which your seed generator could talk to your client mod, and have ended up with a turing complete programming language. You laugh, and laugh, and laugh.

Avatar
Avatar
Reblogged teaboot

there's been a couple times that i've gone to the local sex club and every time i was at an event there was one man just fully naked walking around. same guy every time. hog like a hoagie roll when flaccid and he was always flaccid. anyway at one of the less populated events i got to sit and talk with him and he told me that he told me he was always naked because, despite it being a sex club, people still don't know when it's 'okay' to start getting into it and he decided he'd be the one thing to break the ice and make everybody comfortable, because you know you can start doing whatever you wanna do when there's just a naked guy walking around. he then asked if i wanted a silicone copy of his dick for my strap. never in my life have i felt such an instant respect for a person.

Official Hog Like A Hoagie Roll Post

You are using an unsupported browser and things might not work as intended. Please make sure you're using the latest version of Chrome, Firefox, Safari, or Edge.