Python⇒Speed: Is it worth the money? When to buy products for your job
Link: https://pythonspeed.com/articles/programmers-buying-guide/
You’ve discovered a product that might help you with your job: perhaps a book that will teach you a new and relevant skill, or software that will speed up development.
Since you do want to write softw
Link: https://pythonspeed.com/articles/programmers-buying-guide/
You’ve discovered a product that might help you with your job: perhaps a book that will teach you a new and relevant skill, or software that will speed up development.
Since you do want to write softw
Python⇒Speed
Buying products for your job: estimating value, convincing your boss
When is it worth the money to buy a product that will help you with your job? Learn how to decide, and how to convince your boss to approve the purchase.
Łukasz Langa: Weekly Report, November 22 - 28
Link: https://lukasz.langa.pl/6d439b86-3834-481a-b95c-ac9c6956545b/
This was a week where I tried something new. Instead of cutting through tens of shallow PRs, I focused deeply on a single one. I installed Irit Katriel’s GH-29581 to try out PEP 654’s new except* and
Link: https://lukasz.langa.pl/6d439b86-3834-481a-b95c-ac9c6956545b/
This was a week where I tried something new. Instead of cutting through tens of shallow PRs, I focused deeply on a single one. I installed Irit Katriel’s GH-29581 to try out PEP 654’s new except* and
lukasz.langa.pl
Weekly Report, November 22 - 28 - Łukasz Langa
This was a week where I tried something new. Instead of cutting through tens of shallow PRs, I focused deeply on a single one. I installed Irit Katriel’s GH-29581 to try out PEP 654’s new except* and ExceptionGroup objects.
TestDriven.io: Dynamic Secret Generation with Vault and Flask
Link: https://testdriven.io/blog/dynamic-secret-generation-with-vault-and-flask/
In this tutorial, we'll look at a real-world example of using Hashicorp's Vault and Consul to create dynamic Postgres credentials for a Flask web app.
Link: https://testdriven.io/blog/dynamic-secret-generation-with-vault-and-flask/
In this tutorial, we'll look at a real-world example of using Hashicorp's Vault and Consul to create dynamic Postgres credentials for a Flask web app.
testdriven.io
Dynamic Secret Generation with Vault and Flask
In this tutorial, we'll look at a real-world example of using Hashicorp's Vault and Consul to create dynamic Postgres credentials for a Flask web app.
TestDriven.io: Reproducible Builds with Bazel
Link: https://testdriven.io/blog/bazel-builds/
This article looks at how Bazel can be used to create reproducible, hermetic builds.
Link: https://testdriven.io/blog/bazel-builds/
This article looks at how Bazel can be used to create reproducible, hermetic builds.
testdriven.io
Reproducible Builds with Bazel
This article looks at how Bazel can be used to create reproducible, hermetic builds.
Matthew Wright: Financial market data analysis with pandas
Link: https://www.wrighters.io/financial-market-data-analysis-with-pandas/
Pandas is a great tool for time series analysis of financial market data. Because pandas DataFrames and Series work well with a date/time based index, they can be used effectively to analyze historica
Link: https://www.wrighters.io/financial-market-data-analysis-with-pandas/
Pandas is a great tool for time series analysis of financial market data. Because pandas DataFrames and Series work well with a date/time based index, they can be used effectively to analyze historica
wrighters.io
Financial market data analysis with pandas - wrighters.io
Pandas is a great tool to use for analysis of time series financial market data. We can use it to validate, visualize, and analyze data.
Test and Code: 172: Designing Better Software with a Prototype Mindset
Link: https://testandcode.com/172
A prototype is a a preliminary model of something, from which other forms are developed or copied.
In software, we think of prototypes as early things, or a proof of concept.
We don't often think of p
Link: https://testandcode.com/172
A prototype is a a preliminary model of something, from which other forms are developed or copied.
In software, we think of prototypes as early things, or a proof of concept.
We don't often think of p
Test & Code in Python
Test & Code in Python 172: Designing Better Software with a Prototype Mindset
A prototype is a a preliminary model of something, from which other forms are developed or copied.
This episode is about growing better designed software with the help of a prototype mindset.
This episode is about growing better designed software with the help of a prototype mindset.
Real Python: Data Visualization Interfaces in Python With Dash
Link: https://realpython.com/courses/data-viz-with-dash/
In the past, creating analytical web applications was a task for seasoned developers that required knowledge of multiple programming languages and frameworks. That’s no longer the case. Nowadays, you
Link: https://realpython.com/courses/data-viz-with-dash/
In the past, creating analytical web applications was a task for seasoned developers that required knowledge of multiple programming languages and frameworks. That’s no longer the case. Nowadays, you
Realpython
Data Visualization Interfaces in Python With Dash – Real Python
In this course, you'll learn how to build a dashboard using Python and Dash. Dash is a framework for building data visualization interfaces. It helps data scientists build fully interactive web applications quickly.
PyCharm: Last day to buy PyCharm and Support Python!
Link: https://blog.jetbrains.com/pycharm/2021/11/support-python-2021/
You still have 1 day to purchase your PyCharm Pro license at 30% off and have the full amount of your purchase donated directly to the PSF!
Buy PyCharm and Support Python
PyCharm joins the Python Sof
Link: https://blog.jetbrains.com/pycharm/2021/11/support-python-2021/
You still have 1 day to purchase your PyCharm Pro license at 30% off and have the full amount of your purchase donated directly to the PSF!
Buy PyCharm and Support Python
PyCharm joins the Python Sof
JetBrains Blog
Last day to buy PyCharm and Support Python! | The PyCharm Blog
You still have 1 day to purchase your PyCharm Pro license at 30% off and have the full amount of your purchase donated directly to the PSF!
Buy PyCharm and Support Python
PyCharm joins the Python Soft
Buy PyCharm and Support Python
PyCharm joins the Python Soft
ItsMyCode: ValueError: too many values to unpack (expected 2)
Link: https://itsmycode.com/valueerror-too-many-values-to-unpack-expected-2/
ItsMyCode |
If you get ValueError: too many values to unpack (expected 2), it means that you are trying to access too many values from an iterator. Value Error is a standard exception that can occur i
Link: https://itsmycode.com/valueerror-too-many-values-to-unpack-expected-2/
ItsMyCode |
If you get ValueError: too many values to unpack (expected 2), it means that you are trying to access too many values from an iterator. Value Error is a standard exception that can occur i
ItsMyCode
ValueError: too many values to unpack (expected 2) - ItsMyCode
If you get ValueError: too many values to unpack (expected 2), it means that you are trying to access too many values from an iterator.
Python for Beginners: Shortest Path Length from a Vertex to other Vertices in a Graph
Link: https://www.pythonforbeginners.com/data-structures/shortest-path-length-from-a-vertex-to-other-vertices-in-a-graph
Graphs are used to represent geographical maps, computer networks, etc. In this article, we will discuss how to calculate the shortest distance between vertices in an unweighted graph. To calculate th
Link: https://www.pythonforbeginners.com/data-structures/shortest-path-length-from-a-vertex-to-other-vertices-in-a-graph
Graphs are used to represent geographical maps, computer networks, etc. In this article, we will discuss how to calculate the shortest distance between vertices in an unweighted graph. To calculate th
PythonForBeginners.com
Shortest Path Length from a Vertex to other Vertices in a Graph - PythonForBeginners.com
Shortest Path Length from a Vertex to other Vertices in a Graph will help you improve your python skills with easy to follow examples.
Ching-Hwa Yu: How to Create a Python Plugin System with Stevedore
Link: https://chinghwayu.com/2021/11/how-to-create-a-python-plugin-system-with-stevedore/
Photo by Kieran Wood on Unsplash
One of the questions that I see and hear often is how to extend applications using a Python plugin system. For a test engineer, this is usually related to hardware abs
Link: https://chinghwayu.com/2021/11/how-to-create-a-python-plugin-system-with-stevedore/
Photo by Kieran Wood on Unsplash
One of the questions that I see and hear often is how to extend applications using a Python plugin system. For a test engineer, this is usually related to hardware abs
Ching-Hwa Yu
How to Create a Python Plugin System with Stevedore
Photo by Kieran Wood on Unsplash One of the questions that I see and hear often is how to extend applications using a Python plugin system. For a test engineer, this is usually related to hardware …
STX Next: Python Outsourcing: A Short Guide for CTOs and Technical Managers
Link: https://www.stxnext.com/blog/python-outsourcing-guide/
If we could distill Python’s main advantage over other programming languages into just one word, it would be: “simplicity.”
Link: https://www.stxnext.com/blog/python-outsourcing-guide/
If we could distill Python’s main advantage over other programming languages into just one word, it would be: “simplicity.”
Stxnext
Python Outsourcing: A Short Guide for CTOs and Technical Managers
Looking to outsource your Python development? Follow our Python outsourcing guide and find out all you need to know about Python development outsourcing.
PyCoder’s Weekly: Issue #501 (Nov. 30, 2021)
Link: https://pycoders.com/issues/501
#501 – NOVEMBER 30, 2021 View in Browser » Late-Bound Argument Defaults for Python Python supports default values for arguments to functions, but those defaults are evaluated at function-definit
Link: https://pycoders.com/issues/501
#501 – NOVEMBER 30, 2021 View in Browser » Late-Bound Argument Defaults for Python Python supports default values for arguments to functions, but those defaults are evaluated at function-definit
Pycoders
PyCoder’s Weekly | Issue #501
Issue #501 of the PyCoder’s Weekly newsletter, published Nov. 30, 2021.
Talk Python to Me: #343: Do Excel things, get notebook Python code with Mito
Link: https://talkpython.fm/episodes/show/343/do-excel-things-get-notebook-python-code-with-mito
Here's a question: What's the most common way to explore data? Would you say pandas and matplotlib? Maybe you went more general and said Jupyter notebooks. How about Excel, or Google Sheets, or Number
Link: https://talkpython.fm/episodes/show/343/do-excel-things-get-notebook-python-code-with-mito
Here's a question: What's the most common way to explore data? Would you say pandas and matplotlib? Maybe you went more general and said Jupyter notebooks. How about Excel, or Google Sheets, or Number
talkpython.fm
Do Excel things, get notebook Python code with Mito
Here's a question: What's the most common way to explore data? Would you say pandas and matplotlib? Maybe you went more general and said Jupyter notebooks. How about Excel, or Google Sheets, or Numbers, or some other spreadsheet app? Yeah, my bet is on Excel.…
Tryton News: Newsletter December 2021
Link: https://discuss.tryton.org/t/newsletter-december-2021/4774
After release 6.2 we have already resumed development with some cleaning and performance improvements.
Changes for the User
The early planning for stock quantities now takes internal incoming reque
Link: https://discuss.tryton.org/t/newsletter-december-2021/4774
After release 6.2 we have already resumed development with some cleaning and performance improvements.
Changes for the User
The early planning for stock quantities now takes internal incoming reque
Tryton Discussion
Newsletter December 2021
After release 6.2 we have already resumed development with some cleaning and performance improvements. Changes for the User The early planning for stock quantities now takes internal incoming requests into account. You can now define a delay after which…
Codementor: Best Free And Paid Air Quality API 2022
Link: https://www.codementor.io/getambee/best-free-and-paid-air-quality-api-2022-1o6wbgai4t
APIs for air quality may be used to detect air pollution, carbon monoxide, and the air quality index, among other things. You may get current, projected, and historical information. These APIs may be
Link: https://www.codementor.io/getambee/best-free-and-paid-air-quality-api-2022-1o6wbgai4t
APIs for air quality may be used to detect air pollution, carbon monoxide, and the air quality index, among other things. You may get current, projected, and historical information. These APIs may be
www.codementor.io
Best Free And Paid Air Quality API 2022 | Codementor
APIs for air quality may be used to detect air pollution, carbon monoxide, and the air quality index, among other things. You may get current, projected, and historical information. These APIs may be used to monitor the levels of key air pollutants from a…
Real Python: Advent of Code: Solving Your Puzzles With Python
Link: https://realpython.com/python-advent-of-code/
Advent of Code is an online Advent calendar where you’ll find new programming puzzles offered each day from December 1st to the 25th. While you can solve the puzzles at any time, the excitement when n
Link: https://realpython.com/python-advent-of-code/
Advent of Code is an online Advent calendar where you’ll find new programming puzzles offered each day from December 1st to the 25th. While you can solve the puzzles at any time, the excitement when n
Realpython
Advent of Code: Solving Your Puzzles With Python – Real Python
Advent of Code is an online advent calendar that shares new programming puzzles each day from December 1 to the 25. In this tutorial, you'll learn why solving programming puzzles can be beneficial and how you can get started with Advent of Code using Python.
Python for Beginners: Preorder Tree Traversal Algorithm in Python
Link: https://www.pythonforbeginners.com/data-structures/preorder-tree-traversal-algorithm-in-python
Binary trees are very useful in representing hierarchical data. In this article, we will discuss how to print all the elements in a binary tree in python. For this, we will use the preorder tree trave
Link: https://www.pythonforbeginners.com/data-structures/preorder-tree-traversal-algorithm-in-python
Binary trees are very useful in representing hierarchical data. In this article, we will discuss how to print all the elements in a binary tree in python. For this, we will use the preorder tree trave
PythonForBeginners.com
Preorder Tree Traversal Algorithm in Python - PythonForBeginners.com
Preorder Tree Traversal Algorithm in Python will help you improve your python skills with easy to follow examples and tutorials.
PyCharm: Introducing PyCharm 2021.3!
Link: https://blog.jetbrains.com/pycharm/2021/12/2021-3/
We’ve been working hard to deliver features in PyCharm that will make you more productive and your coding smoother. This release cycle introduces Poetry support, the new FastAPI project type, the Bet
Link: https://blog.jetbrains.com/pycharm/2021/12/2021-3/
We’ve been working hard to deliver features in PyCharm that will make you more productive and your coding smoother. This release cycle introduces Poetry support, the new FastAPI project type, the Bet
The JetBrains Blog
Introducing PyCharm 2021.3! | The PyCharm Blog
We’ve been working hard to deliver features in PyCharm that will make you more productive and your coding smoother. This release cycle introduces Poetry support, the new FastAPI project type, the Beta
Paolo Amoroso: An Intel 8080 Assembly Suite in Python
Link: http://blog.paoloamoroso.com/2021/11/an-intel-8080-assembly-suite-in-python.html
A blog post I stumbled upon made me start a new project, crank out lots of Python code, slip down a rabbit hole of arcane and fascinating corners of retrocomputing, and overflow with fun.The project i
Link: http://blog.paoloamoroso.com/2021/11/an-intel-8080-assembly-suite-in-python.html
A blog post I stumbled upon made me start a new project, crank out lots of Python code, slip down a rabbit hole of arcane and fascinating corners of retrocomputing, and overflow with fun.The project i
Paoloamoroso
An Intel 8080 Assembly Suite in Python
Suite8080 is a suite of Intel 8080 Assembly cross-development tools in Python comprising an assembler and a disassembler.