Eli Bendersky: Concurrent Servers: Part 2 - Threads
Link: https://eli.thegreenplace.net/2017/concurrent-servers-part-2-threads/
This is part 2 of a series on writing concurrent network servers. Part 1
presented the protocol implemented by the server, as well as the code for a
simple sequential server, as a baseline for the ser
Link: https://eli.thegreenplace.net/2017/concurrent-servers-part-2-threads/
This is part 2 of a series on writing concurrent network servers. Part 1
presented the protocol implemented by the server, as well as the code for a
simple sequential server, as a baseline for the ser
Eli Bendersky: pycparser v2.09 released, project moved to BitBucket
Link: https://eli.thegreenplace.net/2012/12/27/pycparser-v2-09-released-project-moved-to-bitbucket
I've released version 2.09 of pycparser. In addition to numerous issue fixes, the two major changes for this release are:
The pycparser project has moved to BitBucket from Google Code. It's still av
Link: https://eli.thegreenplace.net/2012/12/27/pycparser-v2-09-released-project-moved-to-bitbucket
I've released version 2.09 of pycparser. In addition to numerous issue fixes, the two major changes for this release are:
The pycparser project has moved to BitBucket from Google Code. It's still av
Eli Bendersky: Depthwise separable convolutions for machine learning
Link: https://eli.thegreenplace.net/2018/depthwise-separable-convolutions-for-machine-learning/
Convolutions are an important tool in modern deep neural networks (DNNs). This
post is going to discuss some common types of convolutions, specifically
regular and depthwise separable convolutions. My
Link: https://eli.thegreenplace.net/2018/depthwise-separable-convolutions-for-machine-learning/
Convolutions are an important tool in modern deep neural networks (DNNs). This
post is going to discuss some common types of convolutions, specifically
regular and depthwise separable convolutions. My
Eli Bendersky: Understanding how to implement a character-based RNN language model
Link: https://eli.thegreenplace.net/2018/understanding-how-to-implement-a-character-based-rnn-language-model/
In a single gist,
Andrej Karpathy did something
truly impressive. In a little over 100 lines of Python - without relying on any
heavy-weight machine learning frameworks - he presents a fairly complete
Link: https://eli.thegreenplace.net/2018/understanding-how-to-implement-a-character-based-rnn-language-model/
In a single gist,
Andrej Karpathy did something
truly impressive. In a little over 100 lines of Python - without relying on any
heavy-weight machine learning frameworks - he presents a fairly complete
Codementor: #01 | Getting Started with Pandas
Link: https://www.codementor.io/projects196/01-getting-started-with-pandas-1xxct3wach
A clear introduction to Pandas, a Python library to manipulate tabular data, where you can discover its many possibilities and get a concise overview.
Link: https://www.codementor.io/projects196/01-getting-started-with-pandas-1xxct3wach
A clear introduction to Pandas, a Python library to manipulate tabular data, where you can discover its many possibilities and get a concise overview.
www.codementor.io
#01 | Getting Started with Pandas | Codementor
A clear introduction to Pandas, a Python library to manipulate tabular data, where you can discover its many possibilities and get a concise overview.
The Digital Cat: Multiple inheritance and mixin classes in Python
Link: https://www.thedigitalcatonline.com/blog/2020/03/27/mixin-classes-in-python/
I recently revisited three old posts on Django class-based views that I wrote for this blog, updating them to Django 3.0 (you can find them here) and noticed once again that the code base uses mixin c
Link: https://www.thedigitalcatonline.com/blog/2020/03/27/mixin-classes-in-python/
I recently revisited three old posts on Django class-based views that I wrote for this blog, updating them to Django 3.0 (you can find them here) and noticed once again that the code base uses mixin c
Thedigitalcatonline
Multiple inheritance and mixin classes in Python
This post describes what mixin classes are in theory, why we need them and how they can be implemented in Python. It also shows a working example from the class-based views code of the Django framework.
The Digital Cat: Method overriding in Python
Link: https://www.thedigitalcatonline.com/blog/2014/05/19/method-overriding-in-python/
What is overriding? Overriding is the ability of a class to change the implementation of a method provided by one of its ancestors.Overriding is a very important part of OOP since it is the feature th
Link: https://www.thedigitalcatonline.com/blog/2014/05/19/method-overriding-in-python/
What is overriding? Overriding is the ability of a class to change the implementation of a method provided by one of its ancestors.Overriding is a very important part of OOP since it is the feature th
Thedigitalcatonline
Method overriding in Python
Overriding is the ability of a class to change the implementation of a method provided by one of its ancestors.
The Digital Cat: Accessing attributes in Python
Link: https://www.thedigitalcatonline.com/blog/2015/01/12/accessing-attributes-in-python/
Python is a language that tries to push the object-oriented paradigm to its maximum. This means that its object model is very powerful compared to that of other languages, but also that the behaviour
Link: https://www.thedigitalcatonline.com/blog/2015/01/12/accessing-attributes-in-python/
Python is a language that tries to push the object-oriented paradigm to its maximum. This means that its object model is very powerful compared to that of other languages, but also that the behaviour
Thedigitalcatonline
Accessing attributes in Python
The behaviour of Python code may result surprising to new programmers.
Ned Batchelder: Decorator shortcuts
Link: https://nedbatchelder.com/blog/202210/decorator_shortcuts.html
When using many decorators in code, there’s a shortcut you can use if you
find yourself repeating them. They can be assigned to a variable just like
any other Python expression.Don’t worry if you don
Link: https://nedbatchelder.com/blog/202210/decorator_shortcuts.html
When using many decorators in code, there’s a shortcut you can use if you
find yourself repeating them. They can be assigned to a variable just like
any other Python expression.Don’t worry if you don
Nedbatchelder
Decorator shortcuts
When using many decorators in code, there’s a shortcut you can use if you find yourself repeating them. They can be assigned to a variable just like any other Python expression.
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.