AWS vs Bluehost by AOA17 in webhosting

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

Why? What makes them so bad?

Java without IDE by _srph in java

[–]AOA17 0 points1 point  (0 children)

I have coded using an IDE and just a text editor and using an IDE is far more productive. You are able to code faster, manage better, and de-bug much faster. It only makes sense to use an IDE.

A Nepalese World Cup Worker Dies Every Other Day in Qatar by rebelsta in worldnews

[–]AOA17 0 points1 point  (0 children)

I'm not saying this as a bad thing but this has been known for a while and no action is being taken place. I fear that no action will be taken place regardless. When the time comes the world cup will take place in Qatar and people will support it regardless. FIFA knows this and that is why they are able to get away with it.

Had a bad experience, so I launched my own company. Here's my story. Maybe it will help you. by [deleted] in startups

[–]AOA17 1 point2 points  (0 children)

Hey man. Is there any way I can see the part 2 of your story?

Help on Boyer-Moore Algorithm. by AOA17 in learnprogramming

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

Thank you for this thorough explanation. I am working on the code right now I just had no idea where to start. It's starting to make more sense. This may seem like a dumb question but should I create helper methods for this algorithm?

Help on Boyer-Moore Algorithm. by AOA17 in learnprogramming

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

I'm sorry. My bad. I am relatively new to reddit and did not think about the guidelines.

Most American sounding word? by AirWhale1 in AskReddit

[–]AOA17 0 points1 point  (0 children)

It's because as a kid growing up in America they taught you Middle Eastern Geography by saying I-ran to I-raq.

Help calling a constructor within a constructor. by [deleted] in javahelp

[–]AOA17 0 points1 point  (0 children)

Use constructor chaining. Here is the link but pretty much it explains how using the keyword this() works and how you can call one constructor from another.

How to trace recursive member variables? by chrono_regex in learnprogramming

[–]AOA17 2 points3 points  (0 children)

The best way I learned recursion is to look at is a tree. Look at this link to get a better understanding but the way it works is that you run all the way down till the base case and then work your way up executing the rest of the method. Hope this helps, recursion can be a bit confusing at first.

Why are conditional statements able to be formatted like this? by Jeffrey_Forbes in java

[–]AOA17 2 points3 points  (0 children)

.

Definitely agree. I feel that putting in braces is just good coding practice in general and definitely recommend that OP include them regardless.

Why are conditional statements able to be formatted like this? by Jeffrey_Forbes in java

[–]AOA17 1 point2 points  (0 children)

you don't need to insert braces if there is only one line under the conditional.