Matt Layman: Heroku Stack Upgrade - Building SaaS with Python and Django #147
Link: https://www.mattlayman.com/blog/2022/heroku-stack-upgrade-building-saas-with-python-and-django-147/
In this episode, I did some upgrades. We upgraded the app to the latest Heroku stack, upgraded htmx to the latest version, then worked on a small feature to add an empty state to a page when there is
Link: https://www.mattlayman.com/blog/2022/heroku-stack-upgrade-building-saas-with-python-and-django-147/
In this episode, I did some upgrades. We upgraded the app to the latest Heroku stack, upgraded htmx to the latest version, then worked on a small feature to add an empty state to a page when there is
Matt Layman
Heroku Stack Upgrade - Building SaaS with Python and Django #147
In this episode, I did some upgrades. We upgraded the app to the latest Heroku stack, upgraded htmx to the latest version, then worked on a small feature to add an empty state to a page when there is no useful data to display.
Python Morsels: Installing Python packages
Link: https://www.pythonmorsels.com/installing-python-packages/
When your code depends other Python libraries to run, you'll want to reach for pip and venv to install those third-party Python packages.
Table of contents
Our program depends on a third-party pac
Link: https://www.pythonmorsels.com/installing-python-packages/
When your code depends other Python libraries to run, you'll want to reach for pip and venv to install those third-party Python packages.
Table of contents
Our program depends on a third-party pac
Pythonmorsels
Installing Python packages
When your code depends other Python libraries to run, you'll want to reach for pip and venv to install those third-party Python packages.
IslandT: Python Example — How to use the with open file method in Python
Link: https://islandtropicaman.com/wp/2022/10/09/python-example-how-to-use-the-with-open-file-method-in-python/
In this Python example, I am going to create a Python program that will get the user poet inputs and then save them inside a file, and after that displayed those poets back on the screen.
I am going t
Link: https://islandtropicaman.com/wp/2022/10/09/python-example-how-to-use-the-with-open-file-method-in-python/
In this Python example, I am going to create a Python program that will get the user poet inputs and then save them inside a file, and after that displayed those poets back on the screen.
I am going t
Codementor: MicroPython MQTT Tutorial Based on Raspberry Pi
Link: https://www.codementor.io/emqtech/micropython-mqtt-tutorial-based-on-raspberry-pi-1xyzlmo1gx
This article introduces how to write an MQTT client on Raspberry Pi using MicroPython, and implements the connection, subscription and messaging, etc of MQTT.
Link: https://www.codementor.io/emqtech/micropython-mqtt-tutorial-based-on-raspberry-pi-1xyzlmo1gx
This article introduces how to write an MQTT client on Raspberry Pi using MicroPython, and implements the connection, subscription and messaging, etc of MQTT.
www.codementor.io
MicroPython MQTT Tutorial Based on Raspberry Pi | Codementor
This article introduces how to write an MQTT client on Raspberry Pi using MicroPython, and implements the connection, subscription and messaging, etc of MQTT.
Ahmed Bouchefra: How to delete blank page in MS Word
Link: https://efficientcoder.net/delete-blank-page-in-word/
You’ve decided that you’d like to get rid of a blank page in Word. In most cases, if you press the delete or backspace key on your keyboard a sufficient number of times, everything should work properl
Link: https://efficientcoder.net/delete-blank-page-in-word/
You’ve decided that you’d like to get rid of a blank page in Word. In most cases, if you press the delete or backspace key on your keyboard a sufficient number of times, everything should work properl
Efficient Coder
How to delete blank page in MS Word | EfficientCoder
Learn modern web development.
Podcast.__init__: How And Why To Build Effective Teams As An Engineering Leader
Link: https://www.pythonpodcast.com/effective-engineering-teams-jigar-desai-episode-380/
Your ability to build and maintain a software project is tempered by the strength of the team that you are working with. If you are in a position of leadership, then you are responsible for the growth
Link: https://www.pythonpodcast.com/effective-engineering-teams-jigar-desai-episode-380/
Your ability to build and maintain a software project is tempered by the strength of the team that you are working with. If you are in a position of leadership, then you are responsible for the growth
The Python Podcast.__init__
The Python Podcast.__init__: How And Why To Build Effective Teams As An Engineering Leader
An interview with Jigar Desai about his extensive experience building and scaling engineering teams and useful lessons that you can apply to your own work as an engineering leader.
Codementor: How to truncate/delete a database table from the AWS Glue job?
Link: https://www.codementor.io/rakeshkaswan/how-to-truncate-delete-database-table-from-aws-glue-job-1xy1ripn58
Truncating/Deleting a Mysql/MariaDB/Postgres table from AWS Glue using python
Link: https://www.codementor.io/rakeshkaswan/how-to-truncate-delete-database-table-from-aws-glue-job-1xy1ripn58
Truncating/Deleting a Mysql/MariaDB/Postgres table from AWS Glue using python
www.codementor.io
How to truncate/delete a database table from the AWS Glue job? | Codementor
Truncating/Deleting a Mysql/MariaDB/Postgres table from AWS Glue using python
PyCharm: Webinar: “Django-in-PyCharm Tips: Reloaded”
Link: https://blog.jetbrains.com/pycharm/2022/10/webinar-django-in-pycharm/
Two and a half years ago, we held a “Django tips in PyCharm” webinar. This refresher swaps out some tips, but also shows lots of fresh goodness in the IDE: the new UI, remote and sharing options, endp
Link: https://blog.jetbrains.com/pycharm/2022/10/webinar-django-in-pycharm/
Two and a half years ago, we held a “Django tips in PyCharm” webinar. This refresher swaps out some tips, but also shows lots of fresh goodness in the IDE: the new UI, remote and sharing options, endp
The JetBrains Blog
Webinar: “Django-in-PyCharm Tips: Reloaded” | The PyCharm Blog
Join us on October 20 at 3:00 pm UTC to look into what PyCharm offers Django development, featuring the new UI, remote and sharing options, endpoints, and more.
Zato Blog: HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS
Link: https://zato.io/blog/posts/hl7-fhir-security.html
HL7 FHIR Security
Preliminary reading: HL7 FHIR Integrations in Python
FHIR servers offer their APIs using REST, which in turn means that they are HTTP servers under the hood. As a result,
a few comm
Link: https://zato.io/blog/posts/hl7-fhir-security.html
HL7 FHIR Security
Preliminary reading: HL7 FHIR Integrations in Python
FHIR servers offer their APIs using REST, which in turn means that they are HTTP servers under the hood. As a result,
a few comm
zato.io
Zato Blog
IslandT: Python Example — Count the number of even numbers from 1 to 100
Link: https://islandtropicaman.com/wp/2022/10/10/python-example-count-the-number-of-even-numbers-from-1-to-100/
An even number is a number that can be divided by two, for example, 2, 4, 6, 8, and 10. In this example let us create a simple Python program that can count the number of the even numbers from 1 to 10
Link: https://islandtropicaman.com/wp/2022/10/10/python-example-count-the-number-of-even-numbers-from-1-to-100/
An even number is a number that can be divided by two, for example, 2, 4, 6, 8, and 10. In this example let us create a simple Python program that can count the number of the even numbers from 1 to 10
Mike Driscoll: PyDev of the Week: Sybren Stüvel
Link: https://www.blog.pythonlibrary.org/2022/10/10/pydev-of-the-week-sybren-stuvel/
This week we welcome Sybren Stüvel (@sastuvel) as our PyDev of the Week! Sybren is a core maintainer of the Python-RSA package and also works on Blender.
You can see what else Sybren is up to over on
Link: https://www.blog.pythonlibrary.org/2022/10/10/pydev-of-the-week-sybren-stuvel/
This week we welcome Sybren Stüvel (@sastuvel) as our PyDev of the Week! Sybren is a core maintainer of the Python-RSA package and also works on Blender.
You can see what else Sybren is up to over on
Mouse Vs Python
PyDev of the Week: Sybren Stüvel - Mouse Vs Python
This week we welcome Sybren Stüvel (@sastuvel) as our PyDev of the Week! Sybren is a core maintainer of the Python-RSA package and also works on Blender.
Python for Beginners: Split a Numpy Array in Python
Link: https://www.pythonforbeginners.com/basics/split-a-numpy-array-in-python
Numpy arrays are one of the most efficient data structures for handling numerical data. You can perform different mathematical operations on numpy arrays using built-in functions. In this article, we
Link: https://www.pythonforbeginners.com/basics/split-a-numpy-array-in-python
Numpy arrays are one of the most efficient data structures for handling numerical data. You can perform different mathematical operations on numpy arrays using built-in functions. In this article, we
PythonForBeginners.com
Split a Numpy Array in Python - PythonForBeginners.com
Split a Numpy Array in Python will help you improve your python skills with easy to follow examples and tutorials.
TestDriven.io: Deploying a Django App to Dokku on a DigitalOcean Droplet
Link: https://testdriven.io/blog/django-dokku/
This tutorial looks at how to deploy a Django application to Dokku on a DigitalOcean droplet.
Link: https://testdriven.io/blog/django-dokku/
This tutorial looks at how to deploy a Django application to Dokku on a DigitalOcean droplet.
testdriven.io
Deploying a Django App to Dokku on a DigitalOcean Droplet
This tutorial looks at how to deploy a Django application to Dokku on a DigitalOcean droplet.
Real Python: Python News: What's New From September 2022?
Link: https://realpython.com/python-news-september-2022/
In September 2022, the Python 3.11.0rc2 release candidate version became available for you to test and stay on top of Python’s latest features. This release is the last preview version before the fina
Link: https://realpython.com/python-news-september-2022/
In September 2022, the Python 3.11.0rc2 release candidate version became available for you to test and stay on top of Python’s latest features. This release is the last preview version before the fina
Realpython
Python News: What's New From September 2022 – Real Python
September 2022 brought some exciting Python news! In this news summary, you'll read about the latest release candidate of Python, the breaking changes that Python 3.10.7 introduced to fix a security vulnerability, the new releases of fundamental projects…
Python Morsels: Unindenting multi-line strings in Python
Link: https://www.pythonmorsels.com/dedent/
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!
Table of contents
Manually dedenting multi-line strings
Using tex
Link: https://www.pythonmorsels.com/dedent/
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!
Table of contents
Manually dedenting multi-line strings
Using tex
Pythonmorsels
Unindent multiline strings in Python with dedent
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!
Kushal Das: Introducing pyarti, python module for the Tor Project
Link: https://kushaldas.in/posts/introducing-pyarti-python-module-for-the-tor-project.html
python3 -m pip install pyarti
pyarti is a Python module written in
Rust using Arti from the Tor
Project. Right now pyarti is in the initial stage, and you can create a SOCKS5
proxy object, and pass
Link: https://kushaldas.in/posts/introducing-pyarti-python-module-for-the-tor-project.html
python3 -m pip install pyarti
pyarti is a Python module written in
Rust using Arti from the Tor
Project. Right now pyarti is in the initial stage, and you can create a SOCKS5
proxy object, and pass
Mike Driscoll: The Python Quiz Book Kickstarter
Link: https://www.blog.pythonlibrary.org/2022/10/10/the-python-quiz-book-kickstarter/
Quizzes are a fun way to test your knowledge of something. They make you think. The Python Quiz Book is all about brain teasers for the Python programming language. The Python Quiz Book isn't made t
Link: https://www.blog.pythonlibrary.org/2022/10/10/the-python-quiz-book-kickstarter/
Quizzes are a fun way to test your knowledge of something. They make you think. The Python Quiz Book is all about brain teasers for the Python programming language. The Python Quiz Book isn't made t
Mouse Vs Python
The Python Quiz Book Kickstarter - Mouse Vs Python
Quizzes are a fun way to test your knowledge of something. They make you think. The Python Quiz Book is all about brain teasers for the Python
PyBites: Become a more effective learner with Russell Helmstedter
Link: https://pybit.es/articles/pp90-become-a-more-effective-learner/
Listen now:
This week we have Russell Helmstedter (@rhelmstedter) on the show to talk about a book about learning that will blow your mind: Learn Better We talk through the six facets of learning the
Link: https://pybit.es/articles/pp90-become-a-more-effective-learner/
Listen now:
This week we have Russell Helmstedter (@rhelmstedter) on the show to talk about a book about learning that will blow your mind: Learn Better We talk through the six facets of learning the
PyBites
Become A More Effective Learner With Russell Helmstedter - PyBites
Listen now:
Codementor: Android's Lock Screen Pattern In Pygame
Link: https://www.codementor.io/abdurrahmaanj/android-s-lock-screen-pattern-in-pygame-1y12ejsg3s
Learn how to implement Android's lock screen pattern in pygame
Link: https://www.codementor.io/abdurrahmaanj/android-s-lock-screen-pattern-in-pygame-1y12ejsg3s
Learn how to implement Android's lock screen pattern in pygame
www.codementor.io
Android's Lock Screen Pattern In Pygame | Codementor
Learn how to implement Android's lock screen pattern in pygame
IslandT: Python Example — What is the total ASCII values of characters in the Hello World string
Link: https://islandtropicaman.com/wp/2022/10/11/python-example-what-is-the-total-ascii-values-of-characters-in-the-hello-world-string/
I always want to know what is the total value of all the ASCII values of characters in the Hello World string. In order to get the ASCII value of a character, I will use the Python ord method to find
Link: https://islandtropicaman.com/wp/2022/10/11/python-example-what-is-the-total-ascii-values-of-characters-in-the-hello-world-string/
I always want to know what is the total value of all the ASCII values of characters in the Hello World string. In order to get the ASCII value of a character, I will use the Python ord method to find
Real Python: Providing Multiple Constructors in Your Python Classes
Link: https://realpython.com/courses/multiple-constructors-python/
Sometimes you need to write a Python class that provides multiple ways to construct objects. In other words, you want a class that implements multiple constructors. This kind of class comes in handy w
Link: https://realpython.com/courses/multiple-constructors-python/
Sometimes you need to write a Python class that provides multiple ways to construct objects. In other words, you want a class that implements multiple constructors. This kind of class comes in handy w
Realpython
Using Multiple Constructors in Your Python Classes – Real Python
In this video course, you'll learn how to provide multiple constructors in your Python classes. To this end, you'll learn different techniques, such as checking argument types, using default argument values, writing class methods, and implementing single…