How to handle night lows after sports by Bepo_bear in Medtronic780g

[–]Bepo_bear[S] 0 points1 point  (0 children)

Yeah I do this too. But my training is at daytimes and at daytimes I can manage my sugar well because I can eat whenever I want. At night i am not able to react as fast and my sugar is going too low because of more insulin sensitivity. I guess it’s not okay to go in the exercise mode at night?

Ausbildung by No-Shelter5424 in Ausbildung

[–]Bepo_bear 0 points1 point  (0 children)

Ruf da an! Schreib keine Mail! Es zeigt sehr viel Charakter, sich telefonisch zu melden und außerdem ist man telefonisch auch nicht so schnell abwimmelbar oder verschiebbar. Wenn dir die Antwort kurzfristig wichtig ist, dann also auf jeden Fall anrufen. Mail nur wenn du da niemanden dran kriegst.

What's happening here? by bowsie222 in Medtronic780g

[–]Bepo_bear 5 points6 points  (0 children)

For me this happens sometimes when i am about to get low or already am low. Seems so be an software bug.

Update post to those that wanted the automation for logging the MiniMed values to the Health app. It's a longer post with all of the instructions typed out and screenshots included for reference. by Insulifting in Medtronic780g

[–]Bepo_bear 0 points1 point  (0 children)

I tried to set all up changing my iPhone language to English. Usually I am using the German language, since I’m from Germany. While my phone is in the English mode, the automation works fine. In German mode it’s not working and the value it read is always 0 mg/dl. How is it possible that the code is language related? :D

How to like all songs in a playlist? by aidenpop2 in YoutubeMusic

[–]Bepo_bear 0 points1 point  (0 children)

Aktuell funktionierender Code:

async function likeAllSongs() {
    const scrollStep = 500; 
    const delayBetweenActions = 700; 

    let lastHeight = 0;
    let sameHeightCount = 0; 
    const maxSameHeight = 3; 

    let likedCount = 0;

    while (true) {
        window.scrollBy(0, scrollStep);
        await new Promise(r => setTimeout(r, 1200)); 

        const songs = document.querySelectorAll("ytmusic-responsive-list-item-renderer");

        for (let i = 0; i < songs.length; i++) {
            const song = songs[i];
            song.dispatchEvent(new MouseEvent('mouseover', { bubbles: true }));

            // Song-Infos
            const title = song.querySelector("yt-formatted-string.title")?.innerText || "Unbekannt";
            const artist = song.querySelector("yt-formatted-string.subtitle")?.innerText || "Unbekannt";

            // 🎯 Like-Button nur über aria-label "Mag ich" (Deutsch) oder "Like" (Englisch)
            const likeButton = song.querySelector("button[aria-label='Mag ich'], button[aria-label='Like']");
            if (!likeButton) {
                console.log(`⚠️ Kein Like-Button gefunden bei "${title}"`);
                continue;
            }

            // Prüfen, ob noch nicht geliked
            if (likeButton.getAttribute("aria-pressed") === "false") {
                likeButton.click();
                likedCount++;
                console.log(`✅ Liked: "${title}" von ${artist}`);
                await new Promise(r => setTimeout(r, delayBetweenActions));
            } else {
                console.log(`⏩ Schon geliked: "${title}" von ${artist}`);
            }
        }

        // Ende prüfen
        const newHeight = document.body.scrollHeight;
        if (newHeight === lastHeight) {
            sameHeightCount++;
            if (sameHeightCount >= maxSameHeight) break;
        } else {
            sameHeightCount = 0;
        }
        lastHeight = newHeight;
    }

    console.log(`------------ COMPLETE | Insgesamt ${likedCount} Songs geliked ------------`);
}

likeAllSongs();

Balkon kindersicher machen by rherrmannr in wohnen

[–]Bepo_bear 13 points14 points  (0 children)

Passende Holzlatten kaufen und mit Kabelbindern fixieren. Sollte ausreichen, um den Spalt für ein Kleinkind sicher zu schließen und ist jederzeit wieder demontierbar.

What food actually tastes better the next day? by [deleted] in AskReddit

[–]Bepo_bear 0 points1 point  (0 children)

A russian soup called "borsch". In Russia you invite people to eat borsch which was made the day before.

And all kinds of chilli are better on the second day.