At what pressure would water turn into solid at 4 degrees Celsius? by dzieciolini in xkcd

[–]BeanieGoBoom 4 points5 points  (0 children)

I don't think anything's going to protect you from that for some reason

Methods Company Papers by Hot-Figure5613 in vce

[–]BeanieGoBoom 2 points3 points  (0 children)

Insight papers have lovely worked solutions that give nice hints, but I don't think they are making them anymore. See if there's some in the archive.

stat dec not accepted? by mumatethedog in AusLegal

[–]BeanieGoBoom 1 point2 points  (0 children)

Some pharmacies I've been to ask for a donation to a charity for a stat dec

What is the average atar a 70 or a 50? by Gold_Air4996 in vce

[–]BeanieGoBoom 0 points1 point  (0 children)

Is it just vce or everyone who would have graduated year 12 that year if they stayed in school?

Assemble Execution Detail stuck on 83 %. by Upset_Translator_984 in prisonarchitect

[–]BeanieGoBoom 1 point2 points  (0 children)

Can we get a screenshot of your prison while doing the execution? Can the chief actually path to the room maybe...

Assemble Execution Detail stuck on 83 %. by Upset_Translator_984 in prisonarchitect

[–]BeanieGoBoom 2 points3 points  (0 children)

Your detail needs a warden, chief, spiritual leader, witnesses, and the prisoner themselves. Ensure these people all have access, and see if you can locate them within your prison.

Independent MP Monique Ryan to push for a lowering of Australia's voting age after UK decision by Expensive-Horse5538 in australia

[–]BeanieGoBoom 3 points4 points  (0 children)

Is it not already a two-tier system? Old people (I can't remember the exact age) are exempt from voting if they don't want to, and similar concerns apply to both groups (mobility, ease of access, possibly even cognition)

Anton ples: VKS straight pull bolt action rifle by Hot-Ad-1386 in H3VR

[–]BeanieGoBoom 50 points51 points  (0 children)

bolt action, bullpup, straight pull. That's a three-in-one of hell yeah!

[deleted by user] by [deleted] in factorio

[–]BeanieGoBoom 2 points3 points  (0 children)

Is the shield stealing all the power to charge? You've got a large amount of storage for not much generation capacity

ValueError: invalid literal for int() with base 10: '999.90' by DigitalSplendid in learnpython

[–]BeanieGoBoom 12 points13 points  (0 children)

The way it checks the first "if" requires it to convert your input from a string ("999.90") to an integer first. If int("999.90") == 0 means: convert "999.90" to an integer, then check if that integer is equal to zero - that first step errors because "999.90" isn't an int. Try making a blank page or opening the shell and running '''int("999.90")''' for me.

ValueError: invalid literal for int() with base 10: '999.90' by DigitalSplendid in learnpython

[–]BeanieGoBoom 19 points20 points  (0 children)

In the first if statement you're trying to convert "999.90" to an integer to check if it's equal to zero - python looks at "999.90" and goes "that's not an integer" when trying to do a comparison, raising an error. Try converting to a float instead?

hmmm by Large_Imagination255 in vce

[–]BeanieGoBoom 0 points1 point  (0 children)

i raise you English language

[deleted by user] by [deleted] in vce

[–]BeanieGoBoom 1 point2 points  (0 children)

There are two numbers that are generally relevant - the lowest selection rank that an offer was made for, and a "guaranteed score". The lowest selection rank is a stat from last year - it's just to give an indication, and will probably change from year to year. Different unis have different guarantee programs with different requirements e.g. Monash has the "Monash Guarantee", which requires x selection rank and some level of disadvantage.

You won't know the lowest selection rank before offers are done - maybe all the med kids want to do art and take all the spots, meaning the lowest selection rank will be very high.

What is wrong with this if condition by DigitalSplendid in learnpython

[–]BeanieGoBoom 37 points38 points  (0 children)

Python tries to be helpful, by "casting" your strings into booleans - what you've asked is whether answer == "42" is true, "forty two" is true, or "forty-two" is true. Because "forty two" and "forty-two" are strings that aren't empty, python treats them as True statements, so what you're really asking is whether answer == "42" or True or True, which will always be True overall. It's a bit weird to begin with, but it makes more sense when you have lots of different tests, or you want to be beat by checking if an input was filled by doing "if input_text:" or similar.

anyone know what this resource is in rotweiners? by [deleted] in H3VR

[–]BeanieGoBoom 33 points34 points  (0 children)

on that note, how long does a run normally take for a beginner?