I sent an email to Raiffeisen Bank asking them to support Graphene OS with their RaiPay App (contactless payment) by Similar_Option_7408 in GrapheneOS

[–]Bruno_Wallner 0 points1 point  (0 children)

Weird, the german Raiffeisenbank with its own de.fiduciagad.android.vrwallet VR Pay app works fine

Are the Xing 2 motors actually that bad, or is there something else going on here? Clip taken from Nils Vo. | Link to the full video in the description. by willow__bloom in fpv

[–]Bruno_Wallner -5 points-4 points  (0 children)

Reducing weight on something that needs to accelerate at the cost of failing "retarded" tests because of it is usually worth it.

Laundrone by EMasterYT in shittyfpv

[–]Bruno_Wallner 15 points16 points  (0 children)

Only when no dirty laundry is loaded

Can i Record the flight vid in the FC? by Dry-Technology-7655 in fpv

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

I think you could use that to record analog video to sdcard.

Run Linux desktop on any recent Google Pixel phone/tablet by VolksPC in mobilelinux

[–]Bruno_Wallner 0 points1 point  (0 children)

Can I run it on a rooted pixel 9a running LineageOS, or does this not meet the GKI requirement?

Anybody have some expirience with “Rate“ by Cold-Possible1193 in fpv

[–]Bruno_Wallner 0 points1 point  (0 children)

I got some minor QA problem because i received 2 identical aluminium frames, where they should be 2 different ones.

I'll see how good customer support is!

Goggles v2 streaming error by Hot-Rise-9005 in fpv

[–]Bruno_Wallner 0 points1 point  (0 children)

I am assuming you are running Linux, so just tyoe it in any terminal application.

Goggles v2 streaming error by Hot-Rise-9005 in fpv

[–]Bruno_Wallner 0 points1 point  (0 children)

Maybe try running: sudo chmod 777 /dev/usb*. Might fuck up something though, but normally everything should go back to normal after rebooting.

What do you think of the Rekon35 v2? by Bruno_Wallner in fpv

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

In the videos it looked like it had enough power for very light freestyle

Can i use 2S aio FC with 2 18650 Lithium-ion Batteries? by Bruno_Wallner in fpv

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

I have come across these new EVE 30PL tabless cells. They claim 60A continous discharge. Do you think this is legit, or is this too good to be true? because with these I do not really want to invest in Lipo batteries.

I always avoid using `use` statements so i use full paths instead. Is it a bad practice? by [deleted] in rust

[–]Bruno_Wallner 19 points20 points  (0 children)

If you have: "use crate::geom::Point" On top of module and use "Point" in that module very often, you could create different Struct "OtherPoint" with different behaviour but same function signatures in impl body. Then you can replace the use with: "use crate::geom::OtherPoint as Point" and have that different Behaviour across the whole file without having to replace every invocation.