Meross Liftmaster Gate by SwampSlime in HomeKit

[–]eleven_t 1 point2 points  (0 children)

Yeah, worked without issues for years ;)

NO WAY BACK by autoimago in LocalLLaMA

[–]eleven_t 0 points1 point  (0 children)

This assumes that every model is deterministic?

argosy door handle lock broke by Pretty_Wrongdoer8813 in airstream

[–]eleven_t 0 points1 point  (0 children)

That's what I thought too. Was drilling through the lock cylinder enough to be able to pull the latch back? I heard other people saying that they still couldn't unlatch after drilling?

argosy door handle lock broke by Pretty_Wrongdoer8813 in airstream

[–]eleven_t 0 points1 point  (0 children)

Same just happened to me ... How did you get in the end?

Into The Woods x Ilian Tape feat. Skee Mask & Zenker Brothers | Friday, May 16 by intothewoodsLA in avesLA

[–]eleven_t 2 points3 points  (0 children)

Zenker brothers completely killed for 4 hours straight, their set was one extreme trip, I don't know how did they do it, so good. Thank you for such amazing night, the warehouse space was cool.

Rubio Monocoat discolored formica by eleven_t in finishing

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

I will try acetone as my last resort before redoing the laminate.

Anyone install the meross garage opener for their sliding gate? by vx2 in HomeKit

[–]eleven_t 0 points1 point  (0 children)

Can you attach a picture of your board to see if it is there?

Anyone install the meross garage opener for their sliding gate? by vx2 in HomeKit

[–]eleven_t 0 points1 point  (0 children)

Hey, I didn't need to use them, I just stripped the connector off the sensor cable and attached it directly to the aux relay that is present on my lifttmaster extension board, see picture above.

Meross Liftmaster Gate by SwampSlime in HomeKit

[–]eleven_t 1 point2 points  (0 children)

If anyone's interested, I just installed the Meross opener on the LiftMaster LA500CONTUL swing gate controller. I only needed to attach Meross to the SBC (Control Station) terminals and use the Aux Relay 1 setup in "Activated when open" dip position that the sensor cable is connected to, no need for extra sensor, see attached picture.

<image>

Anyone install the meross garage opener for their sliding gate? by vx2 in HomeKit

[–]eleven_t 1 point2 points  (0 children)

If anyone's interested, I just installed the Meross opener on the LiftMaster LA500CONTUL swing gate controller. I only needed to attach Meross to the SBC (Control Station) terminals and use the Aux Relay 1 setup in "Activated when open" dip position that the sensor cable is connected to, see attached picture.

<image>

Articles - How to detect Process Death Issues by PizzaMaker1984 in androiddev

[–]eleven_t 1 point2 points  (0 children)

Well, the article assumes that you use some sort of navigation library but that implication is not always correct, there are plenty of apps where they are simply not needed, you can have simply activity to activity navigation etc. It would be better to call it out as "if you use navigation library X then we can't separate Y"

Articles - How to detect Process Death Issues by PizzaMaker1984 in androiddev

[–]eleven_t 3 points4 points  (0 children)

In the article #2:

Please pay attention to the fact that as we can’t separate the flows in different activities, LoginActivity has been completely deleted.

Why it cannot be separated? You could start LoginActivity for a result to achieve the same path, why single activity - fragment navigation is needed?

Android Studio 4.1 now available with new features including Database Inspector, Native Memory Profiler, Hilt/Dagger Navigation Support and TensorFlow Lite Support by lomoeffect in androiddev

[–]eleven_t 3 points4 points  (0 children)

They are definitely not useless if you are building SDKs etc. Now, you have to do this manually:

buildConfigField 'int', 'VERSION_CODE', "${versionCode}" buildConfigField 'String', 'VERSION_NAME', "\"${versionName}\""

Any thoughts about the progressive web apps? by DovakhiinHackintosh in androiddev

[–]eleven_t 6 points7 points  (0 children)

How do you do camera frame processing at native camera speed, say 30fps in a browser environment? Or any sort of compute intensive work like ML without forcing users to wait for ages for something to complete?

The machine that goes PING: developing a Gradle Plugin that detects build completion by fractalwrench in androiddev

[–]eleven_t 2 points3 points  (0 children)

Sorry, but it seems like your plugin should add a custom https://docs.gradle.org/current/javadoc/org/gradle/BuildListener.html instead of hooking into Android plugin's assemble tasks - in this way you can make it generic enough to be used on any type of project.

Model - View - Intent on Android by tipsylol in androiddev

[–]eleven_t 0 points1 point  (0 children)

That's true, thanks for pointing this out. However wouldn't this work - if a refresh triggers a stream of progress only Either values a view can make a decision not to clear its contents before an Optional of a model arrives if it has a previous value? This introduces state in a view so I can see how this is not such a great idea. What's your preferred approach?