Django Weblog: Django security releases issued: 4.1.7, 4.0.10, and 3.2.18
Link: https://www.djangoproject.com/weblog/2023/feb/14/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.1.7,
Django 4.0.10, and
Django 3.2.18.
These releases addresses the security issue detailed below. We encourage all
Link: https://www.djangoproject.com/weblog/2023/feb/14/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.1.7,
Django 4.0.10, and
Django 3.2.18.
These releases addresses the security issue detailed below. We encourage all
Django Project
Django security releases issued: 4.1.7, 4.0.10, and 3.2.18
Posted by Carlton Gibson on Feb. 14, 2023
Ned Batchelder: Late initialization, reconsidered
Link: https://nedbatchelder.com/blog/202302/late_initialization_reconsidered.html
A few days ago I posted Late initialization with mypy,
and people gave me feedback, and I realized they were right. The placebo
solution described there is clever, but too clever. It circumvents the
Link: https://nedbatchelder.com/blog/202302/late_initialization_reconsidered.html
A few days ago I posted Late initialization with mypy,
and people gave me feedback, and I realized they were right. The placebo
solution described there is clever, but too clever. It circumvents the
Nedbatchelder
Late initialization, reconsidered
A few days ago I posted <a href="//nedbatchelder.com/blog/202302/late_initialization_with_mypy.html">Late initialization with mypy</a>, and people gave me feedback, and I realized they were right. The placebo solution described there is clever, but too clever.
Real Python: Getters and Setters in Python
Link: https://realpython.com/courses/getters-and-setters-python/
If you come from a language like Java or C++, then you’re probably used to writing getter and setter methods for every attribute in your classes. These methods allow you to access and mutate private a
Link: https://realpython.com/courses/getters-and-setters-python/
If you come from a language like Java or C++, then you’re probably used to writing getter and setter methods for every attribute in your classes. These methods allow you to access and mutate private a
Realpython
Getters and Setters in Python – Real Python
In this video course, you'll learn what getter and setter methods are, how Python properties are preferred over getters and setters when dealing with attribute access and mutation, and when to use getter and setter methods instead of properties in Python.
Everyday Superpowers: Use ABCs for less-restrictive type hints.
Link: https://everydaysuperpowers.dev/articles/use-abcs-for-less-restrictive-type-hints/
Many people, especially those new to type hints, write hints that make things harder for users. This article will give you one tool to make your code easier to use.Read more...
Link: https://everydaysuperpowers.dev/articles/use-abcs-for-less-restrictive-type-hints/
Many people, especially those new to type hints, write hints that make things harder for users. This article will give you one tool to make your code easier to use.Read more...
PyCoder’s Weekly: Issue #564 (Feb. 14, 2023)
Link: https://pycoders.com/issues/564
#564 – FEBRUARY 14, 2023 View in Browser » Monorepos in Python A monorepo is a source control pattern in some organizations where a single code repository is shared for many or all projects. Thi
Link: https://pycoders.com/issues/564
#564 – FEBRUARY 14, 2023 View in Browser » Monorepos in Python A monorepo is a source control pattern in some organizations where a single code repository is shared for many or all projects. Thi
Pycoders
PyCoder’s Weekly | Issue #564
Issue #564 of the PyCoder’s Weekly newsletter, published Feb. 14, 2023.
Python Bytes: #323 AI search wars have begun
Link: https://pythonbytes.fm/episodes/show/323/ai-search-wars-have-begun
<a href='https://www.youtube.com/watch?v=0SepAcVf5yg' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by <a href="http://pythonbytes.fm/f
Link: https://pythonbytes.fm/episodes/show/323/ai-search-wars-have-begun
<a href='https://www.youtube.com/watch?v=0SepAcVf5yg' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by <a href="http://pythonbytes.fm/f
pythonbytes.fm
AI search wars have begun
News and announcements from the Python community for the week of Feb 14th, 2023
Codementor: DataTypes in C programming Language
Link: https://www.codementor.io/nimeshneema/datatypes-in-c-programming-language-220g9wfiwy
fundamentals of C Programming series continued...
Link: https://www.codementor.io/nimeshneema/datatypes-in-c-programming-language-220g9wfiwy
fundamentals of C Programming series continued...
www.codementor.io
DataTypes in C programming Language | Codementor
fundamentals of C Programming series continued...
Python Software Foundation: The Case for a Second Developer-in-Residence for Python
Link: https://pyfound.blogspot.com/2023/02/the-case-for-second-developer-in.html
As the currently serving sole developer in residence, I’m often asked if there will be more people holding the same position in the future. I strongly believe there should be and that it’s crucial to
Link: https://pyfound.blogspot.com/2023/02/the-case-for-second-developer-in.html
As the currently serving sole developer in residence, I’m often asked if there will be more people holding the same position in the future. I strongly believe there should be and that it’s crucial to
Python Software Foundation Blog
The Case for a Second Developer-in-Residence for Python
As the currently serving sole developer in residence, I’m often asked if there will be more people holding the same position in the future. ...
Python for Beginners: Convert Python Dictionary to XML String or File
Link: https://www.pythonforbeginners.com/basics/convert-python-dictionary-to-xml-string-or-file
XML files are used to store and transmit data between the software systems. While developing software in python, you might also need to convert a python object to XML format for storing or transmittin
Link: https://www.pythonforbeginners.com/basics/convert-python-dictionary-to-xml-string-or-file
XML files are used to store and transmit data between the software systems. While developing software in python, you might also need to convert a python object to XML format for storing or transmittin
PythonForBeginners.com
Convert Python Dictionary to XML String or File - PythonForBeginners.com
Convert Python Dictionary to XML String or File will help you improve your python skills with easy to follow examples and tutorials.
Real Python: How to Flush the Output of the Python Print Function
Link: https://realpython.com/python-flush-print-output/
Do you want to build a compact visual progress indicator for your Python script using print(), but your output doesn’t show up when you’d expect it to? Or are you piping the logs of your script to ano
Link: https://realpython.com/python-flush-print-output/
Do you want to build a compact visual progress indicator for your Python script using print(), but your output doesn’t show up when you’d expect it to? Or are you piping the logs of your script to ano
Realpython
How to Flush the Output of the Python Print Function – Real Python
In this tutorial, you'll learn how to flush the output of Python's print function. You'll explore output stream buffering in Python using code examples and learn that output streams are block-buffered by default, and that print() with its default arguments…
PyCon: PyCon US 2023 Schedule Launch!
Link: https://pycon.blogspot.com/2023/02/pycon-us-2023-schedule-launch.html
The 2023 PyCon US schedule has been announced! With two decades of this event series under our belt, this year's conference is sure to be a memorable one. We’re looking forward to celebrating 20 years
Link: https://pycon.blogspot.com/2023/02/pycon-us-2023-schedule-launch.html
The 2023 PyCon US schedule has been announced! With two decades of this event series under our belt, this year's conference is sure to be a memorable one. We’re looking forward to celebrating 20 years
Blogspot
PyCon US 2023 Schedule Launch!
The 2023 PyCon US schedule has been announced! With two decades of this event series under our belt, this year's conference is sure to be a ...
Codementor: Declaration Defination Invocation in the functions of C programming language.
Link: https://www.codementor.io/nimeshneema/declaration-defination-invocation-in-the-functions-of-c-programming-language-221laakhvx
continuation in fundamentals of C programming series
Link: https://www.codementor.io/nimeshneema/declaration-defination-invocation-in-the-functions-of-c-programming-language-221laakhvx
continuation in fundamentals of C programming series
www.codementor.io
Declaration Defination Invocation in the functions of C programming language. | Codementor
continuation in fundamentals of C programming series
Reuven Lerner: Sharpen your Pandas skills with “Bamboo Weekly”
Link: https://lerner.co.il/2023/02/16/sharpen-your-pandas-skills-with-bamboo-weekly/
Data is the future. Heck, you could make a compelling argument that it’s the present.
If you know how to work with data, then your career is virtually assured. You’ll have your pick of cool jobs, inte
Link: https://lerner.co.il/2023/02/16/sharpen-your-pandas-skills-with-bamboo-weekly/
Data is the future. Heck, you could make a compelling argument that it’s the present.
If you know how to work with data, then your career is virtually assured. You’ll have your pick of cool jobs, inte
Reuven Lerner
Sharpen your Pandas skills with "Bamboo Weekly"
Data is the future. Heck, you could make a compelling argument that it's the present. If you know how to work with data, then your career is virtually assured. You'll have your pick of cool
Kushal Das: SamNet Vinterkonferensen 2023
Link: https://kushaldas.in/posts/samnet-vinterkonferensen-2023.html
This Tuesday I attended SamNet Vinterkonferensen,
jointly organized by ISOC-SE, SNUS, DFRI and
Dataskydd.net, focusing on technology, the internet, privacy, and decentralization.
The organizers gave
Link: https://kushaldas.in/posts/samnet-vinterkonferensen-2023.html
This Tuesday I attended SamNet Vinterkonferensen,
jointly organized by ISOC-SE, SNUS, DFRI and
Dataskydd.net, focusing on technology, the internet, privacy, and decentralization.
The organizers gave
Mike Driscoll: The Basics of Python Live Course
Link: https://www.blog.pythonlibrary.org/2023/02/16/the-basics-of-python-live-course/
Have you wanted to learn Python but haven’t been able to get started? Perhaps you did start and then got stuck.
That’s okay! Mike Driscoll is giving a new Basics of Python live course on Lighthall. Th
Link: https://www.blog.pythonlibrary.org/2023/02/16/the-basics-of-python-live-course/
Have you wanted to learn Python but haven’t been able to get started? Perhaps you did start and then got stuck.
That’s okay! Mike Driscoll is giving a new Basics of Python live course on Lighthall. Th
Mouse Vs Python
The Basics of Python Live Course - Mouse Vs Python
Have you wanted to learn Python but haven't been able to get started? Perhaps you did start and then got stuck. That's okay! Mike Driscoll is giving a new
TestDriven.io: Dockerizing Django with Postgres, Gunicorn, and Traefik
Link: https://testdriven.io/blog/django-docker-traefik/
This tutorial details how to configure Django to run on Docker along with Postgres, Gunicorn, Traefik, and Let's Encrypt.
Link: https://testdriven.io/blog/django-docker-traefik/
This tutorial details how to configure Django to run on Docker along with Postgres, Gunicorn, Traefik, and Let's Encrypt.
testdriven.io
Dockerizing Django with Postgres, Gunicorn, and Traefik
This tutorial details how to configure Django to run on Docker along with Postgres, Gunicorn, Traefik, and Let's Encrypt.
Philippe Normand: WebRTC in WebKitGTK and WPE, status updates, part I
Link: https://base-art.net/Articles/webrtc-in-webkitgtk-and-wpe-status-updates-part-i/
Some time ago we at Igalia embarked on the journey to ship
a GStreamer-powered WebRTC backend. This is
a long journey, it is not over, but we made some progress …
Link: https://base-art.net/Articles/webrtc-in-webkitgtk-and-wpe-status-updates-part-i/
Some time ago we at Igalia embarked on the journey to ship
a GStreamer-powered WebRTC backend. This is
a long journey, it is not over, but we made some progress …
Base-Art
WebRTC in WebKitGTK and WPE, status updates, part I
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.esm.min.mjs'; mermaid.initialize({ startOnLoad: true }); Some time ago we at Igalia embarked on the journey to ship a GStreamer-powered WebRTC backend. This is a long journey, it is…
Codementor: #define in C programming Language
Link: https://www.codementor.io/nimeshneema/define-in-c-programming-language-222q6k2r2s
fundamentals of C programming series continued...
Link: https://www.codementor.io/nimeshneema/define-in-c-programming-language-222q6k2r2s
fundamentals of C programming series continued...
www.codementor.io
#define in C programming Language | Codementor
fundamentals of C programming series continued...
Armin Ronacher: I Think AI Would Kill my Wife
Link: http://lucumr.pocoo.org/2023/2/17/the-killing-ai
“A robot may not injure a human being or, through inaction, allow a human
being to come to harm.”
Turns out the Bing AI is bizarre
and that is making quite the waves at the moment. In essence, the B
Link: http://lucumr.pocoo.org/2023/2/17/the-killing-ai
“A robot may not injure a human being or, through inaction, allow a human
being to come to harm.”
Turns out the Bing AI is bizarre
and that is making quite the waves at the moment. In essence, the B
Armin Ronacher's Thoughts and Writings
I Think AI Would Kill my Wife
Why I’m a worried, but not too worried about AIs.
Real Python: The Real Python Podcast – Episode #145: Creating a Python Wordle Clone & Testing Environments With Nox
Link: https://realpython.com/podcasts/rpp/145/
Would you like to practice your Python skills while building a challenging word game? Have you been wanting to learn more about creating command-line interfaces and making them colorful and interacti
Link: https://realpython.com/podcasts/rpp/145/
Would you like to practice your Python skills while building a challenging word game? Have you been wanting to learn more about creating command-line interfaces and making them colorful and interacti
Realpython
Episode #145: Creating a Python Wordle Clone & Testing Environments With Nox – The Real Python Podcast
Would you like to practice your Python skills while building a challenging word game? Have you been wanting to learn more about creating command-line interfaces and making them colorful and interactive? This week on the show, Christopher Trudeau is here…