Why my watch misclassifies several of my runs as tempo, and how to interpret it…
https://medium.com/@srmp1382/why-my-watch-misclassifies-several-of-my-runs-as-tempo-and-how-to-interpret-it-3b49291af894
https://medium.com/@srmp1382/why-my-watch-misclassifies-several-of-my-runs-as-tempo-and-how-to-interpret-it-3b49291af894
Medium
Why my watch misclassifies several of my runs as tempo, and how to interpret it…
It all began about an year or so ago when I started noticing that my watch was misclassifying several of my runs as tempo, when I had in…
543. Diameter of Binary Tree — LeetCode(Python)
https://palashsharma891.medium.com/543-diameter-of-binary-tree-leetcode-python-16be979280be
https://palashsharma891.medium.com/543-diameter-of-binary-tree-leetcode-python-16be979280be
Medium
543. Diameter of Binary Tree — LeetCode(Python)
I got you!
572. Subtree of Another Tree — LeetCode(Python)
https://palashsharma891.medium.com/572-subtree-of-another-tree-leetcode-python-368d61116758
https://palashsharma891.medium.com/572-subtree-of-another-tree-leetcode-python-368d61116758
Medium
572. Subtree of Another Tree — LeetCode(Python)
I got you!
100. Same Tree -LeetCode(Python)
https://palashsharma891.medium.com/100-same-tree-leetcode-python-7014b123eca7
https://palashsharma891.medium.com/100-same-tree-leetcode-python-7014b123eca7
Medium
100. Same Tree -LeetCode(Python)
I got you!
Handy use of walrus operator to satisfy mypy
https://medium.com/@jamiekt/handy-use-of-walrus-operator-to-satisfy-mypy-db2eec345926
https://medium.com/@jamiekt/handy-use-of-walrus-operator-to-satisfy-mypy-db2eec345926
Medium
Handy use of walrus operator to satisfy mypy
I had an issue today where mypy was complaining about the following code which uses re.search inside of a set comprehension:
It's Time to Say Goodbye to These Obsolete Python Libraries | Martin Heinz
https://martinheinz.dev/blog/77
https://martinheinz.dev/blog/77
martinheinz.dev
It's Time to Say Goodbye to These Obsolete Python Libraries
<p>
With every Python release, there are new modules being added and new and better ways of doing things get introduced. We all get used to using the good ...
With every Python release, there are new modules being added and new and better ways of doing things get introduced. We all get used to using the good ...
Open-source machine translation in Python
https://neuml.hashnode.dev/translate-text-between-languages
https://neuml.hashnode.dev/translate-text-between-languages
Design Pattern: Using the Repository Pattern for better data encapsulation
https://youtu.be/l_7ZpHE4EEY
https://youtu.be/l_7ZpHE4EEY
YouTube
Using the Repository Pattern for better data access encapsulation (in Python)
The code for this tutorial is available in 𝐆𝐢𝐭𝐇𝐮𝐛: https://github.com/abunuwas/repository-pattern-tutorial
This tutorial explains
👉 What the Repository Pattern is
👉 When to use the Repository Pattern
👉 How to implement the Repository Pattern
You'll learn…
This tutorial explains
👉 What the Repository Pattern is
👉 When to use the Repository Pattern
👉 How to implement the Repository Pattern
You'll learn…
EuroPython Dublin 2022: summaries of selected talks
https://codebeez.nl/blogs/europython-2022-summaries-of-selected-talks
https://codebeez.nl/blogs/europython-2022-summaries-of-selected-talks
Codebeez
Codebeez zijn wij met zijn allen samen. Wij vormen de cultuur. Op onze eigen manier, die we gezamenlijk bepalen. Alles draait bij Codebeez om onze mensen, hun plezier, hun groei, focus op ons vakgebied en de kwaliteit van wat wij doen. Onze Beez eerst.
Making Python's any & all functions fast with generator expressions
https://zech.codes/how-to-use-anyall-efficiently-in-python
https://zech.codes/how-to-use-anyall-efficiently-in-python
Zech
Making Python's any & all functions fast with listcomps & generators
Using Python's any & all functions effectively. Listcomps are great but generator expressions with filtering ifs are much more efficient.