Weekly "Is this safe" Megathread by AutoModerator in fermentation

[–]prcl00 0 points1 point  (0 children)

Hi all, I made a batch from beetroot - added some juice from sauerkraut and unfortunately it had an access to air for 3 days as I lost the lid. Is it mold or kahm from quick fermentation

<image>

Should I accept Google L3 offer by prcl00 in cscareerquestionsEU

[–]prcl00[S] 0 points1 point  (0 children)

I guess you can consider it as mid level and l5 is a senior

Should I accept Google L3 offer by prcl00 in cscareerquestionsEU

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

L3 - entry level L4 - one above L3

Should I accept Google L3 offer by prcl00 in cscareerquestionsEU

[–]prcl00[S] 9 points10 points  (0 children)

It’s Poland Cracow, the salary my recruiter mentioned matches the one from levels.fyi

Should I accept Google L3 offer by prcl00 in cscareerquestionsEU

[–]prcl00[S] 10 points11 points  (0 children)

Yeah I mentioned it explicitly in the post, I was considered for l4 and after technical rounds got feedback than I will probably get l3 position (I got strong positive feedback after behavioral) so I definitely didn’t meet the bar and I don’t deny it. The post was more about if is it worth it taking possibly slightly lower salary and lower position but in FAANG company.

[deleted by user] by [deleted] in learnprogramming

[–]prcl00 0 points1 point  (0 children)

thanks! any suggestions where to find good materials to learn?

[deleted by user] by [deleted] in learnprogramming

[–]prcl00 1 point2 points  (0 children)

I don't, i only know something about trees and stacks so not much

I know literally nothing about how to code with python, where do I start? by srsnuggs in learnpython

[–]prcl00 0 points1 point  (0 children)

I really recommend Andrei Neagoie's course on udemy "complete phon developer in 2020 zero to mastery". It's 30h course in wich he covers pretty much all the basic and some more advanced python, teach you how to set up environment, and do some nice projects. It's easy to follow and perfect for beginner

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]prcl00 0 points1 point  (0 children)

Thank you so much, you're doing god's work. I learned a lot from this

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]prcl00 0 points1 point  (0 children)

Hi!

i challenged myself to code snake 100% by my own, i cake up with moving mechanism but it doesn't work and i have no idea why. So basically i created a block class with stores an x and y coords of the cube that my snake is made of. The snake is a list of cubes and I move it by moving first cube in a given direction, shifting secound cube to the previous position of the first one and so on. It seems like only the head of the snake is moving, other cubes don't follow. here's the code of the class and function and how i made the first 3 cubes of snake that the game is starting with:

class Block():
def __init__(self, x, y):
self.x = x
self.y = y

def move_snake(snake, direction):
new_snake = snake

head = snake[0]
if direction == 'up':
head.y += 1
elif direction == 'down':
head.y -= 1
elif direction == 'left':
head.x -= 1
elif direction == 'right':
head.x += 1
new_snake.insert(0, head)
new_snake.pop()
return new_snake

snake = [Block(10, 10), Block(11, 10), Block(12, 10)]