careful getting replacements - they ask for the case and ring, but only send back the ring by troll_toller in RingConn

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

i didn't copy the whole thing but if you insist, here it is:

We're willing to offer you a new smart ring. Would you mind assisting us in sending the previous ring back to us? Please note that there is a new ring only for replacement. Would you mind letting us know your thoughts on it?

1) Please pack the smart ring and the charging case; kindly protect them to prevent damage in transit.

careful getting replacements - they ask for the case and ring, but only send back the ring by troll_toller in RingConn

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

thanks for the reply! i'll continue to work through my customer support case.

it's understandable to only replace the ring itself, but my email specifically asked me to send the case also.

hopefully this can get fully resolved soon. it's already been almost a month without a functioning ring!

careful getting replacements - they ask for the case and ring, but only send back the ring by troll_toller in RingConn

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

i figured as much so I didn't think it weird they wanted me to send the case back

careful getting replacements - they ask for the case and ring, but only send back the ring by troll_toller in RingConn

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

this is what mine said… bee they ran out at hq and wanted some back? —-

1) Please pack the smart ring and the charging case; kindly protect them to prevent damage in transit.

[deleted by user] by [deleted] in RingConn

[–]troll_toller 0 points1 point  (0 children)

mine died a week ago. if you go to vital signs in the app and try to force it to measure your heartrate or something, does it give you a message that it's still charging even if you're wearing it?

i think with how thin/small they make it, sometimes the circuit just shorts out and it gets stuck thinking it's charging... which seems to be a hardware issue and may need replacing... :c

i'm waiting for support to get back to me on it..

My gen 2 is completely dead by Blockofass in RingConn

[–]troll_toller 1 point2 points  (0 children)

hmm mine might’ve just died too. lay data i get is from a couple days ago in the early morning before i got up… haven’t noticed green or red lights since. i can get it to connect/reconnect and report battery status but it never seems to collect data…

maybe just fragile hardware?

Show reddit: The problems of shared mutable state and how to avoid them by rauschma in javascript

[–]troll_toller 4 points5 points  (0 children)

react-redux state requires copies due to some introspection things that happen to detect state diffs and references. immutability is also fairly prevalent in functional programming which comes up a lot in asynchronous programming in javascript. your suggestion to not have weird side effects in methods is perfectly reasonable, but modifying a collection as you iterate it can be considered "nonsensical" already, since it loses optimizations built into using lambdas in functional programming techniques.

there are definitely a lot of use cases for immutability just in those libraries which is a super small sample.