diff --git a/1-hello-world/05_letter.py b/1-hello-world/05_letter.py index 486ca7f..e2998bd 100644 --- a/1-hello-world/05_letter.py +++ b/1-hello-world/05_letter.py @@ -1,19 +1,26 @@ # Snail Mail πŸ’Œ # CodΓ©dex -print('+---------------------------------------------------------------------+') -print('| |') -print('| June 2022 |') -print('| Brooklyn, NY |') -print('| Dear Self, |') -print('| |') -print('| Build the platform you always dreamed of β€” |') -print('| the one you wish existed when you started. |') -print('| Give more than you take. |') -print('| Care > capital. |') -print('| Five-second funerals for all the Ls. |') -print('| And always get back up. |') -print('| |') -print('| Sonny 🀠 |') -print('| |') -print('+---------------------------------------------------------------------+') +print('+---------------------------------------------------------------------------------+') +print('| |') +print('| October 2025 |') +print('| Brooklyn, NY |') +print('| Dear Self, |') +print('| |') +print('| Does great art require suffering? |') +print('| Does great product demand capital? |') +print('| Did you find any truth at the end of the road? |') +print('| |') +print('| Regardless, go build the learning platform you’ve always dreamed of β€” |') +print('| the one you wish existed when you first started. |') +print('| |') +print('| Give more than you take. |') +print('| Take only what you need. |') +print('| |') +print('| And when things fall apart, get tf back up. |') +print('| |') +print('| - Sonny Li |') +print('| |') +print('| P.S. Hope I made you proud. You got this, kiddo. 🀠 |') +print('| |') +print('+---------------------------------------------------------------------------------+') diff --git a/5-lists/27_bucket_list.py b/5-lists/27_bucket_list.py index f4dcfa7..e734a0a 100644 --- a/5-lists/27_bucket_list.py +++ b/5-lists/27_bucket_list.py @@ -2,12 +2,12 @@ # CodΓ©dex things_to_do = [ - 'πŸš€ Build a meaningful product for everyone.', - 'β›° Try out hiking and mountain biking.', - '🌏 Visit at least 10 countries in my lifetime.', - '🎸 Produce an original song.', - 'πŸ“ Write a short story.', - 'πŸƒ Finish a 10k marathon.' + 'πŸš€ Build a meaningful product for everyone.', + 'β›° Try out hiking and mountain biking.', + '🌏 Visit at least 10 countries in my lifetime.', + '🎸 Produce an original song.', + 'πŸ“ Write a short story.', + 'πŸƒ Finish a 10k marathon.' ] for thing in things_to_do: