🖱️ Did some work

📄 Fill in the attendance register

💭 After a senior colleague asked what this was (the mobile battery), my colleague stopped changing her battery. I think I just don’t like this way.

I reorganized my phone album, deleted some photos, and sent some to my friends, or added a star to remind myself not to forget the memories. I realized that I don’t really talk to my friends all the time; I only talk to them when I want to. I don’t know if that’s okay.

📝 Started writing March Summary

🗞️ Read some blog posts

🖥️ Started learning Python

🖥️ Built an Nth Fibonacci Number Calculator Lab

def fibonacci(n):
    sequence = [0, 1]

    for i in range(2, n + 1):
        next_value = sequence[i-1] + sequence[i-2]
        sequence.append(next_value)

    return sequence[n]

💯 Completed Dynamic Programming Review and Quiz (7/10)

🔗 Python Review ⭐⭐⭐⭐⭐

Books are algorithm proof. You can’t de-platform a book. A book comes with built-in context and you are free to examine it. A book can’t fit on a meme and there are well beyond 140 or even 280 characters. — Reading is Rebellion

📖 Started reading Wonder


<
Previous Post
0401 A day with a bit of thought
>
Blog Archive
Archive of all previous blog posts