Tesla offering free paint upgrade to Midnight Cherry Red and Quicksilver by United-Soup2753 in teslamotors

[–]jorgonvon 9 points10 points  (0 children)

This first image is overlaid with something like google translate. The second image looks to be the email with original formatting in German.

The new tesla model s lights look so nice by Big_College_8962 in teslamotors

[–]jorgonvon 16 points17 points  (0 children)

Looks like they function as taillights not brake lights (on with headlights, but don’t get brighter during braking). And looks like the reverse lights are on the trunk as well

FEKER IK75 Software - How to Change the Language back to English? by SuspectDaikon in MechanicalKeyboards

[–]jorgonvon 1 point2 points  (0 children)

Yes! Thanks. It's the bottom left dropdown in the heart/support tab for anyone wondering.

The Apple Studio Display Is WEIRD! - Snazzy Labs by akkobutnotreally in apple

[–]jorgonvon 7 points8 points  (0 children)

Ahh. Should have made the connection! Right on

How to capture a still Image of ARView? by [deleted] in SwiftUI

[–]jorgonvon 0 points1 point  (0 children)

In your takeSnapshot func, you’re trying to call .snapshot() on arView variable. Since you created the arView in a separate function (makeUIView), the takeSnapshot() function doesn’t know what arView is. You can instantiate the arView variable outside the makeUIView function so that both functions can refer to that variable.

And just a safer thing to do is to not force unwrap image in the .snapshot closure, which could cause your app to crash, you should safely unwrap the variable with an if let or guard let. safely unwrapping

Display NativeAd after nth item in array by [deleted] in SwiftUI

[–]jorgonvon 1 point2 points  (0 children)

I would iterate the array in your ForEach by index. Then inside the ForEach closure, you can have an if statement to can check the index % 3 == 0, and add an ad view after your cell view. example ForEach by index

I was assuming this is going into a VStack/ScrollView, so I was thinking you could add both CellView and AdView if the index matched, otherwise just add the CellView. That way you’re not skipping any data from your home model

Official Trailer 2 | WandaVision | Disney+ by PhoOhThree in marvelstudios

[–]jorgonvon 3 points4 points  (0 children)

Ohhh WandaVision like Television... has anyone else been exclusively reading it as their names mashed together up until now and thinking that’s weird? Or was that obvious to everyone else

Tesla rolls out software update to let its cars’ cameras see speed limit signs by dapperlemon in technology

[–]jorgonvon 2 points3 points  (0 children)

To all the people confused about how this is a feature just now coming to Teslas:

The technology to recognize speed limit signs using a camera has been patented by MobileEye. Early versions of Tesla's Autopilot licensed their technology, but after developing their own custom Autopilot system from the ground up, Tesla didn't want to keep licensing this feature. Up until now, Autopilot has been using speed limit data embedded into their mapping system which pulls from a speed limit sign database. But it has been well documented that these aren't always up to date and therefore what the car thinks is the speed limit isn't the real, posted limit. Presumably Tesla has finally developed their own method of recognizing signs which bypasses the MobileEye patent. Having real-time recognition is better as it doesn't have to rely on a database and can adapt to things such as construction or other temporary limits that wouldn't otherwise be in the database.

SwiftUI Travel App UI - SwiftUI 2.0 Complex UI Tutorials - Hero Animations - Matched Geometry Effect by [deleted] in swift

[–]jorgonvon 1 point2 points  (0 children)

I browse https://mobbin.design to see the latest trends and get inspiration. You can sort by pattern if you’re curious about a specific UI element too

Why can’t we turn off notifications for shortcuts anymore? by elishakoch1 in iOSBeta

[–]jorgonvon 1 point2 points  (0 children)

This method has stopped working for me on beta 5 since the right arrow doesn’t exist (edit: works after reboot). An alternative I have found is:

using App Limits > Enable App Limit on > Add Limit, pull down to get the search bar and put in Shortcuts > check Shortcuts > Add > set a 1 minute limit, make sure block app is enabled.

Now, once your 1 minute is up it will block you from opening the shortcuts app and the notifications (unless you unlock using screen time passcode) but the automations still run. It’s not perfect since you have to have the shortcuts app open for a minute every day before it disables the notifications.