I lost my job at Posit rather suddenly in June. This ended up being rather convenient since I had already been looking for a new job and it’s significantly easier to grind LeetCode while you’re unemployed. After about ~2 months of studying, applying, and interviewing I found a great spot at Pinterest.
🔖 The creator of ffmpeg Fabrice Bellard(1) is truly a genius and has created so many amazing software that have been an amazing benefit to the world. | Hacker News #pinboard#pantheon#ffmpeg#person
Yeah definitely. If programming genius had a unit it should be called the bellard.
One 10x programmer = a 1/10th Bellard?
Parameters and Arguments
Parameters 和 Arguments 这两个单词翻译过来都是参数,我一直都挺疑惑他们之间有什么区别。细看了一下,原来就是形参和实参,函数定义处的参数为形参,而函数被调用的地方叫实参。
# Function definition with parameters
def add(x, y): # x and y are parameters
return x + y
# Calling the function with arguments
result = add(5, 3) # 5 and 3 are arguments
# Display the result
print(f"Result of adding 5 and 3 is: {result}")