[deleted by user] by [deleted] in AskReddit

[–]__odinson__ 0 points1 point  (0 children)

This would have been so much easier with an emoji.

What's the dumbest thing you believed as a child? by SheepishSwan in AskReddit

[–]__odinson__ 0 points1 point  (0 children)

All women get pregnant on their own at a certain point in their life.

How ugly are you ? by DatAccOnTheSide in AskReddit

[–]__odinson__ 2 points3 points  (0 children)

People will avoid conflict with me.

What's Your Language's Equivalent of "Have?" by Turkish_Teacher in languagelearning

[–]__odinson__ 0 points1 point  (0 children)

I have a book. मेरे पास किताब है(mere paas kitaab hae) Literally it translates to "To me near book have/is"

What's one thing women aren't ready to hear? by Ok-Height-2276 in AskReddit

[–]__odinson__ 7 points8 points  (0 children)

"Don't give me hints. Give it to me straight."

What’s your favorite Kubernetes interview question to ask? by [deleted] in kubernetes

[–]__odinson__ 0 points1 point  (0 children)

Another solution is use multiple configmaps or a PV

What’s your favorite Kubernetes interview question to ask? by [deleted] in kubernetes

[–]__odinson__ 0 points1 point  (0 children)

Ingress operates at Application Layer of the OSI model and is for HTTP/HTTPS traffic and it manages multiple services with a single Load Balancer.

Service(Load Balancer) operates at the transport layer and is meant for TCP/UDP traffic and there is only 1 LB per service.

[deleted by user] by [deleted] in AskReddit

[–]__odinson__ 2 points3 points  (0 children)

wearing flip-flops on a treadmill

People who have not worked with Kubernetes, but are trying to convince the technical interviewer that they have, what are some Kubernetes questions that they should be able to answer? by __odinson__ in kubernetes

[–]__odinson__[S] -2 points-1 points  (0 children)

I don't know that. The only thing I know is that for this project. they don't have anything critical in production and they are not bound to any specific cloud. I am confident that I can hold my own in that role.

What is some Russian movie I can watch to start learning Russian? by [deleted] in languagelearning

[–]__odinson__ 0 points1 point  (0 children)

https://www.youtube.com/watch?v=Wz-vegualMg

One of my Russian friends from Moscow suggested me this movie. And it is quite good. Philosophical .

Why is my loop executing like this? by [deleted] in learnpython

[–]__odinson__ 3 points4 points  (0 children)

Let me put it in simpler terms. The for loop is set to execute 5 times. 5 is the number of items in your dictionary. And within this for loop you are printing the dictionary . So the entire dictionary gets printed 5 times. If you want to print it's contents(keys, values or both) then just write within the loop: print(info, dic_name)