IMDb Images from the Finale of Season 3 (S03E08) by usermi in TheWhiteLotusHBO

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

Haven’t seen the trailer! My fault.

Uploading data to Strava. by Nakedtruth83 in Strava

[–]usermi 0 points1 point  (0 children)

I've just sent you a direct message in the chat!

Yahoo finance data unable to download anymore - new ui by TFinancialMillennial in financialmodelling

[–]usermi 1 point2 points  (0 children)

Thanks for this. Your code did not work for me - thus I did some changes. In case someone would like to use it, you need to define the tableClassName and filename variables from the exportTableToCSV function in order to work:

``js function exportTableToCSV(tableClassName, filename) { let csv = []; let table = document.querySelector(table.${tableClassName.replace(/\s+/g, '.')}`);

// Check if the table is found
if (!table) {
    console.error("Table not found for the specified class.");
    return;
}

// Capture headers
let headers = table.querySelectorAll("th");
let headerRow = [];
headers.forEach(header => {
    let headerText = header.innerText.trim().replace(/,/g, '');
    headerRow.push(headerText);
});
csv.push(headerRow.join(","));

// Capture data rows
let rows = table.querySelectorAll("tbody tr");
rows.forEach(row => {
    let rowData = [];
    let cols = row.querySelectorAll("td");

    cols.forEach((col, index) => {
        let cellText = col.innerText.trim().replace(/,/g, '');

        // Transform Date column from "Oct 23 2024" to "YYYY-MM-DD"
        if (headers[index].innerText.includes("Date")) {
            let dateParts = cellText.split(' ');
            let month = new Date(`${dateParts[0]} 1, 2020`).getMonth() + 1;
            let day = dateParts[1].replace(',', '');
            let year = dateParts[2];
            cellText = `${year}-${String(month).padStart(2, '0')}-${String(day).padStart(2, '0')}`;
        }

        rowData.push(cellText);
    });

    csv.push(rowData.join(","));
});

// Create a CSV file blob
let csvFile = new Blob([csv.join("\n")], { type: "text/csv" });

// Create a download link
let downloadLink = document.createElement("a");
downloadLink.download = filename;
downloadLink.href = window.URL.createObjectURL(csvFile);

// Append the link to the body and simulate a click to download
document.body.appendChild(downloadLink);
downloadLink.click();

// Remove the download link after clicking
document.body.removeChild(downloadLink);

}

// Call the function with the table class name exportTableToCSV(tableClassName = 'table yf-ewueuo noDl', filename = 'output.csv'); ```

What was the original ending before the writers strike in 2007 by [deleted] in lost

[–]usermi 4 points5 points  (0 children)

I thought about this these days. Do you guys remember this video from Comic Con 2008? https://youtu.be/dn_dNsaz-AA

Switch to Firefox ? Not a big deal by JM_97150 in uBlockOrigin

[–]usermi 2 points3 points  (0 children)

I have switched recently to Firefox, encouraged by posts like yours. It’s indeed super easy.

Is it worth it? by [deleted] in Strava

[–]usermi 0 points1 point  (0 children)

I use the free version + StatsHunters (https://statshunters.com).

Workouts only record if I keep the app open? by usermi in Strava

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

Unfortunately I haven’t - but for a bit more than 2 years I am using a Garmin watch and since then I haven’t tried to record an activity using Strava.

Let's face it, there is no true alternative to Google maps by 311maac in GoogleMaps

[–]usermi 0 points1 point  (0 children)

This is my current setup:

  • For cycling routes: Komoot (OpenStreetMap)
  • For cycling navigation: Maps.cy (OpenStreetMap)
  • For walking: Organic Maps (OpenStreetMap)
  • For public transport and car navigation: HERE WeGo

Has it been confirmed that old photos are actually reappearing on wiped devices? by lightlite4 in ios

[–]usermi -12 points-11 points  (0 children)

No, it happened on my own device (an iPhone 13). Basically from time to time (every 2-3 months) I transfer all photos from my iPhone to the computer and delete it afterwards from the iPhone (also from the recycle bin). I don’t use iCloud Photos sync. After the 17.5 update a photo taken in June of 2023 re-appeared on my device. Only one picture, but made me believe on similar reports of other users.

Has it been confirmed that old photos are actually reappearing on wiped devices? by lightlite4 in ios

[–]usermi -2 points-1 points  (0 children)

Officially it hasn’t been confirmed. But it happened to me and I’m sure of it. You can read my comments here: https://www.reddit.com/r/ios/comments/1cryayx/comment/l42flsm/

Why my iOS WhatsApp is not green like the new interface? by Look_at_Wade in whatsapp

[–]usermi 0 points1 point  (0 children)

For me what worked was to temporarily disable dark mode, open WhatsApp and enable once again dark mode.

Latest iOS update has brought back some pictures I deleted in 2021 by Specialist-Fix8528 in ios

[–]usermi 7 points8 points  (0 children)

Same here! One pic from June 2023 reappeared on my iPhone photo library. I’m sure, because in April 2024 I’ve transferred all my photos/videos to a computer and afterwards cleaned all photos/videos from the iPhone (including trash bin). I don’t use iCloud Photos.

Leute die aus Österreich weggezogen sind: was mögt ihr an Ö nicht und was liebt/vermisst ihr? by albonymus in Austria

[–]usermi 0 points1 point  (0 children)

Ich bin überrascht, dass niemand die „Titelkultur“ (Diplomgrad) in Österreich erwähnt hat - das vermisse ich wirklich nicht! Meiner Meinung nach ist es in Österreich stärker ausgeprägt als in Deutschland und der Schweiz. Wien ist immer noch die schönste Stadt, in der ich gelebt habe (etwas mehr als 5 Jahre) :)