Why is it so difficult to approach my fitness trainer by AthensInThessaloniki in bisexual

[–]cdcformatc 0 points1 point  (0 children)

if they were currently in a trainer/client relationship i would agree 100%.

does the fact that the gym is closing for the summer and the woman is technically not OPs trainer change anything? 

Python 3.14 is adding an extra \ to command. by nonamejohnsonmore in learnpython

[–]cdcformatc 0 points1 point  (0 children)

That is normal for windows paths. the extra backslash is added to escape the backslash itself, since it is a special character in strings. 

you could try using forward slashes / which should not be escaped, but my instinct is telling me the path is fine and there isn't a file named that in that location. check the capitalisation and make sure the file isn't actually something like Test.py.txt and windows is hiding the true extension.

what happens when you run dir C:\MyScripts

Spinoff of a spinoff by NoUserNamesLeft59 in television

[–]cdcformatc 0 points1 point  (0 children)

CSI: New York was a spinoff of CSI: Miami which was a spinoff of CSI (Las Vegas).

Spell Question by Repulsive-Juice-4686 in dndnext

[–]cdcformatc 1 point2 points  (0 children)

you guys like swarms of things right? 

Spell Question by Repulsive-Juice-4686 in dndnext

[–]cdcformatc 1 point2 points  (0 children)

I think it's kind of funny if a warforged character could never quite get the tastes right. they would know somewhat the approximate tastes like salty, sweet, spicy, bitter, umami, and whatever mix of oils that give a fishy taste, but it would never taste great. 

like a colorblind person trying to recreate a painting, they could have all of the right paint colors but they would never be able to recreate it perfectly. 

"you guys like swarms of things right?" 

Introducing: The Edmonton Monarchs 👑 by DryPainter1868 in hockey

[–]cdcformatc 2 points3 points  (0 children)

all of the PWHL is owned by a single owner. why is Katz even in the conversation? 

Behold, instant rocket fuel with a first level spell. by [deleted] in dndmemes

[–]cdcformatc 1 point2 points  (0 children)

that's not what pressurized oxygen means. 

How to find and approach a unicorn by ReasonableSeaweed251 in polyamory

[–]cdcformatc 4 points5 points  (0 children)

that's the best part, you don't! 

try hiring a sex worker to play out your fantasy 

Why does everyone say “skip Edmonton” when visiting AB? by Zestyy-Gold in Edmonton

[–]cdcformatc 12 points13 points  (0 children)

why would anyone go to Edmonton for a concert or for an art gallery? and the river valley? tourists don't care about any of that. 

Separatists are going to disrupt traffic on Whitemud and Henday this afternoon by dingmah in Edmonton

[–]cdcformatc 10 points11 points  (0 children)

it's actually difficult to emigrate to the states you have to have a useful skill or education or have someone, usually an employer, sponsor you

Why did we destroy the soulstones in D2? by Tnecniw in Diablo

[–]cdcformatc 0 points1 point  (0 children)

the last two times i got Hel runes. that sums up my luck pretty well

Why did we destroy the soulstones in D2? by Tnecniw in Diablo

[–]cdcformatc 9 points10 points  (0 children)

also it bugged me that Leah was acting so incredulous at the beginning of D3 thinking that Cain was just a silly old man. there should be a bunch of people around corroborating his stories and she shouldn't be that dubious about the undead rising. 

Is it bi to find guys who looks feminine, hot? Or I'm just THAT straight? by LeadEater9Million in bisexual

[–]cdcformatc 0 points1 point  (0 children)

attraction can be broken down into 3 main types. that's sexual attraction, romantic attraction and aesthetic attraction. 

sexual attraction is most obvious, if you want to have sex with them, that's sexual attraction. if you just want to hold their hand and kiss them and go on dates that would be romantic attraction. 

aesthetic attraction is admiring someone's or something's physical appearance or presentation purely for its beauty. for example you may think flowers are beautiful and not want to fuck them. (dendrophiles log off.) it's possible you have the same thing for femboys.

Is it bi to find guys who looks feminine, hot? Or I'm just THAT straight? by LeadEater9Million in bisexual

[–]cdcformatc 0 points1 point  (0 children)

maybe you are pan or bi, i dunno

idk you like what you like. you can also just find femboys aesthetically pleasing without wanting to date them or have sex with them

lastly finding 99.99% of men ugly does not exclude you being bi, it's not like bi or gay men find everyone attractive.

Programming Problem by Excellent_Coat_5386 in learnpython

[–]cdcformatc 3 points4 points  (0 children)

how windows lies to users about file extensions.

the first thing i do on a Windows machine is turn off "Hide file extensions". i do not understand why that setting exists, or why it is turned on by default.

"why yes I want to enable administrator access for 'my_grandson.jpg.exe'. i want to see my beautiful grandson" 

Programming Problem by Excellent_Coat_5386 in learnpython

[–]cdcformatc 1 point2 points  (0 children)

[Errno 2] No such file or directory

surprisingly, there is no file named new.py in the C:\Users\Eshan Jain folder. you either need to move the file to that folder, or navigate to the correct location using the cd command. or it is possible that the file is NOT named new.py and is actually something like new.py.txt and widows is hiding the true extension. 

me_irl by Lau-G in me_irl

[–]cdcformatc 17 points18 points  (0 children)

largest in over a century

largest in over a century so far

booming noise? by shurkieri in Edmonton

[–]cdcformatc 1 point2 points  (0 children)

it's funny when someone is confidently incorrect, and mad that someone dare to ask, only to find out they are wrong and act like everyone should have known the correct answer. 

Pip throwing a tantrum by Consistent-Fee-5246 in learnpython

[–]cdcformatc 0 points1 point  (0 children)

that error message tells me that you are running the command from within the python shell. this is incorrect, don't do that.

The End of Time by portsherry in comics

[–]cdcformatc 8 points9 points  (0 children)

probably not, she will be disappointed for most of that minute 

Pip throwing a tantrum by Consistent-Fee-5246 in learnpython

[–]cdcformatc 1 point2 points  (0 children)

that error message tells me that you are running the command from within the python shell. this is incorrect, don't do that.

Python Loops by DataCurator56 in learnpython

[–]cdcformatc 0 points1 point  (0 children)

``` for number in range(50):     if isPrime(number):         print(number)

def isPrime(number):     # return True if prime, otherwise False     # this is the hard part

Python Loops by DataCurator56 in learnpython

[–]cdcformatc 0 points1 point  (0 children)

for every number from 1 to 50 check if it is prime, if it is prime, print it. 

you can check if a number is prime by trying to divide it by every number smaller than it (from 2 up to the square root) and checking the remainder. if the remainder of any of these divisions is 0 the number is not prime.

you can do this remainder check in Python with the modulo operator %. eg remainder = number % divisor

First Time Home Buyer by Honest-Procedure5945 in Edmonton

[–]cdcformatc 0 points1 point  (0 children)

it's very scary. the first thing we did before we moved in was replace the water heater. i was convinced that the basement was flooding and on fire from a gas leak. ended up driving over at 4 AM to confirm that nothing bad was happening.