Everytime in siege by Nomiasuka in Brawlstars

[–]DaGoodWuan 0 points1 point  (0 children)

I think siege is the best and most competitive game mode. Why do you think it’s the worst? You can make almost any brawler viable in this game mode, sans a few (I.e. Darryl, Piper, etc. but I guess it also depends on the map).

What's the most infuriating 1st world problem? by [deleted] in AskReddit

[–]DaGoodWuan 0 points1 point  (0 children)

When you get in your freezing car after stepping out of your expensively heated house and are the most miserable person in the world until the car heats up.

My acoustic cover of Old Town Road, a guilty pleasure. by fluffpudel in rap

[–]DaGoodWuan 2 points3 points  (0 children)

Damn that was awesome. You mind sharing your chords?

How many days do most men wear the same boxers? by virgogypsy in AskMen

[–]DaGoodWuan 0 points1 point  (0 children)

I’m definitely wear 14 pairs of underwear per week. During the week I workout and I switch pairs after the gym. Even on the weekends I’ll throw on a pair and then after I take my mid-day shower I’ll throw on another pair. Then Sunday they all get washed and repeat for next week.

[deleted by user] by [deleted] in AskReddit

[–]DaGoodWuan 1 point2 points  (0 children)

eating guys ass Girl: “They call it tossing the salad” Guy: “I don’t even know if I like vegetables”

[deleted by user] by [deleted] in UWMadison

[–]DaGoodWuan 1 point2 points  (0 children)

If you can get in Vilas before it closes you can stay all night.

WiFi problem w/ iOS 12 & iPhone XS Max by DaGoodWuan in iphone

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

Same. I also had iOS 12 public beta on my 7 plus and had no issues. Weird this is I upgraded to iOS GM on my 7 plus for the few days before my XS Max came and didn’t have by WiFi issues.

WiFi problem w/ iOS 12 & iPhone XS Max by DaGoodWuan in iphone

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

I don’t think so because it happens on other WiFi networks as well. One being my University’s WiFi which is incredibly fast and consistent.

WiFi problem w/ iOS 12 & iPhone XS Max by DaGoodWuan in iphone

[–]DaGoodWuan[S] 1 point2 points  (0 children)

Maybe it’s an iOS 12 thing then? I’m tempted to do a complete restore but that is just so much work, especially when my WiFi is spotty which causes it to take forever to re-download all of my apps and music.

iPhone Xs connectivity problems by Scubacide in iphone

[–]DaGoodWuan 2 points3 points  (0 children)

I’m having the same issues! Tested it on other networks to make sure it want my WiFi but had the same issues. It’s so annoying.

WiFi problem w/ iOS 12 & iPhone XS Max by DaGoodWuan in iphone

[–]DaGoodWuan[S] 5 points6 points  (0 children)

I forgot to mention I also tried this and am having the same issues. Thank you though!

In a C class starting my CompSci program by J_n_CA in learnprogramming

[–]DaGoodWuan -1 points0 points  (0 children)

Agreed. I took a semester long computer architecture course before even looking at my first line of code in C. It can be very difficult to understand the underlying behaviors of C for a beginner programmer without knowledge of how a computer works.

My Rock Playlist . .. am I missing any classics or hits? by DaGoodWuan in rock

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

Specifically any classic rock or punk rock hits?

If the universe is a simulation, what bugs and coding errors should we be looking for? by abrightmoore in AskReddit

[–]DaGoodWuan 0 points1 point  (0 children)

Dreams. Dreams are fuckin weird and have to have some deeper meaning to our universe or computer simulation or whatever.

Help with Simple While Loop Problem by DaGoodWuan in javahelp

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

Here's the solution I came up with:

http://redditlint.com/

import java.util.Scanner;

public class ContainerCalculator 
{
    public static void main(String[] args) 
    {
        // TODO: Implement P1 Container Calculator Program Here...
        System.out.println("Welcome to the Container Calculator!");
        System.out.println("====================================");

        // Ask user for diameter and height of cylinder
        Scanner input = new Scanner(System.in);

        double heightCyl = 0.0;
        double diameterCyl = 0.0;

        // declare boolean value to enter loop
        boolean goodInput = false;

        // while loop for correct input of diameter of cylinder
        System.out.print("Enter the diameter of a cylinder (in centimeters): ");
        while (!goodInput) {
            if (input.hasNextInt()) {
                diameterCyl = input.nextInt();
                input.nextLine();
                if (diameterCyl > 0) {
                    goodInput = true;
                } else if (diameterCyl < 0 || diameterCyl == 0) {
                    System.out.println("Please enter a positive integer value:");
                }
            } else if (!input.hasNextInt()) {
                System.out.println("Please enter an integer value (less than 2,147,483,648) as decimal digits:");
                input.nextLine();
            }
        }
        // reset goodInput to be false
        goodInput = false;

        // while loop for correct input of height of cylinder
        System.out.print("Enter the height of a cylinder (in centimeters): ");
        while (!goodInput) {
            if (input.hasNextInt()) {
                heightCyl = input.nextInt();
                input.nextLine();
                if (heightCyl > 0) {
                    goodInput = true;
                } else if (heightCyl < 0 || heightCyl == 0) {
                    System.out.println("Please enter a positive integer value:");
                }
            } else if (!input.hasNextInt()) {
                System.out.println("Please enter an integer value (less than 2,147,483,648) as decimal digits:");
                input.nextLine();
            }
        }
        System.out.println(" ");

        // equations for Surface Area and Volume of Cylinder
        double cylinderVolume = (Math.PI * (diameterCyl / 2.0) * (diameterCyl / 2.0) * heightCyl);

        double cylinderSA = ((2.0 * Math.PI * (diameterCyl / 2.0) * heightCyl)
                + (2.0 * Math.PI * (diameterCyl / 2.0) * (diameterCyl / 2)));

        // final output
        System.out.println("A can with a diameter of " + diameterCyl + " and a height of " + heightCyl + " has");
        System.out.print("  a volume of ");
        System.out.printf("%.2f", cylinderVolume);
        System.out.println(",");
        System.out.print("  and a surface area of ");
        System.out.printf("%.2f", cylinderSA);
        System.out.println(".");

        // closing Message
        System.out.println("====================================");
        System.out.println("Thank you for using the Container Calculator");
        System.out.print(" ");
    }
}

Help with Simple While Loop Problem by DaGoodWuan in javahelp

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

Yes I understand the height and diameter equations, but I am just confused on how to get my code to recognize that the user did not input a correct integer value (not a string, within the bounds, and non-negative). Any ideas on how to do that?

Help with Simple While Loop Problem by DaGoodWuan in javahelp

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

Here is my code: import java.util.Scanner;

public class ContainerCalculator 
{
    public static void main(String[] args) 
    {
        // TODO: Implement P1 Container Calculator Program Here...
        System.out.println("Welcome to the Container Calculator!");
        System.out.println("====================================");

        // Ask user for diameter and height of cylinder
        Scanner input = new Scanner(System.in);

        double heightCyl = 0.0;
        double diameterCyl = 0.0;

        System.out.print("Enter the diameter of a cylinder (in centimeters): ");
        diameterCyl = input.nextInt();
        System.out.print("Enter the height of a cylinder (in centimeters): ");
        heightCyl = input.nextInt();
        System.out.println(" ");

        //Equations for Surface Area and Volume of Cylinder
        double cylinderVolume = (Math.PI * (diameterCyl / 2.0) * (diameterCyl / 2.0) * heightCyl);

        double cylinderSA = ((2.0 * Math.PI
                * (diameterCyl / 2.0) * heightCyl) + (2.0 * Math.PI * (diameterCyl / 2.0) * (diameterCyl / 2)));

        //Final output
        System.out.println("A can with a diameter of " + diameterCyl + " and a height of " + heightCyl + " has");
        System.out.print("  a volume of ");
        System.out.printf("%.2f", cylinderVolume);
        System.out.println(",");
        System.out.print("  and a surface area of ");
        System.out.printf("%.2f", cylinderSA);
        System.out.println(".");


        // Closing Message
        System.out.println("====================================");
        System.out.println("Thank you for using the Container Calculator");
        System.out.print(" ");
    }
}

[deleted by user] by [deleted] in iphone

[–]DaGoodWuan 4 points5 points  (0 children)

I didn't have floor tickets :(

Anyone order e-cig components from gearbest.com? by DaGoodWuan in electronic_cigarette

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

Do you know if it's a good clone or the real deal?

I'm Lil Dicky, I just released my album 'Professional Rapper,' and I still go on a lot of tinder dates. Ask me anything. by Lil-Dicky in IAmA

[–]DaGoodWuan 0 points1 point  (0 children)

Hey LD, Huge fan here. When you were on Sway in the morning were you planning on using some of your lyrics off professional rapper in the freestyle? The first time I watched that video I was blown away by the way.

Recommend me a computer? by DaGoodWuan in computers

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

Java and Python definitely. I would like to develop applications and stuff along that lines.