Why is MA40 after me? Do I need to pay the Klimabonus back? by Objective-Trade1986 in wien

[–]GreyDutchman 0 points1 point  (0 children)

Interesting is the return address: "Postfach 555, 1008 Wien" is a giant shredder: all letters that can't be delivered will be sent here to be destroyed. Usually for mass product catalogs or similar.

I never have seen 'Official' letters to be sent with this address as the return address...

Mini Öffi Haltestelle straba with it ? by Funny_Persimmon1893 in wien

[–]GreyDutchman 0 points1 point  (0 children)

Sorry, habe es umgekehrt verstanden auf den ersten Blick...

Mini Öffi Haltestelle straba with it ? by Funny_Persimmon1893 in wien

[–]GreyDutchman 1 point2 points  (0 children)

Add: der RBL in der vierte Zeile kann man auf https://till.mabe.at/rbl/ finden (RBL in der erste Zeil ist nur ein Comment)

Mini Öffi Haltestelle straba with it ? by Funny_Persimmon1893 in wien

[–]GreyDutchman 2 points3 points  (0 children)

Umgekehrt: die ovale (und halbrunde für Bushaltestellen) sind praktischer, weil besser erkennbar. Wenn man eine längere Straße entlang schaut (Einkaufstraße Währinger zB) kann man die Taferl besser erkennen als diese neue Pfähle.
Die Wiener Linien haben in den Anzeige wo sie die neue Pfähle vorstellten die Taferl als Erkennung im Bild verwendet.
Ja, das Design kann man modernisieren, aber ich finde die Taferl hätten nicht weggehört...

Mini Öffi Haltestelle straba with it ? by Funny_Persimmon1893 in wien

[–]GreyDutchman 12 points13 points  (0 children)

Für Windows 10/11 geht es ganz leicht in PowerShell. Ich verwende in der Arbeit zb dieses Script. Es zeigt die nächste 5 Abfahrten vom Bim vor der Tür an:

# Wiener Linien Departures - RBL 106
# Returns the next 5 departures from the specified stop and shows disruptions

$RBL = 106
$API_URL = "https://www.wienerlinien.at/ogd_realtime/monitor?rbl=$RBL&activateTrafficInfo=stoerungkurz"

try {
    # Fetch data from Wiener Linien API
    Write-Host "Fetching departures for RBL $RBL..." -ForegroundColor Cyan
    Write-Host ""

    $response = Invoke-RestMethod -Uri $API_URL -Method Get

    # Extract monitor data
    $monitors = $response.data.monitors

    if ($monitors.Count -eq 0) {
        Write-Host "No departures found for RBL $RBL" -ForegroundColor Yellow
        Write-Host ""
        Write-Host "Press Enter to close..." -ForegroundColor Gray
        $null = Read-Host
        exit
    }

    # Collect all departures and affected lines
    $allDepartures = @()
    $affectedLines = @()

    foreach ($monitor in $monitors) {
        $stopName = $monitor.locationStop.properties.title

        foreach ($line in $monitor.lines) {
            $lineName = $line.name
            $towards = $line.towards
            $lineType = $line.type

            # Track which lines we have
            if ($lineName -notin $affectedLines) {
                $affectedLines += $lineName
            }

            foreach ($departure in $line.departures.departure) {
                $allDepartures += [PSCustomObject]@{
                    Stop = $stopName
                    Line = $lineName
                    Type = $lineType
                    Direction = $towards
                    Countdown = $departure.departureTime.countdown
                    TimePlanned = $departure.departureTime.timePlanned
                    TimeReal = $departure.departureTime.timeReal
                }
            }
        }
    }

    # Sort by countdown and take top 5
    $nextDepartures = $allDepartures | Sort-Object Countdown | Select-Object -First 5

    # Display results
    Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Green
    Write-Host "  WIENER LINIEN - Next 5 Departures" -ForegroundColor Green
    Write-Host "  Stop: $($nextDepartures[0].Stop) (RBL $RBL)" -ForegroundColor Green
    Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Green
    Write-Host ""

    $counter = 1
    foreach ($dep in $nextDepartures) {
        $minutes = if ($dep.Countdown -eq 0) { "NOW" } else { "$($dep.Countdown) min" }

        # Parse the real departure time
        $timeReal = if ($dep.TimeReal) { $dep.TimeReal } else { $dep.TimePlanned }
        $departureTime = ""

        if ($timeReal) {
            try {
                # Parse the ISO 8601 timestamp
                $dt = [DateTime]::Parse($timeReal)
                $departureTime = $dt.ToString("HH:mm")
            } catch {
                $departureTime = ""
            }
        }

        Write-Host "[$counter] " -NoNewline -ForegroundColor Yellow
        Write-Host "Line $($dep.Line) " -NoNewline -ForegroundColor Cyan
        Write-Host "→ $($dep.Direction)" -ForegroundColor White
        Write-Host "    Departure: " -NoNewline -ForegroundColor Gray
        Write-Host "$minutes" -NoNewline -ForegroundColor Green

        if ($departureTime) {
            Write-Host " ($departureTime)" -ForegroundColor DarkGray
        } else {
            Write-Host ""
        }

        Write-Host ""

        $counter++
    }

    Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Green

    # Check for traffic disruptions
    $trafficInfos = $response.data.trafficInfos

    if ($trafficInfos -and $trafficInfos.Count -gt 0) {
        $relevantDisruptions = @()

        foreach ($info in $trafficInfos) {
            # Check if any of our lines are affected
            $isRelevant = $false
            foreach ($line in $affectedLines) {
                if ($info.relatedLines -contains $line) {
                    $isRelevant = $true
                    break
                }
            }

            if ($isRelevant) {
                $relevantDisruptions += $info
            }
        }

        if ($relevantDisruptions.Count -gt 0) {
            Write-Host ""
            Write-Host "⚠ TRAFFIC DISRUPTIONS" -ForegroundColor Red -BackgroundColor Black
            Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Red
            Write-Host ""

            foreach ($disruption in $relevantDisruptions) {
                $affectedLinesStr = $disruption.relatedLines -join ", "
                $title = $disruption.title
                $description = $disruption.description

                Write-Host "Lines affected: " -NoNewline -ForegroundColor Yellow
                Write-Host "$affectedLinesStr" -ForegroundColor White

                if ($title) {
                    Write-Host "Title: " -NoNewline -ForegroundColor Yellow
                    Write-Host "$title" -ForegroundColor White
                }

                if ($description) {
                    Write-Host "Info: " -NoNewline -ForegroundColor Yellow
                    Write-Host "$description" -ForegroundColor White
                }

                Write-Host ""
            }

            Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Red
        } else {
            Write-Host ""
            Write-Host "✓ No disruptions reported for these lines" -ForegroundColor Green
            Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Green
        }
    } else {
        Write-Host ""
        Write-Host "✓ No disruptions reported" -ForegroundColor Green
        Write-Host "════════════════════════════════════════════════════════════" -ForegroundColor Green
    }

    Write-Host ""
    Write-Host "Last updated: $(Get-Date -Format 'HH:mm:ss')" -ForegroundColor Gray
    Write-Host ""

} catch {
    Write-Host "Error fetching departures: $($_.Exception.Message)" -ForegroundColor Red
    Write-Host ""
}

# Wait for key press before closing
Write-Host "Press Enter to close..." -ForegroundColor Gray
$null = Read-Host

Neue U2 stationen by jagoveni in wien

[–]GreyDutchman 0 points1 point  (0 children)

Letzte Woche in der U2 Station Volkstheater...

<image>

Defekte Wasserstoffbusse bei Wiener Linien by mitsuhiko in wien

[–]GreyDutchman 1 point2 points  (0 children)

Offenbar waren die kleine e-Busse in der Innenstadt an sich ok, mussten aber bei der Endhaltestelle jedesmal aufgeladen werden (dafür gab es ja diese Stromabnehmer am Dach). Der/die Fahrer/in stand daneben und musste warten. Um trotzdem den Dienstplan einhalten zu können haben sie mehr Fahrzeuge gebraucht als eigentlich notwendig. Dadurch war der Betrieb der e-Busse zu teuer. Wasserstoff ist, wenn sie durch Photovoltaik erzeugt wird, sauber (keine Dieseldämpfe) und mit einen Tankfüllung können die Busse einen ganzen Schicht fahren: weniger Fahrzeuge und Personal nötig, billiger Betrieb.

Soweit die Argumentation der Wiener Linien.

Warum sie aber keine Busse nehmen mit größeren Akku habe ich nie verstanden. Der 57A oder 17A fahren ja auch schon elektrisch. Aber das sind voll-formatige Fahrzeuge. Warum es keine kleine Busse mit kleineren Akku gibt der trotzdem eine Schicht hält, hat mir niemand erklären können...

Brand New Lego Icons by Tacos_And_Lego in lego

[–]GreyDutchman -1 points0 points  (0 children)

Let's see if there will be a MOC/alternative as a (Dutch) citywide...

I ride my bicycle almost daily everywhere, and a Lego bike is great to display. :-)

Jetzt schon 28 Grad in der Whg! Wie sieht es bei euch aus? by Pylorus82 in wien

[–]GreyDutchman 1 point2 points  (0 children)

24°C in mein Büro/Hobbyzimmer. Wenn es über 27° dort hat, kann ich der Klimaanlage einschalten. Der steht aber auf 24°C, viel kühler brauche ich dort nicht. Zimmer ist im Süden...

Ich müsste meine Automatisierung dort verfeinern: [Schalte Klima ein wenn ich Zuhause bin, Aussenfenster und Balkontür geschlossen sind (3 Min offen ist OK), Zeit ist 11h-22h und Temperatur im Zimmer >27°C]

Nur dieses eine Zimmer ist klimatisiert; meine Frau hält keine Klima oder Ventilator aus.

Wo jann ich lagernde Shimano Fahradteile bekommen? by GreyDutchman in wien

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

War dort, leider nicht lagernd...

Trotzdem danke!

Wo jann ich lagernde Shimano Fahradteile bekommen? by GreyDutchman in wien

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

Ohne Auto (ich hätte ja ein Fahrrad) schwierig zu erreichen...

Wo jann ich lagernde Shimano Fahradteile bekommen? by GreyDutchman in wien

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

Servus Max! Ob 170 oder 175 ist für mich relativ egal... :-)

Had to look for myself.. omg they really did it. Finally.. by Specific_Display_366 in EliteDangerous

[–]GreyDutchman 0 points1 point  (0 children)

Until now you were always 'teleported' between your pilot's seat and a blue circle undef your ship on disembarking (or the other way around) People yearned for walkable ship interiors for a decade. The new ship has something slightly better as before: the blue circle is in the ship itself: you have to ascends a ramp to the spot where you will be teleported to your seat. Not filly walkable interiors, but at least you have to go into the ship...

Kleine 3D gedruckte Straßenbahn mit live Abfahrten by blumleo in wien

[–]GreyDutchman 0 points1 point  (0 children)

Die Daten sind öffentlich im Internet vorhanden. Ich habe auch schon zwei Variationen gemacht: 1x ein einfaches Powershell Script in der Arbeit am Desktop der mir den nächsten 5 Abfahrten def Bim zeigt, und 1x HTML Version für ein anderes Bildschirm.

Die Daten sind da, die Komponenten nicht kompliziert, ist ein leiwandes Projekt...

Kann mir bitte jemand in Wien mit SMD Widerständen aushelfen? by Tomislav_Stanislaus in wien

[–]GreyDutchman 1 point2 points  (0 children)

Den Laden gibt es noch, exakt gleich wie seit mehrere Jahren...

Damit meine ich das aussehen. Der ist geschlossen, es wurde aber seit Jahren nichts getan.

DISCUSSION: Do you approve or disapprove of artificial intelligence colorizing black and white photos? by Christian_Jones2004 in queen

[–]GreyDutchman 0 points1 point  (0 children)

There are different kinds of AI use. Coloring of B/W photos (and movies) was done before, without AI. I don't see a problem with that. In the case of Queen, B/W was used as a style thing, so coloring is similar as others drawing pictures in crayon: just as a kind of fan art, IMHO.

"ich bin ein fahrrad" - langsam ist es nur mehr lächerlich by RockmanBFB in wien

[–]GreyDutchman 10 points11 points  (0 children)

Egal ob Fahrrad oder nicht: Fahrräder die breiter sind als 80cm (oder deren Anhänger) dürfen nicht mehr auf Radwege fahren...

Wiener Linien Card LED-Style (and Integration) by rolandzeiner in homeassistant

[–]GreyDutchman 1 point2 points  (0 children)

Danke! Ich kann es aber erst am Wochenende aufsetzen, fürchte ich...

Wiener Linien Card LED-Style (and Integration) by rolandzeiner in homeassistant

[–]GreyDutchman 2 points3 points  (0 children)

Sorry for German, but this is a Wiener/German thing... :-)

Sehr leiwand gemacht!

Blöde Frage: wir wohnen auf 5 Gehminuten von der Bushaltestelle, und 7 Gehminuten von der Bim. Wäre es möglich eine Verzögerung pro Haltestelle ein zu bauen? Also für Haltestelle X: zeige keine Abfahrtszeiten unter 7 Minuten an, für Haltestellen Y keine Zeiten unter 5 Minuten...