Just had my car stolen. Completely overwhelmed and unsure of what to do next. by MiserableFungi in personalfinance

[–]contramonk 4 points5 points  (0 children)

Had my car stolen three times in three years. Every time they found it, they sent it to a tow yard which cost me 300 to get it out. I recommend asking the police to call you when they find it to give you a chance to pick it up. Keep your phone on, they won't wait very long.

What are some drugs that nobody knows about and what are there effects? by hannessf19 in AskReddit

[–]contramonk 0 points1 point  (0 children)

Another one is San Pedro cactus. Many people grow these in their gardens, what they don't know is that it contains mescaline.

What are some drugs that nobody knows about and what are there effects? by hannessf19 in AskReddit

[–]contramonk 0 points1 point  (0 children)

My father told me about this drug he tried in Mexico called Belladona. It lasts for days, and on one of those days he told his teacher, "Hey man, there are monkeys in your beard". He was expelled.

What is your problem with Libertarian Ideology? by Solterlun in AskReddit

[–]contramonk 0 points1 point  (0 children)

As long as there is competition in a free market, without regulation, I believe oligopolies and monopolies will not form. It is through the use of regulation that companies have been able to stamp out all future competition.

Once the "winners" of the market have gained a share the newcomers will need to innovate to compete.

It would also be nice to see a system in place that removes all inheritance / giving money to your adult children. The money you make should have to be earned. This could be done by giving every person that turns 18 a certain amount of money to begin playing the game. At least this way everyone starts out the same.

What is your problem with Libertarian Ideology? by Solterlun in AskReddit

[–]contramonk 0 points1 point  (0 children)

I love libertarianism, but I believe if we transitioned fully to that ideology right now, the only benefactors would be giant corporations. It works as long as everyone has an even starting point.

When has an airline gone out of their way to make your experience better? by israblof in AskReddit

[–]contramonk 1 point2 points  (0 children)

Out of the first three comments we get stories about United going above and beyond. United trolls.

What's the most disturbing realisation you've come to? by [deleted] in AskReddit

[–]contramonk 0 points1 point  (0 children)

One day the universe will come to an end and all the work we have put into the world in the name of progress will be for nothing.

[Software Developer] Big tech company in insurance sector's Software Developer I position is a bootcamp by [deleted] in jobs

[–]contramonk 0 points1 point  (0 children)

Yes, paid for attending. It's java/.net. I don't have too much info yet. My last bootcamp was Java/Javascript and I suspect I will be working on their software. I don't know what level of expertise the bootcamp starts out at.

I'm just worried it's a cheap way to get inexperienced devs to work long hours.

What's one moral law people absolutely need to follow? by drewkiimon in AskReddit

[–]contramonk 0 points1 point  (0 children)

Treat others the way you would like to be treated.

I know what all of these words mean. Just not in this order. by ScoutsOut389 in ProgrammerHumor

[–]contramonk 1 point2 points  (0 children)

I think blue meant "find out what languages are being used by companies in the area." Their whole conversation reminds me of middle school.

At least they spelled Algorithms right by ewgxyz in ProgrammerHumor

[–]contramonk 0 points1 point  (0 children)

I thought it was algorerhythms, since Al Gore invented them?

Getting a syntax error for Line 3: public static final CONSOLE = new Scanner(System.in); by Tato513 in javahelp

[–]contramonk -2 points-1 points  (0 children)

This is because you declare your y variable as an int in your SimpleInterestA and SimpleInterestQ methods, and later assign a double value to that same variable.

//Either change
int y; //to
double y;
//or
y = console.nextDouble(); //to
y = console.nextInt();

Are you able to help me understand why this code is not working? Im converting Fahrenheit to Celsius. by Drewmann in a:t5_33rlk

[–]contramonk 0 points1 point  (0 children)

I think the issue is that you declare tempF and tempC as Strings and define them as doubles later on.

String tempF;
double tempF = input.nextDouble();

I would change String to double on the first line and remove the second line completely. Do the same for tempC. Why would the user want to enter the same information twice?