Spyke

Replies

cat

Comment on

My friend's cat ran off from her sister and began doing this when I went after him. Is he annoyed?

Like others say: tail flapping indicates something bothered him. But (assuming he's looking at you holding the camera when he briefly looks up) you're not the reason. He checks you out and seems to conclude you're alright. The way he positions himself also indicates you're not a threat but wants to keep his eyes on you regardless (or the scene behind you). I might be wrong, I'm not a licensed cat psychologist.

Comment on

What did I forget?

I see a flag. I like flags. Especially the Japanese flags. I don't specifically care for Japan, but the flag is one of my favourites. I prefer flags with low entropy: so I wrote a script once that ranks the nations flags by entropy so I could quantify my preference. Thanks for letting me infodump a bit.

Edit: Due to people aski g for it: here is the top ten of my ranking:

Nations' flag entropy ranking (n=208). 
Image source: Wikimedia.

0	white_field			-1.439759075204976e-10
1	Indonesia			3.3274441922278752
2	Germany			3.391689777286108
3	South_Ossetia			3.8174437373506778
4	Monaco			3.9718936201427066
5	Poland			3.9719290780440133
6	Austria			4.372592975412404
7	Ukraine			4.405280849871184
8	Hungary			4.4465472496385985
9	Albania			4.6134257669087395
10	Mauritius			4.707109405551959
11	Luxembourg			4.721346585737304

Here's how I defined the entropy value for each flag:

def color_weighted_spectral_entropy(image):
    b_channel, g_channel, r_channel = cv2.split(image)
    
    # Calculate spectral entropy for each channel
    def channel_spectral_entropy(channel):
        f_transform = np.fft.fft2(channel)
        f_shifted = np.fft.fftshift(f_transform)
        magnitude_spectrum = np.abs(f_shifted)
        if np.sum(magnitude_spectrum) > 0:
            normalized = magnitude_spectrum / np.sum(magnitude_spectrum)
        else:
            normalized = magnitude_spectrum
        # Entropy calculation with color channel weighting
        epsilon = 1e-10
        entropy = -np.sum(normalized * np.log2(normalized + epsilon))
        
        return entropy
    
    weighted_entropy = (
        0.333 * channel_spectral_entropy(b_channel) +
        0.333 * channel_spectral_entropy(g_channel) +
        0.333 * channel_spectral_entropy(r_channel)
    )
    
    return float(weighted_entropy)

"White_field" is just an array that holds zeroes. I use this as a sanity check. Code is on github. I can send DM to whomever is interested. I guess it can also be searched for.

Comment on

Self-awareness

Reply in thread

This might be part of the issue but in reality high self awareness can also lead to excessive overthinking, ruminating, self criticism and hypervigilance. This is mechanics at play that are the root of some people suffering depression. By no means does this mean to become less selfaware rather to become aware of this pattern and recognise these thoughts: become more aware of ones self awareness.

tumblr

Comment on

*Permanently Deleted*

I grew up in Germany and people have less of a prude culture around being nude. At sauna's everyone is naked: from old folks to children and there isn't anything erotic about it. I think finding someone attractive and being aroused depends on that person and the context and less on the amount of garments they're wearing.

Comment on

Trump, 80, Posts AI Image Teasing 2028 Run

He will MitchMcConnel the presidency and be president for life - post mortem. No one will see him and whatever dark forces are present will pull the strings. His asinine social posts will continue by LLM and this will be the justification of his existence. The supreme Court will establish his beyond 4 years / 2 term limitation. I should become a horror story writer.

Comment on

Trump has a ‘maximum’ meltdown on social media after hate-watching ‘60 Minutes’

Reply in thread

It gets even weirder: a narcissists sense of reality checking is impaired such that they are unable to accept facts that contradict their viewpoint. If their statements/opinions collide with reality, they dismiss it as they hold themselves above reality. They don't / can't learn as this would imply there are gaps in their knowledge and whoever is the messenger of such contradicting facts will incur wrath to allow them to heal, no matter how tactful this is brought to them. Narcissists don't lie (in their mind) and this is akin to something like psychosis or delusion. This is different from psychopaths who are aware of their lies but the motivation differs in that a psychopath does it for external gain (to obtain a goal) whereas narcissists do this for internal gains (so called narcissists supply - feeding the ego). One could speculate that a narcissistic autocrat and his followers (Trump and MAGAs) suffer from shared psychosis.

Comment on

*Permanently Deleted*

Reply in thread

Your premises about qualifications and access is right but I disagree with your conclusion. We're discussing a public figure, one whose heath state is affecting most people's lives but said state is undisclosed or obfuscated from the public. It is our perogative to speculate political leaders' state of mind affected by health issues because that is all that is available to us.

cat

Comment on

I got my first cat!

What other posters said, respond with the blinking. My son calls them eye kisses. It shows trust. In case you're unfamiliar: you look at her and slowly close your eyes for a second. She might mirror it. Facing a fierce predator such as the one you pictured and confronting it willingly blinded, even for a second, takes courage. She'll honour it most likely. Also food and clean water, preferably placed in separate locations.

memes

Comment on

You feel like you are being watched

This reminds me of a story when I was a student. A girl/young woman I know was looking for her friend. Mobile phones was not really something we had but she arranged meeting him at some bar/pub but she didn't know which one in town. So she then went through town checking one after the other. This was a small town with not that many but it took her much longer than it should. Later she explained she had ordered a drink in each one of the establishments as she felt uncomfortable entering and exiting looking for her friend without ordering something.

Comment on

Anon can't escape

Reply in thread

First, when you hyperventilate you expel CO2 from your system. Desolved CO2 in blood causes it to be slightly acidic so when you rid yourself of it, it leaves your blood more alkaline. Oxygen uptake into the cells is highly pH dependent and its efficiency degrades with higher pH such as when breathing fast. Second, when on your knees, or squating, your blood circulation adepts to the blood pressure increase. Once you stand up it takes a while for your system to catch on leaving you with a brief moment of low blood pressure. People with POTS (Postural orthostatic tachycardia syndrome) are very aware of these frequent moments of light-headedness. Third, compressing air into your chest cavity (breathing out but obstructing the air) is called the valsalva manoeuvre and overall decreases blood pressure further while decreasing pulse rate. Combining the rapid breathing in a sitting position followed by standing up and the valsalva manoeuvre will cause temporary oxygen deficiency in the brain causing you to pass out. For obvious reason this isn't advisable to do but if you must, then do it with someone present who can monitor you to make sure you fall safely on a soft surface and make sure you lay flat to aid blood circulation and call emergency services if you're not coming to after a few seconds and can administer CPR just in case.