Talking to Notebooks With Jupyter AI
https://talkpython.fm/episodes/show/440/talking-to-notebooks-with-jupyter-ai
https://talkpython.fm/episodes/show/440/talking-to-notebooks-with-jupyter-ai
talkpython.fm
Talking to Notebooks with Jupyter AI
We all know that LLMs and generative AI has been working its way into many products. It's Jupyter's turn to get a really awesome integration. We have David Qiu here to tell us about Jupyter AI. Jupyter AI provides a user-friendly and powerful way to apply…
Welcoming the Supporting Developer in Residence
https://discuss.python.org/t/welcoming-the-supporting-developer-in-residence/39702
https://discuss.python.org/t/welcoming-the-supporting-developer-in-residence/39702
Discussions on Python.org
Welcoming the Supporting Developer in Residence
Hello there! When we were hiring for the Deputy Developer in Residence role sponsored by Bloomberg, we received an unexpected number of great applications. Ultimately, after an extensive interview process, the Steering Council and I chose Petr Viktorin.…
Ideas: Support Multiple Divisors in divmod()
https://discuss.python.org/t/support-multiple-divisors-in-divmod/33109
https://discuss.python.org/t/support-multiple-divisors-in-divmod/33109
Discussions on Python.org
Support multiple divisors in divmod()
What do you think about idea of supporting multiple divisors in divmod()? So instead of minutes, seconds = divmod(t, 60) hours, minutes = divmod(minutes, 60) days, hours = divmod(hours, 24) weeks, days = divmod(days, 7) you could write: weeks, days, hours…
Long-Term Vision for a Parallel Programming Model?
https://discuss.python.org/t/what-is-the-long-term-vision-for-a-parallel-python-programming-model/39190
https://discuss.python.org/t/what-is-the-long-term-vision-for-a-parallel-python-programming-model/39190
Discussions on Python.org
What is the Long-Term Vision for a Parallel Python Programming Model?
With PEP 703 and various ongoing projects to bring just-in-time compilation to CPython, I would like to ask what the long-term vision for a parallel Python programming model is. For context, I am asking this is an academic programming language implementation…
Running Python Parallel Applications With Sub Interpreters
https://tonybaloney.github.io/posts/sub-interpreter-web-workers.html
https://tonybaloney.github.io/posts/sub-interpreter-web-workers.html
tonybaloney.github.io
Running Python Parallel Applications with Sub Interpreters
An exploration into the possibility of running a parallel application using sub interpreters
Adding Full Text Search to Django With django-watson
https://idiomaticprogrammers.com/post/django-watson-full-text-search-guide/
https://idiomaticprogrammers.com/post/django-watson-full-text-search-guide/
Idiomaticprogrammers
Adding Full Text Search to Your Django App with django-watson | Idiomatic Programmers
Learn how to supercharge your Django app with full-text search using Django-Watson. Dive deep into Postgres magic and boost search functionality.
CPython Internals: Understanding the Role of PyObject
https://codeconfessions.substack.com/p/cpython-object-system-internals-understanding
https://codeconfessions.substack.com/p/cpython-object-system-internals-understanding
Codingconfessions
CPython Object System Internals: Understanding the Role of PyObject
Understand how objects are implemented in CPython and how CPython emulates Inheritance and Polymorphism in C using struct embedding
Why You Should Not Overuse List Comprehensions in Python
https://www.kdnuggets.com/why-you-should-not-overuse-list-comprehensions-in-python
https://www.kdnuggets.com/why-you-should-not-overuse-list-comprehensions-in-python
KDnuggets
Why You Should Not Overuse List Comprehensions in Python
List comprehensions in Python are super helpful one-liners. But if overused, they can make your code a pain to maintain. Here’s why.