Real Python: Python Timer Functions: Three Ways to Monitor Your Code
Link: https://realpython.com/python-timer/
While many developers recognize Python as an effective programming language, pure Python programs may run slower than their counterparts in compiled languages like C, Rust, and Java. Throughout this t
Link: https://realpython.com/python-timer/
While many developers recognize Python as an effective programming language, pure Python programs may run slower than their counterparts in compiled languages like C, Rust, and Java. Throughout this t
Realpython
Python Timer Functions: Three Ways to Monitor Your Code – Real Python
In this step-by-step tutorial, you'll learn how to use Python timer functions to monitor how quickly your programs are running. You'll use classes, context managers, and decorators to measure your program's running time. You'll also learn the benefits of…
John Cook: Minimizing context switching between shell and Python
Link: https://www.johndcook.com/blog/2019/12/30/shell-and-python/
Sometimes you’re in the flow using the command line and you’d like to briefly switch over to Python without too much interruption. Or it could be the other way around: you’re in the Python REPL and ne
Link: https://www.johndcook.com/blog/2019/12/30/shell-and-python/
Sometimes you’re in the flow using the command line and you’d like to briefly switch over to Python without too much interruption. Or it could be the other way around: you’re in the Python REPL and ne
John D. Cook | Applied Mathematics Consulting
Python REPL and shell integration
Ways to minimize the context interruption when moving between the shell and a Python session.
Mike C. Fletcher: Playing with EGL+OpenGL Off-screen Multi-Card
Link: http://blog.vrplumber.com/b/2019/12/30/playing-eglopengl-screen-multi-card/
So I've now spent the last day and a half playing with getting EGL offscreen rendering working on Linux. There are two major ways to do off-screen rendering with EGL and OpenGL. In the first, you use
Link: http://blog.vrplumber.com/b/2019/12/30/playing-eglopengl-screen-multi-card/
So I've now spent the last day and a half playing with getting EGL offscreen rendering working on Linux. There are two major ways to do off-screen rendering with EGL and OpenGL. In the first, you use
Vrplumber
Plumbing Life's Depths - Playing with EGL+OpenGL Off-screen Multi-Card
So I've now spent the last day and a half playing with getting EGL offscreen rendering working on Linux. There are two major ways to do off-screen rendering with EGL and OpenGL. In the first, you use a pbuffer surface, that surface is basically a purpose…
qutebrowser development blog: 2019 qutebrowser crowdfunding - reminder
Link: https://blog.qutebrowser.org/2019-qutebrowser-crowdfunding-reminder.html
Two months ago, I wrote:
Just like in the 2017/2018 crowdfundings, it'll be possible to get t-shirts and stickers again. I'll also add some new swag to the mix :)
Just a quick reminder: If you want ph
Link: https://blog.qutebrowser.org/2019-qutebrowser-crowdfunding-reminder.html
Two months ago, I wrote:
Just like in the 2017/2018 crowdfundings, it'll be possible to get t-shirts and stickers again. I'll also add some new swag to the mix :)
Just a quick reminder: If you want ph
Zero-with-Dot (Oleg Żero): Training on batch: how to split data effectively?
Link: https://zerowithdot.com/splitting-to-batches/
Introduction
With increasing volumes of the data, a common approach to train machine-learning models is to apply the so-called training on batch.
This approach involves splitting a dataset into a seri
Link: https://zerowithdot.com/splitting-to-batches/
Introduction
With increasing volumes of the data, a common approach to train machine-learning models is to apply the so-called training on batch.
This approach involves splitting a dataset into a seri
Zerowithdot
Training on batch: how do you split the data?
Creating data batches for model training evaluated in context of loading data using python generators, HDF5 files and numpy using a sound processing machine-learning model as an example.
Learn PyQt: LearnPyQt — One year in, and more to come.
Link: https://www.learnpyqt.com/blog/learn-pyqt-one-year-in-and-more-to-come/
It's been a very good year.Back in May I was looking through my collection of PyQt tutorials and videos and trying to decide what to do with them. They were pretty popular, but being hosted on multipl
Link: https://www.learnpyqt.com/blog/learn-pyqt-one-year-in-and-more-to-come/
It's been a very good year.Back in May I was looking through my collection of PyQt tutorials and videos and trying to decide what to do with them. They were pretty popular, but being hosted on multipl
Learn PyQt
LearnPyQt — One year in, and much more to come.
A quick retrospective on 2019 It's been a very good year.
Codementor: Making Your First GUI: Python3, Tkinter
Link: https://www.codementor.io/powderblock/making-your-first-gui-python3-tkinter-11fi1rbje7
Your First GUI: Python3, Tkinter! Making a conversion app with a GUI
Link: https://www.codementor.io/powderblock/making-your-first-gui-python3-tkinter-11fi1rbje7
Your First GUI: Python3, Tkinter! Making a conversion app with a GUI
www.codementor.io
Making Your First GUI: Python3, Tkinter | Codementor
Your First GUI: Python3, Tkinter! Making a conversion app with a GUI
Moshe Zadka: Meditations on the Zen of Python
Link: https://orbifold.xyz/zen-of-python.html
(This is based on the series published in opensource.com as
9 articles:
1, 2, 3, 4, 5, 6, 7, 8, 9)
Python contributor Tim Peters introduced us to the
Zen of Python
in 1999.
Twenty years later,
its 19
Link: https://orbifold.xyz/zen-of-python.html
(This is based on the series published in opensource.com as
9 articles:
1, 2, 3, 4, 5, 6, 7, 8, 9)
Python contributor Tim Peters introduced us to the
Zen of Python
in 1999.
Twenty years later,
its 19
orbifold.xyz
Orbifolds and Other Games - Meditations on the Zen of Python
S. Lott: Christmas Ornament
Link: http://slott-softwarearchitect.blogspot.com/2019/12/christmas-ornament.html
See https://github.com/slott56/cpx-xmas-ornamentYou'll need a Circuit Playground Express https://www.adafruit.com/product/3333Install the code. Enjoy the noise and blinky lights.The MML translation is
Link: http://slott-softwarearchitect.blogspot.com/2019/12/christmas-ornament.html
See https://github.com/slott56/cpx-xmas-ornamentYou'll need a Circuit Playground Express https://www.adafruit.com/product/3333Install the code. Enjoy the noise and blinky lights.The MML translation is
Blogspot
Christmas Ornament
See https://github.com/slott56/cpx-xmas-ornament You'll need a Circuit Playground Express https://www.adafruit.com/product/3333 Install...
Real Python: Sorting Data With Python
Link: https://realpython.com/courses/python-sorting-data/
All programmers will have to write code to sort items or data at some point. Sorting can be critical to the user experience in your application, whether it’s ordering a user’s most recent activity by
Link: https://realpython.com/courses/python-sorting-data/
All programmers will have to write code to sort items or data at some point. Sorting can be critical to the user experience in your application, whether it’s ordering a user’s most recent activity by
Realpython
Sorting Data With Python – Real Python
In this step-by-step course, you’ll learn how to sort in Python. You'll know how to sort various types of data in different data structures, customize the order, and work with two different ways of sorting in Python.
John Cook: Area of sinc and jinc function lobes
Link: https://www.johndcook.com/blog/2019/12/31/sinc-jinc-lobes/
Someone left a comment this morning on my blog post on sinc and jinc integrals regarding the area of the lobes.
It would be nice to have the values of integrals of each lobe, i.e. integrals between 0
Link: https://www.johndcook.com/blog/2019/12/31/sinc-jinc-lobes/
Someone left a comment this morning on my blog post on sinc and jinc integrals regarding the area of the lobes.
It would be nice to have the values of integrals of each lobe, i.e. integrals between 0
Johndcook
Area of sinc and jinc function lobes
Computing the area of the lobes of the sinc function sin(x)/x and the analogous jinc function J_1(x)/x.
Catalin George Festila: News : The Python 2.7 no longer support from Python team.
Link: http://python-catalin.blogspot.com/2019/12/news-python-27-no-longer-support-from.html
The 1st of January 2020 will mark the sunset of Python 2.7.
It’s clear that Python 3 is more popular these days.
You can learn more about the popularity of both on Google Trends.
Python 3.0 was releas
Link: http://python-catalin.blogspot.com/2019/12/news-python-27-no-longer-support-from.html
The 1st of January 2020 will mark the sunset of Python 2.7.
It’s clear that Python 3 is more popular these days.
You can learn more about the popularity of both on Google Trends.
Python 3.0 was releas
Blogspot
News : The Python 2.7 no longer support from Python team.
News , articles and tutorials about programming with python with source code and examples under Windows and Linux operating systems.
Test and Code: 97: 2019 Retrospective, 2020 Plans, and an amazing decade
Link: https://testandcode.com/97
This episode is not just a look back on 2019, and a look forward to 2020.
Also, 2019 is the end of an amazingly transofrmative decade for me, so I'm going to discuss that as well.
top 10 episodes of 2
Link: https://testandcode.com/97
This episode is not just a look back on 2019, and a look forward to 2020.
Also, 2019 is the end of an amazingly transofrmative decade for me, so I'm going to discuss that as well.
top 10 episodes of 2
Test & Code
Test & Code 97: 2019 Retrospective, 2020 Plans, and an amazing decade
This episode is not just a look back on 2019, and a look forward to 2020.
Also, 2019 is the end of an amazingly transofrmative decade for me, so I'm going to discuss that as well.
Also, 2019 is the end of an amazingly transofrmative decade for me, so I'm going to discuss that as well.
PyCoder’s Weekly: Issue #401 (Dec. 31, 2019)
Link: https://pycoders.com/issues/401
#401 – DECEMBER 31, 2019 View in Browser » Python 2.7 Retires Today Python 2.7 will not be maintained past Jan 1st, 2020. So long Python 2, and thank you for your years of faithful service. Pyth
Link: https://pycoders.com/issues/401
#401 – DECEMBER 31, 2019 View in Browser » Python 2.7 Retires Today Python 2.7 will not be maintained past Jan 1st, 2020. So long Python 2, and thank you for your years of faithful service. Pyth
Pycoders
PyCoder’s Weekly | Issue #401
Issue #401 of the PyCoder’s Weekly newsletter, published Dec. 31, 2019.
Tryton News: Newsletter January 2020
Link: https://discuss.tryton.org/t/newsletter-january-2020/2037
@ced wrote:
photo-of-2020-on-pink-background-3401900.jpg1280×854 211 KB
The Tryton team wishes you a happy new year.
Here are the new features the team has already prepared for the next version.
Co
Link: https://discuss.tryton.org/t/newsletter-january-2020/2037
@ced wrote:
photo-of-2020-on-pink-background-3401900.jpg1280×854 211 KB
The Tryton team wishes you a happy new year.
Here are the new features the team has already prepared for the next version.
Co
Tryton Discussion
Newsletter January 2020
The Tryton team wishes you a happy new year. Here are the new features the team has already prepared for the next version. Contents: Changes for users Changes for developers Changes For The User We prevent posting draft moves that were created when a…
IslandT: Create a simple python project on Google Colaboratory
Link: https://kibiwebgeek.com/create-a-simple-python-project-on-google-colaboratory/
Hello and happy 2020 to you all, in this year I will continue to write more python related articles and continue to build up this website which is not only for python programming but also other intere
Link: https://kibiwebgeek.com/create-a-simple-python-project-on-google-colaboratory/
Hello and happy 2020 to you all, in this year I will continue to write more python related articles and continue to build up this website which is not only for python programming but also other intere
Mike C. Fletcher: DRM Names for EGL Enumerated Devices
Link: http://blog.vrplumber.com/b/2019/12/31/drm-names-egl-enumerated-devices/
So it turns out that there's an extension for getting the DRM name for an EGL queried device that seems to work on Ubuntu 19.10. With that it should be relatively easy to target an off-screen render t
Link: http://blog.vrplumber.com/b/2019/12/31/drm-names-egl-enumerated-devices/
So it turns out that there's an extension for getting the DRM name for an EGL queried device that seems to work on Ubuntu 19.10. With that it should be relatively easy to target an off-screen render t
Vrplumber
Plumbing Life's Depths - DRM Names for EGL Enumerated Devices
So it turns out that there's an extension for getting the DRM name for an EGL queried device that seems to work on Ubuntu 19.10. With that it should be relatively easy to target an off-screen render to a particular device. (The extension allows `eglQuery…
Armin Ronacher: I'm not feeling the async pressure
Link: http://lucumr.pocoo.org/2020/1/1/async-pressure
Async is all the rage. Async Python, async Rust, go, node, .NET, pick
your favorite ecosystem and it will have some async going. How good this
async business works depends quite a lot on the ecosyst
Link: http://lucumr.pocoo.org/2020/1/1/async-pressure
Async is all the rage. Async Python, async Rust, go, node, .NET, pick
your favorite ecosystem and it will have some async going. How good this
async business works depends quite a lot on the ecosyst
Caktus Consulting Group: Our Top 19 Blogs of 2019
Link: http://www.caktusgroup.com/blog/2020/01/01/top-19-blogs-2019/
During the last year we gave our popular technical blog an official name: Developer Access. We published 32 posts on the blog, including technical how-to’s, conference information, web development bes
Link: http://www.caktusgroup.com/blog/2020/01/01/top-19-blogs-2019/
During the last year we gave our popular technical blog an official name: Developer Access. We published 32 posts on the blog, including technical how-to’s, conference information, web development bes
Caktusgroup
Our Top 19 Blogs of 2019 | Caktus Group
During the last year we gave our popular technical blog an official name: Developer Access. We published 32 posts on the blog and 19 rose to the top of the popularity list (based on total pageviews).
Matt Layman: Make A Custom User Model - Building SaaS #40
Link: https://www.mattlayman.com/building-saas/make-custom-user-model/
In this episode, we started a users app and hooked up the custom user model feature of Django to unlock the full extensibility of that model in the future. The stream was cut short this week because o
Link: https://www.mattlayman.com/building-saas/make-custom-user-model/
In this episode, we started a users app and hooked up the custom user model feature of Django to unlock the full extensibility of that model in the future. The stream was cut short this week because o
Matt Layman
Make A Custom User Model - Building SaaS #40
In this episode, we started a users app and hooked up the custom user model feature of Django to unlock the full extensibility of that model in the future.