Because you took one look at the Animu Waifus of Halforums Academy and noped right the fuck out never to return I remember!How the fuck have I never seen that before?
I'm in.You were helpful, we are now all planning to visit Gasbandit stay for a visit and get ink together.
HAI'm in.
wrong laughing man
Only if you can get it to spin like that.wrong laughing man
View attachment 29701
Yes, I know.wrong laughing man
He'd have to get a tattooetrope.Only if you can get it to spin like that.
I just did the same in Universal Orlando. It wasn't bad. I'm hoping the Burger King trials pay off, because it would be nice to grab a fast food burger again.I found out a place nearby sells an Impossible burger, so decided to try it out. Experience-wise I'd say it's somewhat similar to a cheap cafeteria burger, but with better fixings. Not worth $10, but I wouldn't mind trying it again at some other place.
We haven't gotten to that verse yet. We're too busy swallowing more damn animals.But do you NOW know why she swallowed that fly?
"Dress Code: Radio"I have a job interview in the morning. My friend who helped get me this interview apparently deemed it necessary to text me to remind me to "dress nice and wear normal shoes" tonight.
Look, just because I've spent the last 16 years wearing hawaiian shirts and sandals to work doesn't mean I've forgotten that everywhere isn't like that
She's dead, of course.We haven't gotten to that verse yet. We're too busy swallowing more damn animals.
Moral of the story: don't eat a goddamn zooShe's dead, of course.
good luck!I have a job interview in the morning. My friend who helped get me this interview apparently deemed it necessary to text me to remind me to "dress nice and wear normal shoes" tonight.
Look, just because I've spent the last 16 years wearing hawaiian shirts and sandals to work doesn't mean I've forgotten that everywhere isn't like that
I think it went pretty well. The guys interviewing me were not programming guys, and basically didn't ask me anything more complicated than "Do you know how to program" and "do you think you could pick up Python fairly easily?" Yeah, I had courses on C and J++ at NMT and A&M, I'm pretty confident I could get to grips with Python without much problemgood luck!
Dress for the job you want, and all that."Dress Code: Radio"
You figured out YAML. You can pick up Python."do you think you could pick up Python fairly easily?"
I thought it was LaurelDress for the job you want, and all that.
You figured out YAML. You can pick up Python.
--Patrick
Heh, that was kinda along the general lines of my thinking, too.You figured out YAML. You can pick up Python.
Python emphasizs "human readability". You should be fine.Heh, that was kinda along the general lines of my thinking, too.
# Python program to check if the input number is prime or not
num = 407
# take input from the user
# num = int(input("Enter a number: "))
# prime numbers are greater than 1
if num > 1:
# check for factors
for i in range(2,num):
if (num % i) == 0:
print(num,"is not a prime number")
print(i,"times",num//i,"is",num)
break
else:
print(num,"is a prime number")
# if input number is less than
# or equal to 1, it is not prime
else:
print(num,"is not a prime number")
Yeah, I glanced at it a bit years ago, it seemed pretty easy. Though, in your example, is the num=int(input line supposed to be #commented out like that? That's the only thing confusing me a bit.Python emphasizs "human readability". You should be fine.
I mean, I don't know python, and I find the code very easy to figure out.
Exactly. They hard-coded it above, but the commented-out line would get it from user input.Yeah, I glanced at it a bit years ago, it seemed pretty easy. Though, in your example, is the num=int(input line supposed to be #commented out like that? That's the only thing confusing me a bit.
Ah, I see, he's checking 407 explicitly, instead of getting user input, but leaving the line in there for easy switching later.Exactly. They hard-coded it above, but the commented-out line would get it from user input.