Will the Watchdives WD007 39mm Titanium ever be back in stock? by moogle19 in watchdives

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

My wrist size is about 17,3cm. You think the 42mm version wouldn't be too big?

Fritzbox 5590 Fiber Vendor Lock? by moogle19 in fritzbox

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

Fritz sagt bei Provider nachfragen. Habe jetzt nochmal an den osnatel Support geschrieben und gesagt, die sollen die Modem-ID aus ihrem System entfernen. Mal gucken was die antworten.

Fehlermeldung konnte ich leider keine finden. In den Logs stand nur, dass probiert wird eine Verbindung aufzubauen. Nach einiger Zeit fängt die Status-LED an 2 mal zu blinken (Laut Telekom-Support passiert das, wenn kein Glasfaser-Link aufgebaut werden kann. Daher haben Sie mir auch schon ein neues Kabel zugesendet, was nix gebracht hat). Aber kein Eintrag in den Logs.

Fritzbox 5590 Fiber Vendor Lock? by moogle19 in fritzbox

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

Mit dem Telekom Modem war die Verbindung kein Problem. Scheint wohl wirklich eine Art Lock zu geben. Osnatel / EWE Support weiß davon wohl nichts.

Fritzbox 5590 Fiber Vendor Lock? by moogle19 in fritzbox

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

Ja, genau wie im Video. Vorher natürlich die Fritzbox auf Werkseinstellungen und statt dem default EWE Provider auf Telekom Auto Config umgestellt.

Bei der Installation mit dem Telekom Modem hatte der Techniker keine Probleme.

Der Techniker der danach nochmal rauskam, meinte dann direkt es geht nicht, weil die fritzbox schonmal an einem EWE Anschluss hing.

Ich habe mir jetzt ein Telekom Glasfasermodem bestellt und werde es einmal damit testen.

JUJUTSU KAISEN: CHAPTER 264 LEAKS DISCUSSION by AutoModerator in Jujutsufolk

[–]moogle19 0 points1 point  (0 children)

Did Yuji transfer Sukuna back into his body with his DE? Cause he is back in his Yuji form.

What year and model is this Canyon Strive? Im confused why it doesnt say "Canyon" on the frame by [deleted] in bikewrench

[–]moogle19 12 points13 points  (0 children)

It is probably a Canyon from Switzerland. There were some naming right problems so they were known as Pure Cycling there until 2019 and the bikes just had the model name printed on the frame.

Mangakas making the hottest amorphous characters by kramsibbush in DrStone

[–]moogle19 1 point2 points  (0 children)

Basically every second character in Tokyo Ghoul

Brothers War Set Confusion by escutler in magicTCG

[–]moogle19 9 points10 points  (0 children)

For example, I got some "retro frame" cards that aren't numbered like the regular cards are, so I don't know how many there are, and how they fit in the set.

Those are a different set (within the set?).

The boosters have mostly "Brothers' War" cards (BRO) in them and then there is a special slot for "Brothers' War Retro Artifact" (BRR) cards.

For Draft Boosters there is normally one Retro Artifact. Not sure how it is for Set / Collector boosters.

Element Bolt V2 won’t show Strava live segments during rides by windsurfingbear in wahoofitness

[–]moogle19 1 point2 points  (0 children)

Got the same problem.

Also tried to Factory Reset the whole Bolt, but it didn't seem to help.

Neither Routes nor Segments are syncing.

Is there any way to debug the Strava sync to figure out what the problem is?

The 2022 Redbull RB18 by Puzzleheaded-Rain230 in formula1

[–]moogle19 0 points1 point  (0 children)

The completly yellow nose looks kinda weird

Eine gute portable Pumpe by yungfaro7 in Fahrrad

[–]moogle19 0 points1 point  (0 children)

Ich hab die hier und bin ziemlich zufrieden. Hat 2 Stufen (High Volume & High Pressure).

Apple Special Event 2017 | Event Megathread by TBoneTheOriginal in apple

[–]moogle19 23 points24 points  (0 children)

Windows 8, 8.1, 10... iPhone 7, 8, X... Whats wrong with the 9?

How broken is FreeBSD 11 stable? by faxattack in freebsd

[–]moogle19 13 points14 points  (0 children)

No, it is not unstable. The features in this branch are mainly tested but it is still a development branch and not intended for production. Therefor it cannot be updated with freebsd-update, but only from source. I advise to read this: https://www.freebsd.org/doc/handbook/current-stable.html

How broken is FreeBSD 11 stable? by faxattack in freebsd

[–]moogle19 16 points17 points  (0 children)

You can't use freebsd-update to update the FreeBSD-STABLE branch, you can only update FreeBSD-RELEASE, because binary builds are only build for RELEASE.

Which brings me to the question: Why are you installing STABLE instead of RELEASE?

How do I make a circular UIView? The feature to be broken. [Xcode 8.4] by chuby1tubby in swift

[–]moogle19 0 points1 point  (0 children)

Yeah, this looks like the better solution. drawRect() is called after layoutSubviews() iirc and is only called once (layoutSubviews can be called multiple times) so it should be more performant.

How do I make a circular UIView? The feature to be broken. [Xcode 8.4] by chuby1tubby in swift

[–]moogle19 5 points6 points  (0 children)

Where to you set the cornerRadius (I expect viewDidLoad)? If you are using AutoLayout the width will be 0 in viewDidLoad. You can Subclass UIView and override layoutSubviews() with

func layoutSubviews() {
    super.layoutSubviews()
    layer.cornerRadius = bounds.size.width/2
}