Context matters. Always. One person can use a word and it will be not racist, another can use the same term and it will be racist. You should ask the person what they define as “civilized”. Their reasoning is your answer.
- 0 Posts
- 16 Comments
Well, not quite. You’d have to have rights to the land to do that. Else someone could ride up and just take it from you.
So then it’s not worse?
If you do it for side money, you’re only accomplishing that by fucking someone else over. Otherwise you wouldn’t make money.
woop_woop@lemmy.worldto You Should Know@lemmy.world•YSK: The vote counts on reddit are completely made up.28·8 months agoWhy should we know this
woop_woop@lemmy.worldto No Stupid Questions@lemmy.world•At what point do you stop calling the years "two thousand and X" and start calling them "twenty X"?371·8 months ago2010, simply because of how english works.
If you say 2001 as twenty one, it’s confusing. Same goes all the way up to “twenty nine”.
And it’s more garbled and slower to say “twenty oh one” vs “two thousand one”, especially if you’re speaking quickly.
“Twenty ten” and up, however, starts making sense as a different piece of information and can be used easily.
woop_woop@lemmy.worldto No Stupid Questions@lemmy.world•Since cats don't pant like dogs how do they release trapped heat?58·10 months agoThrough their paws for one, and when they lick their coats, the saliva acts like sweat and cools them down as it evaporates. And if it’s really bad, they pant.
woop_woop@lemmy.worldto Python@programming.dev•Confused about multiplying floating-point & integer values2·10 months agoEh, degrees can be overrated. I don’t have one and it hasn’t hindered me at all. Ultimately, it depends what kind of work you want to get into and your drive to self learn, how quick you can pick things up, and adaptability. You got this.
woop_woop@lemmy.worldto Python@programming.dev•Confused about multiplying floating-point & integer values5·11 months agoThat’s fair, I was trying to be a bit vague since you’re learning and wanted to help point you to the solution. Went a little too vague with it 🙂
woop_woop@lemmy.worldto Python@programming.dev•Confused about multiplying floating-point & integer values3·11 months agoNo problem bud, good luck
woop_woop@lemmy.worldto Python@programming.dev•Confused about multiplying floating-point & integer values4·11 months agothe signature for the
input
function (that’s what it’s called instead of command) isdef input(__prompt: Any = ...) -> str
which means it’s always going to return a string.
So it starts off as a string, then becomes whatever is typed in
there’s no real way for something to do that automatically without a much more robust setup.
this snippet proves that
test_int = input('enter integer:') print(type(test_int)) test_float = input('enter float:') print(type(test_float)) test_str = input('enter string:') print(type(test_str)) >> <class 'str'> >> <class 'str'> >> <class 'str'>
it is the responsibility of your program to validate and do whatever you want with the result, and part of that can include casting it to a different type.
woop_woop@lemmy.worldto Python@programming.dev•Confused about multiplying floating-point & integer values12·11 months agoThe traceback should give you an idea of what’s going on, but you can test for yourself by checking the result of input:
test = input('enter number:') print(type(test))
Another question to ask is “why did you cast ‘h’ as a float?” And what happens if you just do h + r?
woop_woop@lemmy.worldto pics@lemmy.world•After weeks healing from foot injuries, finally allowed back in the hot tub tonight. [OC]211·11 months agoPicture of hot tub [oc]
There. Fixed the title for you.
woop_woop@lemmy.worldto Videos@lemmy.world•Am I the only one whose "shorts" feed is all basically softcore porn?17·1 year agoYou are correct, but LAX is also the Los Angeles airport code. He’s just fuckin with you
Yeah, I believe the phrase is short for the weather:
What’s the weather doing?
It is raining.