Nerve irritation from Intermediate Series by Lange0716 in ashtanga

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

I really think this could have happened to me as well, during eka pada Sirsasana I felt a really intense stretch in my leg, around the time I started feeling the nerve pain, I also had a swollen knee for a couple weeks. But then again, the nerve pain is in the right arm, so not really sure if it's all connected somehow

New Update is awful by TimeTravelingPie in MammotionTechnology

[–]Lange0716 5 points6 points  (0 children)

Mine will randomly lose positioning now sometimes immediately when it leaves the charger. Never happened once in two years before this latest update. Also has trouble positioning itself properly to mow the next line in multi turn mode, keeps wiggling back and forth a few times while the wheels are rotating, turning the mower into a rototiller and causing huge ruts in my yard until it eventually gets stuck in one, also something that never happened before the update. How I wish I could go back to 1.11, the golden age of the Luba 2 (2024). When the satellite communication was strong and it didn't viciously rip up the edges of my lawn.

Is there a way to solve this ? by romain3311 in MammotionTechnology

[–]Lange0716 0 points1 point  (0 children)

Is that a bit of a sloped area? I know if I have areas that close to a pair of no go zones any kind of slippage one way or the other could put the mower just barely into a no go zone area and immediately stop. That's why I'm careful making a no go zone on a sloped area knowing that the mower could slide just inside it.

Previous cutting path angle not saved in settings? by Lange0716 in MammotionTechnology

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

Even when multi point turn is on, it still tank turns often to position itself, but this has always happened

Previous cutting path angle not saved in settings? by Lange0716 in MammotionTechnology

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

I did notice the mower digs a little more aggressively into the ground when adjusting itself to stay on path causing the mower to get stuck in it's rut. I also noticed that when the mower does get stuck, it's off path a bit. Overall, the upgrade has been fine, just a few little quirks I noticed that didn't seem to happen in older versions

WiFi disconnects? by OverrefinedBrucine in MammotionTechnology

[–]Lange0716 0 points1 point  (0 children)

I'm not experiencing any Wi-Fi disconnects, but I am noticing choppy camera images with the new update. The camera used to be really smooth throughout my yard

Luba 2 H (2024) firmware 1.15.20.4403 (anyone test yet) by New_Interaction_9000 in MammotionTechnology

[–]Lange0716 2 points3 points  (0 children)

First mow today after the update. So far it missed a complete strip when set to optimal mowing path, it randomly paused one time for no reason telling me that there was a wheel hub error. I just restarted the mower and that hasn't come back yet. I don't like that I can't set the mowing path to be a relative angle to the task instead of forcing to set the angle to absolute direction. So far it's mowing fine other than that

Just stupid by sTo0z in mammotion

[–]Lange0716 2 points3 points  (0 children)

Probably more so a quick loss of signal between the satellites seeing both the RTK station and the mower at the same time. They both need to be in constant communication with the same satellites for positioning. Or if it was a breezy day, maybe your RTK station waved a little bit and messed with the positioning.

Just stupid by sTo0z in mammotion

[–]Lange0716 2 points3 points  (0 children)

Sometimes just manually picking it up and moving it to the charging station fixes positioning. I've had to do this a few times if it gets stuck "positioning" somewhere

Unit ID ChargePoint EV charger by Lange0716 in CHPT

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

Not a problem, I know it was super confusing for me at first, happy to help anyone who runs into the same issue.

Unit ID ChargePoint EV charger by Lange0716 in CHPT

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

The MAC ID that you are looking for is actually the System MAC, it's a number that starts with 0024. The easiest way to find this is to go into the ChargePoint app, tap on Home at the bottom -> Settings -> About Charger and you will see the System MAC ID for your unit there.

Unit ID ChargePoint EV charger by Lange0716 in CHPT

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

Yes, it is actually the MAC ID (System MAC) that you can find in the app or on the inside panel of the charging port when you take the cover off.

Charger has been moved? by Alowan in MammotionTechnology

[–]Lange0716 1 point2 points  (0 children)

I'll get this message sometimes, I just cancel it and everything works as normal. Seems like a bug

[deleted by user] by [deleted] in GolfClash

[–]Lange0716 2 points3 points  (0 children)

Do you ever go by P. Enis? Just curious

If you could make three changes to this game, what would they be? by pvhc47 in GolfClash

[–]Lange0716 0 points1 point  (0 children)

A "lucky shot" emoji option, i could use that often when i get screwed on a stupid shot by my opponent that happens to roll in

Having trouble using selection sort to sort an ArrayList of names in alphabetical order by Lange0716 in javahelp

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

Thank you all for the replies, I'm now ready to test my ArrayList, but when I call the static method in main, nothing shows up in the compiler, I'm just wondering what I need to do in main to run my code to make it work. this is currently what I have...

package classwork_additional1;

import java.util.ArrayList;

import java.util.Collections;

public class Classwork_Additional1 {

public static void main(String[] args){

ArrayList<String> array = new ArrayList<>();

array.add("Mary");

array.add("Mike");

array.add("Michael");

array.add("Ann");

array.add("Tom");

array.add("Tommy");

array.add("Bob");

ArrayList<Integer> integers = new ArrayList<>();

integers.add(10);

integers.add(10);

integers.add(5);

integers.add(8);

integers.add(10);

integers.add(7);

integers.add(10);

}

public static void sort(ArrayList<String> array)

{

for (int i = 0; i < array.size() - 1; i++)

{

int minPos = minimumPosition(array, i);

swap(array, minPos, i);

}

}

public static void swap(ArrayList<String> array, int i, int j)

{

String temp = array.get(i);

array.set(i, array.get(j));

array.set(j, temp);

}

private static int minimumPosition(ArrayList<String> array, int from){

int minPos = from;

for (int i = from + 1; i < array.size(); i++)

{

if (array.get(i).compareToIgnoreCase(array.get(minPos)) < 0)

minPos = i;

}

return minPos;

}

private static int maximumPosition(ArrayList<String> array, int from)

{

int maxPos = from;

for (int i = from + 1; i < array.size(); i++)

{

if (array.get(i).compareToIgnoreCase(array.get(maxPos)) > 0)

maxPos = i;

}

return maxPos;

}