Test and Code: 175: Who Should Do QA?
Link: https://testandcode.com/175
Who should do QA?
How does that change with different projects and teams?
What does "doing QA" mean, anyway?
Answering these questions are the goals of this episode.Sponsored By:Rollbar: Rollbar ena
Link: https://testandcode.com/175
Who should do QA?
How does that change with different projects and teams?
What does "doing QA" mean, anyway?
Answering these questions are the goals of this episode.Sponsored By:Rollbar: Rollbar ena
Test & Code in Python
Test & Code in Python 175: Who Should Do QA?
Who should do QA? How does that change with different projects and teams? What does "doing QA" mean, anyway?
Answering these questions are the goals of this episode.
Answering these questions are the goals of this episode.
Python Circle: Django vs Node.js: Which One Is Better for Web Development?
Link: https://pythoncircle.com/post/757/django-vs-nodejs-which-one-is-better-for-web-development/
Benefits of using Django and Node.js, Django vs Node.js: Which One Is Better for Web Development?, Basic features of Django and Node.js, Drawbacks of using Django and Node.js
Link: https://pythoncircle.com/post/757/django-vs-nodejs-which-one-is-better-for-web-development/
Benefits of using Django and Node.js, Django vs Node.js: Which One Is Better for Web Development?, Basic features of Django and Node.js, Drawbacks of using Django and Node.js
Python Circle
Django vs Node.js: Which One Is Better for Web Development?
Benefits of using Django and Node.js, Django vs Node.js: Which One Is Better for Web Development?, Basic features of Django and Node.js, Drawbacks of using Django and Node.js
Python GUIs: Using Layouts to Position Widgets in PySide6 — Use layouts to effortlessly position widgets within the window (updated for PySide6)
Link: https://www.pythonguis.com/tutorials/pyside6-layouts/
So far we've successfully created a window, and we've added a widget to it. However we normally want to add more than one widget to a window, and have some control over where it ends up. To do this in
Link: https://www.pythonguis.com/tutorials/pyside6-layouts/
So far we've successfully created a window, and we've added a widget to it. However we normally want to add more than one widget to a window, and have some control over where it ends up. To do this in
Python GUIs
PySide6 Layouts - Using QVBoxLayout, QHBoxLayout, QGridLayout, QStackedLayout to Position Widgets
Layouts are the Qt approach to positioning widgets in your GUI applications. Widgets placed in layouts will be automatically arranged. Layouts can be nested to build complex user interfaces. So far we've successfully created a window, and we've added a widget…
Kay Hayen: Nuitka Release 0.6.19
Link: https://nuitka.net/posts/nuitka-release-0619.html
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release adds support for 3.10 while also adding very many new
optimiz
Link: https://nuitka.net/posts/nuitka-release-0619.html
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release adds support for 3.10 while also adding very many new
optimiz
Quansight Labs Blog: IPython 8.0, Lessons learned maintaining software
Link: https://labs.quansight.org/blog/2022/01/ipython-8.0-lessons-learned-maintaining-software/
This is a companion post from the Official release of IPython
8.0, that describe
what we learned with this large new major IPython release. We hope it will help
you apply best practices, and have an e
Link: https://labs.quansight.org/blog/2022/01/ipython-8.0-lessons-learned-maintaining-software/
This is a companion post from the Official release of IPython
8.0, that describe
what we learned with this large new major IPython release. We hope it will help
you apply best practices, and have an e
Read the Docs: Read the Docs newsletter - January 2022
Link: https://blog.readthedocs.com/newsletter-january-2022/
Welcome to the latest edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share
Link: https://blog.readthedocs.com/newsletter-january-2022/
Welcome to the latest edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share
Python for Beginners: Create Decorators Using Classes in Python
Link: https://www.pythonforbeginners.com/basics/create-decorators-using-classes-in-python
You might be knowing how to create decorators in python using functions. In this article, we will discuss ways to create decorators using classes in Python. First we will discuss what are callable obj
Link: https://www.pythonforbeginners.com/basics/create-decorators-using-classes-in-python
You might be knowing how to create decorators in python using functions. In this article, we will discuss ways to create decorators using classes in Python. First we will discuss what are callable obj
PythonForBeginners.com
Create Decorators Using Classes in Python - PythonForBeginners.com
Create Decorators Using Classes in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Build and Submit HTML Forms With Django – Part 4
Link: https://realpython.com/django-social-forms-4/
In this four-part tutorial series, you’re building a social network with Django that you can showcase in your portfolio. This project is strengthening your understanding of relationships between Djang
Link: https://realpython.com/django-social-forms-4/
In this four-part tutorial series, you’re building a social network with Django that you can showcase in your portfolio. This project is strengthening your understanding of relationships between Djang
Realpython
Build and Submit HTML Forms With Django – Part 4 – Real Python
In the final part of this tutorial series, you'll continue to build out a social network with Django. You'll wrap up by working with Django forms, learning how to display helpful error messages, setting up dynamic URLs in your app, and more.
Jaime Buelta: “Python Architecture Patterns” now available!
Link: https://wrongsideofmemphis.com/2022/01/13/python-architecture-patterns-now-available/
My new book is available! Current software systems can be extremely big and complex, and Software Architecture deals with the design and tweaking of fundamental structures that shape the big picture o
Link: https://wrongsideofmemphis.com/2022/01/13/python-architecture-patterns-now-available/
My new book is available! Current software systems can be extremely big and complex, and Software Architecture deals with the design and tweaking of fundamental structures that shape the big picture o
Wrong Side of Memphis
“Python Architecture Patterns” now available!
My new book is available! Now available! Current software systems can be extremely big and complex, and Software Architecture deals with the design and tweaking of fundamental structures that shape…
Python⇒Speed: Memory location matters for performance
Link: https://pythonspeed.com/articles/performance-memory-locality/
If you’re writing high-performance code, what matters is how many CPU instructions you run.
Right?
That’s what I learned long ago in school, anyway, when I took algorithms and data structures classes.
Link: https://pythonspeed.com/articles/performance-memory-locality/
If you’re writing high-performance code, what matters is how many CPU instructions you run.
Right?
That’s what I learned long ago in school, anyway, when I took algorithms and data structures classes.
Python⇒Speed
Memory location matters for performance
Performance is not just determined by how many CPU instructions your code runs; it’s also determined by your memory access patterns.
Python for Beginners: Detect Cycle in an Undirected Graph
Link: https://www.pythonforbeginners.com/basics/detect-cycle-in-an-undirected-graph
Graph traversal algorithms are used to perform various operations on a graph data structure. In this article, we will use the breadth-first graph traversal algorithm to detect cycle in an undirected g
Link: https://www.pythonforbeginners.com/basics/detect-cycle-in-an-undirected-graph
Graph traversal algorithms are used to perform various operations on a graph data structure. In this article, we will use the breadth-first graph traversal algorithm to detect cycle in an undirected g
PythonForBeginners.com
Detect Cycle in an Undirected Graph - PythonForBeginners.com
Detect Cycle in an Undirected Graph will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Will Kahn-Greene: Everett v3.0.0 released!
Link: https://bluesock.org/~willkg/blog/dev/everett_3_0_0.html
What is it?
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy automated document
Link: https://bluesock.org/~willkg/blog/dev/everett_3_0_0.html
What is it?
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy automated document
Will's Blog
Everett v3.0.0 released!
What is it?
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy automated documenta
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy automated documenta
Python Bytes: #266 Python has a glossary?
Link: https://pythonbytes.fm/episodes/show/266/python-has-a-glossary
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=tS8ZsH2WOnk' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/266/python-has-a-glossary
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=tS8ZsH2WOnk' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Python has a glossary?
News and announcements from the Python community for the week of Jan 13th, 2022
Podcast.__init__: Generate Your Text Files With Python Using Cog
Link: https://www.pythonpodcast.com/cog-python-text-generation-episode-347/
Developers hate wasting effort on manual processes when we can write code to do it instead. Cog is a tool to manage the work of automating the creation of text inside another file by executing arbitra
Link: https://www.pythonpodcast.com/cog-python-text-generation-episode-347/
Developers hate wasting effort on manual processes when we can write code to do it instead. Cog is a tool to manage the work of automating the creation of text inside another file by executing arbitra
The Python Podcast.__init__
The Python Podcast.__init__: Generate Your Text Files With Python Using Cog
An interview with Ned Batchelder about the interesting history of the Cog project and how you can use it to automate the work of generating text with arbitrary Python code
ItsMyCode: [Solved] Pandas TypeError: no numeric data to plot
Link: https://itsmycode.com/solved-pandas-typeerror-no-numeric-data-to-plot/
ItsMyCode |
In Pandas, we can only plot values with the numeric data type. If you try to plot with any other Data Type other than numeric data, Python will raise TypeError: no numeric data to plot.
In
Link: https://itsmycode.com/solved-pandas-typeerror-no-numeric-data-to-plot/
ItsMyCode |
In Pandas, we can only plot values with the numeric data type. If you try to plot with any other Data Type other than numeric data, Python will raise TypeError: no numeric data to plot.
In
ItsMyCode
[Solved] Pandas TypeError: no numeric data to plot - ItsMyCode
In Pandas, if you attempt to plot dataframe columns with non numeric data, Python will raise TypeError: no numeric data to plot.
Will McGugan: Weeknotes
Link: https://www.willmcgugan.com/blog/tech/post/weeknotes/
I'm trialing the idea of Weeknotes, a weekly summary of what I've done / learned in the prior week. Inspired by Simon Willison who has an uncanny ability to respond to a tweet with a link to a weeknot
Link: https://www.willmcgugan.com/blog/tech/post/weeknotes/
I'm trialing the idea of Weeknotes, a weekly summary of what I've done / learned in the prior week. Inspired by Simon Willison who has an uncanny ability to respond to a tweet with a link to a weeknot
Will McGugan Tech
Weeknotes
<p>Got funded. Hired an Employee. Bought a kettle.</p>
Real Python: The Real Python Podcast – Episode #93: Launching Python, Virtual Environments, and Locking Dependencies With Brett Cannon
Link: https://realpython.com/podcasts/rpp/93/
Would you like a simple command to launch your Python programs using v the newest version of the language installed on your machine? This week on the show, we continue our conversation with Brett C
Link: https://realpython.com/podcasts/rpp/93/
Would you like a simple command to launch your Python programs using v the newest version of the language installed on your machine? This week on the show, we continue our conversation with Brett C
Realpython
Episode #93: Launching Python, Virtual Environments, and Locking Dependencies With Brett Cannon – The Real Python Podcast
Would you like a simple command to launch your Python programs using the newest version of the language installed on your machine? This week on the show, we continue our conversation with Brett Cannon. Brett discusses his project, the Python Launcher for…
Ned Batchelder: Cog resurgence
Link: https://nedbatchelder.com/blog/202201/cog_resurgence.html
My cog tool has been having a resurgence of late: a
number of people are discovering it’s useful to run a little bit of Python code
inside otherwise static files.It took cog 17 years to become an over
Link: https://nedbatchelder.com/blog/202201/cog_resurgence.html
My cog tool has been having a resurgence of late: a
number of people are discovering it’s useful to run a little bit of Python code
inside otherwise static files.It took cog 17 years to become an over
Nedbatchelder
Cog resurgence
My <a href="//nedbatchelder.com/code/cog">cog</a> tool has been having a resurgence of late: a number of people are discovering it’s useful to run a little bit of Python code inside otherwise static files.
Kay Hayen: First Nuitka Live Stream
Link: https://nuitka.net/posts/first-nuitka-live-stream.html
Tomorrow, Saturday 15.01.2022, there will be not one, but two live
stream of me coding on Nuitka, and talking and chatting with visitors in
the Discord channel created specifically for this. I will go
Link: https://nuitka.net/posts/first-nuitka-live-stream.html
Tomorrow, Saturday 15.01.2022, there will be not one, but two live
stream of me coding on Nuitka, and talking and chatting with visitors in
the Discord channel created specifically for this. I will go
Python Insider: Python 3.10.2, 3.9.10, and 3.11.0a4 are now available
Link: https://pythoninsider.blogspot.com/2022/01/python-3102-3910-and-3110a4-are-now.html
Before we begin the usual round of release notes, please do note that
the three new versions of Python released today do not contain Windows
installers yet. This is temporary, due to a more complex
Link: https://pythoninsider.blogspot.com/2022/01/python-3102-3910-and-3110a4-are-now.html
Before we begin the usual round of release notes, please do note that
the three new versions of Python released today do not contain Windows
installers yet. This is temporary, due to a more complex
Blogspot
Python Insider: Python 3.10.2, 3.9.10, and 3.11.0a4 are now available
Daniel Roy Greenfeld: Autodocumenting Makefiles
Link: https://daniel.feldroy.com/posts/autodocumenting-makefiles
A few years ago Fabio da Luz taught me some Makefile tricks. This is an expansion on what he taught me (I added the output list and sort feature).
Using PYSCRIPT to Print Documentation
At the top of y
Link: https://daniel.feldroy.com/posts/autodocumenting-makefiles
A few years ago Fabio da Luz taught me some Makefile tricks. This is an expansion on what he taught me (I added the output list and sort feature).
Using PYSCRIPT to Print Documentation
At the top of y
https://daniel.feldroy.com
Autodocumenting Makefiles
Make Your Makefiles Make Your Day!