diff --git a/content/daily-notes/2024-08-15.md b/content/daily-notes/2024-08-15.md index 892ced24..013a3ef4 100644 --- a/content/daily-notes/2024-08-15.md +++ b/content/daily-notes/2024-08-15.md @@ -1,7 +1,14 @@ + ### 2024-08-15 Started the day off with a couple of pop culture podcasts: * Taylor Lorenz: [Can Elon and Twitter save Trump? + Kamala plays with fire online | Listen Notes](https://www.listennotes.com/podcasts/power-user-with/can-elon-and-twitter-save-G5uLpsNBk_6/) * [#MemeingTheNews - Never Post (podcast) | Listen Notes](https://www.listennotes.com/podcasts/never-post/memeingthenews-KrmbfS-I32z/) +TIL - Python fractions: +```python +>>> from fractions import Fraction as F +>>> F(1, 10) + F(1, 10) + F(1, 10) == F(3, 10) +True +```