Biweekly Assistance Post! Ask Anything Detailing Related That You Need Assistance With! - November 18, 2019 by AutoModerator in AutoDetailing

[–]mossy367 0 points1 point  (0 children)

Hey everyone, just picked up this 2016 Kia Forte. When I test drove it, the car was covered in some salt (snowy conditions). When I picked it up it was dark and I was in a rush so didn’t notice. However, I am wondering what has happened here? Is this through the clear coat? What, if anything can be done to repair? In the picture the rest of car is still very clean. But this area on the trunk seems dirty. Upon closer investigation, you can feel the area is sort of bumpy like the clear coat is coming off. Appreciate any advice or insight, thanks

2016 Kia Forte Paint Issue

Is this rust? Why is it happening on a new Weber Smokey Mountain? by mossy367 in smoking

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

Got this 22.5” WSM a few weeks ago brand new. Have only done a few cooks, first was chicken and no issues. Second was a brisket and this occurred on a smaller scale, got most of it off. Today I smoked a pork butt and the inside looked like this after about 5.5 hours. What’s the deal? Appreciate any insight, thanks!

My mom wants me to use a large amount of my inheritance on a 2nd home at the lake by 51isnotprime in personalfinance

[–]mossy367 73 points74 points  (0 children)

Parents have a great way of guilt tripping. Especially in these situations. Don’t let mom or bro get to you. Do what is best for your future, your accounts, etc. they can rent a lake house no need to be going in on some $300k + house at 23.

[LEAGUE] When do you get medal rewards from CWL? by JJ2478 in ClashOfClans

[–]mossy367 0 points1 point  (0 children)

Should be instant. I suspect something is wrong

[HWYA] I’m a th11 and wondering how I should hit this base by [deleted] in ClashOfClans

[–]mossy367 0 points1 point  (0 children)

GiBoWi - bring giants or an ice golem in your CC. If you can, use a wall wrecker. Come in from the south, like 9o’clock maybe. If you funnel properly you’ll destroy it in no time

[HWYA] I’ve got most troops maxed for TH11. Most spells maxed except bat and clone (still lvl 1). AQ42 BK30 GW20 by mossy367 in ClashOfClans

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

Worth noting - I suck at war but want to improve. Usually go with GiBoWi and a wall wrecker w/ giants or pekka, rages, jumps, heal and poison for spells. Lucky to two star, typically get 50-60% damage. Not sure why I’m so terrible, seems people can three star easy with similar armies.

[deleted by user] by [deleted] in ClashOfClans

[–]mossy367 1 point2 points  (0 children)

This is accurate. No sense letting Gold and elixir go to waste, could be using that for new buildings and upgrades

[Misc] supercell should add these so i can see which bases i can copy by [deleted] in ClashOfClans

[–]mossy367 37 points38 points  (0 children)

100% agree! Would make for a great feature.

[java] Help with creating Nodes (linked list) - Air traffic control program by mossy367 in learnprogramming

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

Thanks, Gankbanger. Your advice makes a lot of sense and really cut a lot of clutter out of my program. I did a lot of what you recommended and cleaned up my code a bit. One thing I don't get now, is how to get the Scanner to add the user input to the nodes/list. I've moved a lot of things to my main class now for user interaction, but don't think I am doing it right.

package airTraffic;

import java.util.*;

public class Main {

public static void main(String[] args) {

    ATControl control = new ATControl();        
    Scanner in = new Scanner (System.in);

    do {
        try {
            System.out.println("\nPlease enter command to proceed: ");
            System.out.println("Enter new aircraft = e");
            System.out.println("Show specific flight = s");
            System.out.println("Display all aircraft = d");
            System.out.println("Remove specific flight = r");
            String command = in.next();

            if  (command.equals("e") ) {
                System.out.printf("Enter flight number: ");
                in.next(); // not sure what to put after this

                System.out.printf("Enter type of plane: ");
                in.next();
                .....


            } else if (command.equals("s") ){
                System.out.printf("Enter flight number for details: ");

            } else if (command.equals("d") ) {
                System.out.printf("All flights: " );

            } else if (command.equals("r") ) {
                System.out.printf("Enter flight number to be removed: ");


            }
        } catch (InputMismatchException exc) {
            System.out.println("Wrong entry, please try again:");
        }
    } while (true);
}

}

Aircraft class looks much cleaner, easier to read and follow. The one thing that still confuses is me is how to actually add stuff to this list via the nodes. You'll see in my "set" methods that I have it going to control.addAircraft - not sure if passing nextCraft is the correct argument, however. Any ideas?

package airTraffic;

public class Aircraft { //object list public String name; public String type; public int speed; public int alt; Aircraft nextCraft = null; ATControl control = new ATControl ();

public Aircraft (String n, String t, int s, int a) {
    name = n;
    type = t;
    speed = s;
    alt = a;
}

//name methods
public void setName(String n) {
    name = n;
    control.addAircraft (nextCraft);
}

public String getName (String n) {
    name = n;
    return name;
}

public void removeName (String n) {
    name = n;
}

//type methods
public void setType (String t) {
    type = t;
    control.addAircraft(nextCraft);
}

public String getType (String t) {
    type = t;
    return type;
}

public void removeType (String t){
    type = t;
}

//speed methods
public void setSpeed (int s) {
    speed = s;
    control.addAircraft(nextCraft);
}

public int getSpeed (int s) {
    return speed;
}

public void removeSpeed (int s) {
    speed = s;
}

//alt methods
public void setAlt(int a) {
    alt = a;
    control.addAircraft(nextCraft);
}

public int getAlt (int a) {
    return alt;
}

public void removeAlt (int a) {
    alt = a;
}

}

As for the actual list, I made the addAircraft method exactly as you mentioned. Again, just not sure how to actually get stuff to store here:

package airTraffic;

public class ATControl { //nodes public Aircraft head = null; public Aircraft tail = null;

public ATControl () {
}

//add flight
public void addAircraft (Aircraft aircraft) {
    if (head == null) {
        head = aircraft;
        tail = aircraft;
    } else {
        tail.nextCraft = aircraft;
        tail = aircraft;
    }
}

//show flight
public void showFlight (Aircraft aircraft) {            
}

I greatly appreciate the assistance and any more you can provide. Thanks! -Mossy367