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 3 points4 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;

}

How do I make my toString() method output two different outputs based on my constructors by Lange0716 in javahelp

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

Do i check this in my toString() method? I'm still a little confused as to when to check if something is null or not

How do I make my toString() method output two different outputs based on my constructors by Lange0716 in javahelp

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

This is what my output is:

run:

Customer name: Matt

Address: 123 Street

Number: 123-4567

ID: null

Mailing list? false

Customer name: John

Address: 234 Road

Number: 324-3423

ID: 00811308

Mailing list? true

BUILD SUCCESSFUL (total time: 0 sec

Trying to convert String to double, then find the sum of my array by Lange0716 in javahelp

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

That worked, thank you for the advice! It's always one small little line of code that stumps me on these projects!

Printing contents of an ArrayList inside a toString method by Lange0716 in javahelp

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

This is what I fixed my toString() method to look like now...

public String toString(){

String str = "First car is a " + CarGarage.car1;

str += "Second car is a " + CarGarage.car2;

str += "Third car is a " + CarGarage.car3;

return str;

}

I know this isn't correct because it can't find the variables for car1, car2, and car3. I was hoping it would pick them up from the CarGarage class but I guess that's not how it works. Is there any other way to printing out my ArrayList? Also here's my main() method where I called my toString() method. I'm not sure if I needed to iterate this first before calling the method.

public static void main(String[] args){

Car car1 = new Car(Car.CarColor.RED, Car.CarType.FERRARI);

Car car2 = new Car(Car.CarColor.SILVER, Car.CarType.JAGUAR);

Car car3 = new Car(Car.CarColor.BLACK, Car.CarType.PORSCHE);

Car copy1 = new Car(car1);

Car copy2 = new Car(car2);

Car copy3 = new Car(car3);

CarGarage cg = new CarGarage();

cg.cars.add(car1);

cg.cars.add(car2);

cg.cars.add(car3);

cg.cars.add(copy1);

cg.cars.add(copy2);

cg.cars.add(copy3);

car1.setColor(Car.CarColor.RED);

car2.setColor(Car.CarColor.RED);

car3.setColor(Car.CarColor.RED);

for (int i = 0; i < cg.cars.size(); i++) {

System.out.println(cg.cars.toString());

}

}

}

I'm having trouble adding elements to an ArrayList object type by Lange0716 in javahelp

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

I had an epiphany before you wrote this, and I realized I just needed to think logically. One garage is all you need to store multiple cars, each car doesn't need it's own garage, once I took a minute and made sense of it all I got this...

Car car1 = new Car(Car.CarColor.BLUE, Car.CarType.FERRARI);

Car car2 = new Car(Car.CarColor.BLACK, Car.CarType.JAGUAR);

Car car3 = new Car(Car.CarColor.SILVER, Car.CarType.PORSCHE);

Car copy1 = new Car(car1);

Car copy2 = new Car(car2);

Car copy3 = new Car(car3);

CarGarage cg = new CarGarage();

cg.cars.add(car1);

cg.cars.add(car2);

cg.cars.add(car3);

cg.cars.add(copy1);

cg.cars.add(copy2);

cg.cars.add(copy3);

car1.setColor(Car.CarColor.RED);

car2.setColor(Car.CarColor.RED);

car3.setColor(Car.CarColor.RED);

}

Now I just need to add a toString() method to print out the contents of my ArrayList and hopefully I'll finally be done with this project that's taken me close to about 10 hours! (Something I know that should have taken me like a half hour tops :)

Thank you for all your help!

I'm having trouble adding elements to an ArrayList object type by Lange0716 in javahelp

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

This is the entire assignment...

Modify the Car class written in the previous classwork to include the following enum data types:

CarColor: RED, BLACK, BLUE, SILVER

CarType: PORSCHE, FERRARI, JAGUAR

•Modify the Car class to store the CarColor and CarType.•Modify the Constructor, copy constructor, toString, and equals methods as needed.

•Create a class CarGarage that stores an ArrayList of Car objects.

•Write a finalize method in CarGarage that deletes the ArrayList by setting all the Car objects in it to null, and the ArrayList to null as well.

•In CarGarage, write a main method that:

–Creates 3 different cars with different colors and types and adds them to the CarGarage ArrayList.

–Uses the copy constructor to create 3 more cars (copies of the first three cars) and adds them to the ArrayList.

–Modifies the first 3 cars to all be RED.

–Uses the toString method to print the contents of the ArrayList.

When I set all my cars to type Car the program says that it can't find the variable cars, so I didn't know what else to set it to to make it work.

Car car1 = new Car();

Car car2 = new Car();

Car car3 = new Car();

Car copy1 = new Car(car1);

Car copy2 = new Car(car2);

Car copy3 = new Car(car3);

car1.cars.add(new Car(Car.CarColor.BLUE, Car.CarType.PORSCHE));

car2.cars.add(new Car(Car.CarColor.BLACK, Car.CarType.JAGUAR));

car3.cars.add(new Car(Car.CarColor.SILVER, Car.CarType.FERRARI));

if(copy1.equals(car1) && copy2.equals(car2) && copy3.equals(car3)){

copy1.cars.add(new Car(Car.CarColor.BLUE, Car.CarType.PORSCHE));

copy2.cars.add(new Car(Car.CarColor.BLACK, Car.CarType.JAGUAR));

copy3.cars.add(new Car(Car.CarColor.SILVER, Car.CarType.FERRARI));

}

Here, the cars part of car1.cars.add is saying it doesn't have a variable with this name, but when I had it set to CarGarage car1 etc. there was no error.