@pkmnq

some cool phrase
Wall

why do i have five separate kumquat jpegs in cubeupload

HOW CAN THIS BE HAPPENING??

nighty morning

I’d like to once have been someone who did something that had once had had a visible effect that was visible and the effect of something that I once had once decided to do.

So you know that common depiction of gears turning in your brain? I think my brain’s gears are clipping through each other.

You've heard of the ship of Theseus, and the sequel to the ship of Theseus where they use the old parts to build a new ship, now get ready for the ship of THREEseus.

Let's pretend that one of the ships of Theseus got lost in the Bermuda triangle, and the remaining ship of Theseus is the new official ship of Theseus. However, they didn't want it to get lost, so they kept it in a safe place for a while.

Fast forward after everyone forgets about the ship of Theseus, and they're running out of wood. They find this ship in a random location, and they decide to use its parts for a house.

Fast forward even longer to when the house is abandoned, and they're building a new fleet and want all the wood they can get, so they use the abandoned house's wood and call the new ship "Not the ship of Theseus" as a joke about how they made it look the exact same as the ship of Theseus, but didn't use the same wood. One day, they find out about the wood's origin somehow. Is the new ship the ship of Theseus or Not the ship of Theseus? Is it both?

Bonus question: It turns out the house's parts were replaced over time, and the parts of the house were used to build an identical house, which also got turned into a ship identical to the ship of Theseus. Is either one of them the ship of Theseus, or are both of them distinct ships?

Would the 5 people who liked this like to reveal themselves

When I get back home I am going to just melt and stay that way

When I get back home I am going to just melt and stay that way

The correct way to count

…they already stopped????? Why are you even bringing them up in the first place?????

idc, just stop the wars, please

My brother in Christ, Lily literally started the flame wars

i wish there was more positivity on wasteof.money

the flame wars are why so many people like @poprockisdead and @lily left/are leaving

Apr 30, 2023, 1:09 PM
6 1 7
Apr 30, 2023, 4:06 PM
8 1 1

Surgical Precision

Destroy all non-damaging light crates in room 7 without dying. If you die, you need to restart the room from the beginning.

Could jeffalo theoretically make a post a repost of itself (or a repost of a repost of itself, or a repost of a repost of a repost of itself, or

This is still technically readable, and I’d define “obfuscation” as making something completely unreadable, so this is not obfuscated. But it’s not quite normal code either, so I’m going to invent a new word for no reason: “obgrisation” or “obgresation”. It’s based on some half-thought out Latin word combining, so feel free to argue with me on what the word should be, but until then, I’m calling this obgrisated code.

fn 
    main
    (
    ) 
    {
    for 
        n 
            in 
        1..101 
        {
            let 
                mut 
                out
                    : 
                        String 
                    = 
                ""
                    .
                to_string
                    (
                    )
            ;
            if 
                n 
                    % 
                3 
                    == 
                0 
                {
                    out 
                        += 
                    "Fizz"
                    ;
                } 
            if 
                n 
                    % 
                5 
                    == 
                0 
                {
                    out 
                        += 
                    "Buzz"
                    ;
                }
            if 
                out 
                    == 
                "" 
                {
                    out 
                        = 
                    n
                        .
                    to_string
                        (
                        )
                    ;
                }
            println!
                (
                    "{}"
                        , 
                    out
                )
            ;
        }
    }