Test and Code: 134: Business Outcomes and Software Development
Link: https://testandcode.com/134
Within software projects, there are lots of metrics we could measure. But which ones really matter. Instead of a list, Benjamin Harding shares with us a way of thinking about business outcomes that ca
Link: https://testandcode.com/134
Within software projects, there are lots of metrics we could measure. But which ones really matter. Instead of a list, Benjamin Harding shares with us a way of thinking about business outcomes that ca
Test & Code : Python Testing for Software Engineering
Test & Code : Python Testing for Software Engineering 134: Business Outcomes and Software Development
Within software projects, there are lots of metrics we could measure. But which ones really matter. Instead of a list, Benjamin Harding shares with us a way of thinking about business outcomes that can help us with every day decision making.
Ned Batchelder: Ordered dict surprises
Link: https://nedbatchelder.com//blog/202010/ordered_dict_surprises.html
Since Python 3.6, regular dictionaries retain their insertion order: when you
iterate over a dict, you get the items in the same order they were added to the
dict. Before 3.6, dicts were unordered: t
Link: https://nedbatchelder.com//blog/202010/ordered_dict_surprises.html
Since Python 3.6, regular dictionaries retain their insertion order: when you
iterate over a dict, you get the items in the same order they were added to the
dict. Before 3.6, dicts were unordered: t
Nedbatchelder
Ordered dict surprises
Since Python 3.6, regular dictionaries retain their insertion order: when you iterate over a dict, you get the items in the same order they were added to the dict. Before 3.6, dicts were unordered: the iteration order was seemingly random.
Reuven Lerner: What’s the easiest way to boost your career as a software developer? Learn to touch type.
Link: https://lerner.co.il/2020/10/12/whats-the-easiest-way-to-boost-your-career-as-a-software-developer-learn-to-touch-type/
I’ve been a professional programmer for about 30 years, self-employed for 25 years, and doing full-time corporate Python training for more than a decade.
I run a small business, which involves me wri
Link: https://lerner.co.il/2020/10/12/whats-the-easiest-way-to-boost-your-career-as-a-software-developer-learn-to-touch-type/
I’ve been a professional programmer for about 30 years, self-employed for 25 years, and doing full-time corporate Python training for more than a decade.
I run a small business, which involves me wri
Reuven Lerner
What's the easiest way to boost your career as a software developer? Learn to touch type.
I've been a professional programmer for about 30 years, self-employed for 25 years, and doing full-time corporate Python training for more than a decade. I run a small business, which involves me writing, programming, and
Podcast.__init__: Cloud Native Application Delivery Using GitOps - Episode 284
Link: https://www.pythonpodcast.com/gitops-cloud-native-operations-episode-284/
The way that applications are being built and delivered has changed dramatically in recent years with the growing trend toward cloud native software. As part of this movement toward the infrastructure
Link: https://www.pythonpodcast.com/gitops-cloud-native-operations-episode-284/
The way that applications are being built and delivered has changed dramatically in recent years with the growing trend toward cloud native software. As part of this movement toward the infrastructure
The Python Podcast.__init__
The Python Podcast.__init__: Cloud Native Application Delivery Using GitOps
An interview about the challenges and opportunities of using GitOps to develop and deliver your applications to production with cloud native technologies.
Kushal Das: Updates from Johnnycanencrpt development in last few weeks
Link: https://kushaldas.in/posts/updates-from-johnnycanencrpt-development-in-last-few-weeks.html
In July this year, I wrote a very initial Python module in Rust for OpenPGP,
Johnnycanencrypt
aka jce. It had very basic encryption, decryption, signing, verification,
creation of new keys available.
Link: https://kushaldas.in/posts/updates-from-johnnycanencrpt-development-in-last-few-weeks.html
In July this year, I wrote a very initial Python module in Rust for OpenPGP,
Johnnycanencrypt
aka jce. It had very basic encryption, decryption, signing, verification,
creation of new keys available.
Tarek Ziade: Web App Software Development Maturity Model
Link: https://ziade.org/2020/10/12/web-app-software-development-maturity-model/
The Capability Maturity Model Integration (CMMI)
describes different levels of maturity for the development process of any
organization in a measurable way. It offers a set of best practices
to improv
Link: https://ziade.org/2020/10/12/web-app-software-development-maturity-model/
The Capability Maturity Model Integration (CMMI)
describes different levels of maturity for the development process of any
organization in a measurable way. It offers a set of best practices
to improv
Codementor: How to Implement Role based Access Control With FastAPI
Link: https://www.codementor.io/mandarvaze/how-to-implement-role-based-access-control-with-fastapi-1b76qbxn0s
Quick Summary of RBAC concept, working code snippets and how I reached there
Link: https://www.codementor.io/mandarvaze/how-to-implement-role-based-access-control-with-fastapi-1b76qbxn0s
Quick Summary of RBAC concept, working code snippets and how I reached there
www.codementor.io
How to Implement Role based Access Control With FastAPI | Codementor
Quick Summary of RBAC concept, working code snippets and how I reached there
Python Morsels: Looping over multiple iterables at once
Link: https://www.pythonmorsels.com/topics/looping-over-multiple-iterables/
Related Article:
Loop Better: a deeper look at iteration in Python
How to loop with indexes in Python
Transcript
Often we have to loop over two iterables at the same time. An iterable is anything
Link: https://www.pythonmorsels.com/topics/looping-over-multiple-iterables/
Related Article:
Loop Better: a deeper look at iteration in Python
How to loop with indexes in Python
Transcript
Often we have to loop over two iterables at the same time. An iterable is anything
Pythonmorsels
Looping over multiple iterables at once
Need to loop over two (or more) iterables at the same time? Don't use range. Don't use enumerate. Use the built-in zip function. As you loop over zip you'll get the n-th item from each iterable.
Stack Abuse: Simple NLP in Python With TextBlob: Tokenization
Link: https://stackabuse.com/simple-nlp-in-python-with-textblob-tokenization/
Introduction
The amount of textual data on the Internet has significantly increased in the past decades. There's no doubt that the processing of this amount of information must be automated, and the T
Link: https://stackabuse.com/simple-nlp-in-python-with-textblob-tokenization/
Introduction
The amount of textual data on the Internet has significantly increased in the past decades. There's no doubt that the processing of this amount of information must be automated, and the T
Stack Abuse
Simple NLP in Python With TextBlob: Tokenization
In this article we'll take a look at how to tokenize a given text using the TextBlob library. We'll also go through examples of how to tokenize words and sentences.
Real Python: Web Scraping With Beautiful Soup and Python
Link: https://realpython.com/courses/web-scraping-beautiful-soup/
The incredible amount of data on the Internet is a rich resource for any field of research or personal interest. To effectively harvest that data, you’ll need to become skilled at web scraping. The Py
Link: https://realpython.com/courses/web-scraping-beautiful-soup/
The incredible amount of data on the Internet is a rich resource for any field of research or personal interest. To effectively harvest that data, you’ll need to become skilled at web scraping. The Py
Realpython
Web Scraping With Beautiful Soup and Python – Real Python
In this course, you'll walk through the main steps of the web scraping process. You'll learn how to write a script that uses Python's requests library to scrape data from a website. You'll also use Beautiful Soup to extract the specific pieces of information…
Reuven Lerner: Ask me anything!
Link: https://lerner.co.il/2020/10/13/ask-me-anything/
Later this month, I’ll appear on the “Exploiting with Teja Kummarikuntla” podcast. As part of that appearance, I’ll be doing an AMA (“ask me anything”) segment — but in order for that to happen, I nee
Link: https://lerner.co.il/2020/10/13/ask-me-anything/
Later this month, I’ll appear on the “Exploiting with Teja Kummarikuntla” podcast. As part of that appearance, I’ll be doing an AMA (“ask me anything”) segment — but in order for that to happen, I nee
Reuven Lerner
Ask me anything!
Later this month, I'll appear on the "Exploiting with Teja Kummarikuntla" podcast. As part of
PyCoder’s Weekly: Issue #442 (Oct. 13, 2020)
Link: https://pycoders.com/issues/442
#442 – OCTOBER 13, 2020 View in Browser » Exploring the New Features of Python 3.9 Python 3.9 has arrived! Real Python contributors Geir Arne Hjelle and Christopher Trudeau are walking you throu
Link: https://pycoders.com/issues/442
#442 – OCTOBER 13, 2020 View in Browser » Exploring the New Features of Python 3.9 Python 3.9 has arrived! Real Python contributors Geir Arne Hjelle and Christopher Trudeau are walking you throu
Pycoders
PyCoder’s Weekly | Issue #442
Issue #442 of the PyCoder’s Weekly newsletter, published Oct. 13, 2020.
Stack Abuse: Generating Synthetic Data with Numpy and Scikit-Learn
Link: https://stackabuse.com/generating-synthetic-data-with-numpy-and-scikit-learn/
Introduction
In this tutorial, we'll discuss the details of generating different synthetic datasets using Numpy and Scikit-learn libraries. We'll see how different samples can be generated from variou
Link: https://stackabuse.com/generating-synthetic-data-with-numpy-and-scikit-learn/
Introduction
In this tutorial, we'll discuss the details of generating different synthetic datasets using Numpy and Scikit-learn libraries. We'll see how different samples can be generated from variou
Stack Abuse
Generating Synthetic Data with Numpy and Scikit-Learn
In this article, we'll cover how to generate synthetic data with Python, Numpy and Scikit Learn. We'll generate 1D data, multilabel, multiclass classification and regression data.
Real Python: Data Management With Python, SQLite, and SQLAlchemy
Link: https://realpython.com/python-sqlite-sqlalchemy/
All programs process data in one form or another, and many need to be able to save and retrieve that data from one invocation to the next. Python, SQLite, and SQLAlchemy give your programs database fu
Link: https://realpython.com/python-sqlite-sqlalchemy/
All programs process data in one form or another, and many need to be able to save and retrieve that data from one invocation to the next. Python, SQLite, and SQLAlchemy give your programs database fu
Realpython
Data Management With Python, SQLite, and SQLAlchemy – Real Python
In this tutorial, you'll learn how to store and retrieve data using Python, SQLite, and SQLAlchemy as well as with flat files. Using SQLite with Python brings with it the additional benefit of accessing data with SQL. By adding SQLAlchemy, you can work with…
Mike Driscoll: ReportLab 101 – Creating Fonts on the Canvas (Video)
Link: https://www.blog.pythonlibrary.org/2020/10/14/reportlab-101-creating-fonts-on-the-canvas-video/
In this tutorial, you will learn how to use ReportLab’s standard built-in fonts when generating PDFs with Python.
The post ReportLab 101 – Creating Fonts on the Canvas (Video) appeared first on The M
Link: https://www.blog.pythonlibrary.org/2020/10/14/reportlab-101-creating-fonts-on-the-canvas-video/
In this tutorial, you will learn how to use ReportLab’s standard built-in fonts when generating PDFs with Python.
The post ReportLab 101 – Creating Fonts on the Canvas (Video) appeared first on The M
The Mouse Vs. The Python
ReportLab 101 - Creating Fonts on the Canvas (Video) - The Mouse Vs. The Python
In this tutorial, you will learn how to use ReportLab’s standard built-in fonts when generating PDFs with Python.
TestDriven.io: Running Django on DigitalOcean's App Platform
Link: https://testdriven.io/blog/django-digitalocean-app-platform/
This article looks at how to deploy a Django application to DigitalOcean's App Platform.
Link: https://testdriven.io/blog/django-digitalocean-app-platform/
This article looks at how to deploy a Django application to DigitalOcean's App Platform.
testdriven.io
Running Django on DigitalOcean's App Platform
This article looks at how to deploy a Django application to DigitalOcean's App Platform.
Sebastian Witowski: type() vs. isinstance()
Link: https://switowski.com/blog/type-vs-isinstance
Python is a dynamically typed language. A variable, initially created as a string, can be later reassigned to an integer or a float. And the interpreter won’t complain:
name = "Sebastian"
# Dynamical
Link: https://switowski.com/blog/type-vs-isinstance
Python is a dynamically typed language. A variable, initially created as a string, can be later reassigned to an integer or a float. And the interpreter won’t complain:
name = "Sebastian"
# Dynamical
Sebastian Witowski
type() vs. isinstance()
What's the difference between type() and isinstance() methods, and which one is better for checking the type of an object?
Codementor: AI, ML and Python: Let’s See How far They Can Go Together
Link: https://www.codementor.io/theronald248/ai-ml-and-python-let-s-see-how-far-they-can-go-together-1b9praj476
You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
Link: https://www.codementor.io/theronald248/ai-ml-and-python-let-s-see-how-far-they-can-go-together-1b9praj476
You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
www.codementor.io
AI, ML and Python: Let’s See How far They Can Go Together | Codementor
You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
Stack Abuse: Python: Get Number of Elements in a List
Link: https://stackabuse.com/python-get-number-of-elements-in-a-list/
Introduction
Getting the number of elements in a list in Python is a common operation. For example, you will need to know how many elements the list has whenever you iterate through it. Remember that
Link: https://stackabuse.com/python-get-number-of-elements-in-a-list/
Introduction
Getting the number of elements in a list in Python is a common operation. For example, you will need to know how many elements the list has whenever you iterate through it. Remember that
Stack Abuse
Python: Get Number of Elements in a List
In this article we'll take a look at how to get the number of elements in a list in Python. We'll go through examples of getting all elements, unique elements, and elements in nested lists.
Python Circle: How to post messages to Microsoft teams channel using Python
Link: https://pythoncircle.com/post/725/how-to-post-messages-to-microsoft-teams-channel-using-python/
In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.
Link: https://pythoncircle.com/post/725/how-to-post-messages-to-microsoft-teams-channel-using-python/
In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.
Python Circle
How to post messages to Microsoft teams channel using Python
In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.