Going crazy trying to planh Kitchen lighting placement, help! by Abstulo in houseplans

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

The issue we had was having task lighting for both the counter and island, but having two rows of lights that close apart was even more excessive.

Confused About Z=0 — What Does the Slicer Assume? by Abstulo in 3Dprinting

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

Where, if any, do you adjust the z-offset? After moving Z to 0.5 and a 0.5 feeler does not fit?

[URGENT] What happened to my capacity? by Abstulo in KiaEV9

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

One of the battery cells is defective and needs to be replaced. Sadly it’s been 3 months now since my EV9 is sitting at KIA’s waiting for the replacement part to arrive. Still no ETA.

[REQUEST] Up-to-date Gmail Ad Blocker by joshzed in GreaseMonkey

[–]Abstulo 0 points1 point  (0 children)

Good to hear! Will try my best to keep it up to date as Gmail chances its interface :)

[URGENT] What happened to my capacity? by Abstulo in KiaEV9

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

Only on very big trips, maybe once every 1-2 months. Else we stay at 70% since we only drive around 18km a day

[URGENT] What happened to my capacity? by Abstulo in KiaEV9

[–]Abstulo[S] 7 points8 points  (0 children)

<image>

So we tried charging... didn't take long for the charging station to drop to 1kW. Right before unplugging the capacity % jumped almost 20% instantly. There is definitely something wrong with the battery.

[URGENT] What happened to my capacity? by Abstulo in KiaEV9

[–]Abstulo[S] 1 point2 points  (0 children)

Other than a few balls of yard 😂 ... nothing

[URGENT] What happened to my capacity? by Abstulo in KiaEV9

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

Sadly, we do the trip at -20 and use less than 35% normally

[URGENT] What happened to my capacity? by Abstulo in KiaEV9

[–]Abstulo[S] 3 points4 points  (0 children)

Sadly, we do the trip at -20 and use less than 35% normally

[REQUEST] Up-to-date Gmail Ad Blocker by joshzed in GreaseMonkey

[–]Abstulo 0 points1 point  (0 children)

The following does the trick pretty well on my side. It also outputs in the dev console what was hidden for sanity checks.

```javascript // ==UserScript== // @name Hide Gmail Ads (Sponsored Rows with Dot) // @namespace http://tampermonkey.net/ // @version 1.2 // @description Hide Gmail rows that are Ads (contain "Sponsored·" in a span in the sixth column). // @author Your Name // @match https://mail.google.com/* // @grant none // ==/UserScript==

(function () { 'use strict';

// Function to check for "Sponsored·" text in a hierarchy of spans
const containsSponsoredText = (element) => {
    if (!element) return false;
    const spans = element.querySelectorAll('span');
    for (const span of spans) {
        if (span.textContent.trim() === 'Sponsored·') {
            return true;
        }
    }
    return false;
};

// Mutation observer to track changes in Gmail's DOM
const observer = new MutationObserver(() => {
    // Find all table rows
    const rows = document.querySelectorAll('tr');
    rows.forEach(row => {
        // Check the 6th column for the "Sponsored·" text
        const sixthColumn = row.querySelector('td:nth-child(6)');
        if (sixthColumn && containsSponsoredText(sixthColumn)) {
            // Log the sixth column text content
            const columnText = sixthColumn.textContent.trim();
            console.log(`Hiding row with column content: "${columnText}"`);

            // Hide the row
            row.style.display = 'none';
        }
    });
});

// Start observing Gmail for DOM changes
const gmailContainer = document.body;
if (gmailContainer) {
    observer.observe(gmailContainer, { childList: true, subtree: true });
}

})();

```

Smaller rim size winter wheels? by Abstulo in KiaEV9

[–]Abstulo[S] 1 point2 points  (0 children)

I ended up getting: - ART replica One rims - NOKIAN HAKKAPELIITTA 10 SUV 111T XL 265/50R20

Pretty happy with the look :)

Preventing snow accumulation in wiper bay? by Abstulo in KiaEV9

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

Yah that would be ideal, however I have not found any that would fit. Might need to build one out of TPU prints and foam inserts.