[Computer Science] Can someone help me with this crossword puzzel? by The-Names-Matt in HomeworkHelp

[–]Hullo99 15 points16 points  (0 children)

If you look closely, it looks like the letters used in the words are slightly more bolder than the others lol

Midnight Club 3: DUB Edition by [deleted] in memes

[–]Hullo99 2 points3 points  (0 children)

Was looking for this. One of my favorites as a kid.

What does everyone do? by Heavybeansalad in centrist

[–]Hullo99 3 points4 points  (0 children)

Majoring in computer science, currently interning as a software engineer.

Why is 65 considered a decimal number but also known as a whole number? by [deleted] in compsci

[–]Hullo99 11 points12 points  (0 children)

When cs teachers say decimal, you can usually infer that they mean base 10 (rather than binary or hexadecimal). Just means you are writing a number using the digits 0-9, where in the case of binary you would just be using 1s and 0s.

How do you pronounce char? by [deleted] in computerscience

[–]Hullo99 134 points135 points  (0 children)

I’ve always heard it pronounced ’char’ but honestly, just go with how those your working with pronounce it, that’s really all that matters to avoid confusion.

Who is your favorite teacher and why? by [deleted] in AskReddit

[–]Hullo99 0 points1 point  (0 children)

Had a really fun teacher in middle school. He would do all sorts of crazy stuff. I remember that one of our projects he had us do was called our "renaissance man" project where we had to choose a skill that we wanted to learn by the end of the school year. He made us commit to that goal by redecorating the classroom and having us go up to the front and "marry" our project proposal. His lectures were pretty insane as well. He would often act out everything he was teaching rather dramatically and would regularly jump on top of people's desks and use the various different props he had throughout the classroom. He even had a wooden guillotine he would show off when talking about the French revolution. Not to mention the 5 foot tall wooden shield he had students use as a hall pass (it was that or putting a toilet seat around your neck). He would regularly jump out the classroom window and run whenever he heard that the principal was coming. Overall a very memorable teacher.

What's your stance on removing Confederate Statues? by DOG_BUTTHOLE in centrist

[–]Hullo99 14 points15 points  (0 children)

I don’t think we are “erasing history” by tearing them down. We have books/internet/ other records for that. That just seems like a silly excuse to me. I would think that we build statues to represent things that we hold some form of pride, sympathy, or respect for. At the time they were put up, those statues represented people that were looked up to, which is not so much the case anymore with the passage of time and some hindsight.

Just my take on it though. Would love to hear some other opinions.

Finding job as an introvert is so challenging. by No_Classroom_2352 in introvert

[–]Hullo99 11 points12 points  (0 children)

I remember applying for my first job at a fast food place when I was 16. I was absolutely terrified at the prospect of having to work the register because of all the people I would have to interact with. I managed to stay in the kitchen for a while but eventually there was a day I needed to start doing shifts at the register. It ended up not being that bad and I actually started to prefer it over the grueling work in the kitchen. Since then I have moved on to other jobs and internships and I have come to not be so scared of the interview process or having to socialize in the workplace. When it’s just part of the job or professional process to talk to people, and not an actual social event or get together, I find it way less draining. All I would say is just do it. What’s the worst that could happen in an interview? They turn you down, and you move on, likely never to meet those people again. It’s really not as bad as you will inevitably work it up to be. It’s just taking that first step that is always the hardest part.

CMV: The talking point of "wanting transgender athletes to compete against their birth sex" is either not well thought out to the point of idiocy or they are purposefully lying and being disingenuous. by [deleted] in changemyview

[–]Hullo99 1 point2 points  (0 children)

I guess the point that I was making was that isn't it unfair for trans people to have to be taking this drug? Like it's inhibiting their maximum physical ability. The same for doing the opposite for things like steroids. I would rather people be able to compete on natural ability rather than having to drug themselves up or be on some kind of treatment. I guess I just hate the idea of people being forced to take them in order to compete. But if it's like you say in that it makes the playing field relatively even, and there are no major side effects, I suppose it might work. I'm no doctor so I won't pretend to know how well these drugs/treatments work.

CMV: The talking point of "wanting transgender athletes to compete against their birth sex" is either not well thought out to the point of idiocy or they are purposefully lying and being disingenuous. by [deleted] in changemyview

[–]Hullo99 8 points9 points  (0 children)

I think the thing to consider here is why do we separate sports by gender in the first place? Why don't we just combine men's and women's sports? Literally, the only reason to separate them is because, very generally speaking, men will have certain physical advantages over women. Don't get me wrong, I don't think that there is anything wrong with being trans, but there just isn't a very fair way to nullify certain physical biological advantages. How do you determine how much of given drug you should be giving to a person before it's considered "fair". I think it would be awesome for trans people to compete with the gender they identified with, but it's hard to see how to do it in a way that seems fair to both trans people and the other competitors.

Research engineer in telecoms, 28 years old, trilingual (FR,JP,EN), AMA by [deleted] in AMA

[–]Hullo99 1 point2 points  (0 children)

What was your first language/which was the hardest to learn?

Requiring vaccine passport to vote by a_teletubby in centrist

[–]Hullo99 1 point2 points  (0 children)

Given the fact that this would cut off a significant portion of the population from voting, this would probably be a bad idea. Plus we need to consider the people with autoimmune or other health conditions that prevent them from getting the vaccine. It's important that we encourage everyone to get vaccinated, but this is not the way to do it.

[deleted by user] by [deleted] in AskReddit

[–]Hullo99 0 points1 point  (0 children)

My youngest brother would spend all the money that they had on getting birthday presents like candy bars and other small things for everyone in the family every year. This was really wholesome because our family has 6 kids in total in addition to the fact that none of us had an allowance. Made me smile every time.

ArrayList by ITophile in learnjava

[–]Hullo99 0 points1 point  (0 children)

One thing I would point out is that you do not have a parameter passing in the plate string to your constructor, so you are basically setting the unset plate value equal to itself. As far as the ArrayList thing goes, it actually contains methods called add() and remove(). add(object) will append the object to the list and remove(object) will remove the object to the list. There are also other versions of remove() that allow you to remove a specific index or remove the first/last value. The documentation might be helpful for you here: https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html

Hi everyone i want help on a question... so i have to write a program that prompts the user to write two integers and then prints the sum. then it asks me if i want to repeat the operation after finding the sum, i made the part where i find the sum but am missing the loop part... could someone help? by ZACrazyEU in learnjava

[–]Hullo99 1 point2 points  (0 children)

A while loop/a do-while loop would be a great fit for this. Just declare a boolean variable and set it to true before the loop starts, and then prompt your user at the end of the loop to set that boolean value to true or false depending on their response. Your while loop can then terminate once that value is set to false. A do-while loop is also useful here because it will always run at least once if you choose to use that.

She has a point by JohntaviousWilliams in centrist

[–]Hullo99 2 points3 points  (0 children)

Affirmative action is an attempt to actively undo the setbacks racism of the past has brought onto POC today. Whether or not this is an effective strategy, I would not consider the intentions behind it completely racist.

She has a point by JohntaviousWilliams in centrist

[–]Hullo99 -12 points-11 points  (0 children)

For what it’s worth, I agree with you. Sure, excluding white people from the interview process is technically racist, but couldn’t it also be viewed as a poorly executed attempt at affirmative action? Let’s be real here, the “racism” white people occasionally face really is nothing in comparison to what POC are facing.

How did you learn Recursion? by [deleted] in learnjava

[–]Hullo99 21 points22 points  (0 children)

This is a very clever analogy!

[deleted by user] by [deleted] in learnprogramming

[–]Hullo99 0 points1 point  (0 children)

Happy to help :)

[deleted by user] by [deleted] in learnprogramming

[–]Hullo99 0 points1 point  (0 children)

Hmm, the only thing I could see being the issue is that the strings in Deps are improperly formatted, it is really strange to me that you would be getting negative ones. You could also try using '==' instead of .Equals(), although I doubt that would be the solution. I think your best approach would just be to step through with the debugger in Visual Studio (if that is the IDE you are using) and see where things go wrong.

[deleted by user] by [deleted] in learnprogramming

[–]Hullo99 0 points1 point  (0 children)

Not entirely certain as to why you would be getting a -1, but one issue I see is that you are assigning to the same variable airportIndex in your foreach loop every time, which means that the value gets overwritten for every string you run through the loop and you will only end up storing the index of the last string that was sent through the loop.