IslandT: Tkinter Tutorial — Create Text box Widget
Link: https://islandtropicaman.com/wp/2022/10/19/tkinter-tutorial-create-text-box-widget/
In this article let us continue with the previous example by adding a text box widget with a width of 16 at column 0, row 1 position within the Tkinter window, which simply means the second row. This
Link: https://islandtropicaman.com/wp/2022/10/19/tkinter-tutorial-create-text-box-widget/
In this article let us continue with the previous example by adding a text box widget with a width of 16 at column 0, row 1 position within the Tkinter window, which simply means the second row. This
IslandT: wxPython Tutorial — Create the wxPython child class object
Link: https://islandtropicaman.com/wp/2022/10/19/wxpython-tutorial-create-the-wxpython-child-class-object/
Before I start, if you guys happen to know the creator of wxPython please do ask him this question: Why are you using the term wxPython instead of WxPython? I just feel curious about that!
Alright, a
Link: https://islandtropicaman.com/wp/2022/10/19/wxpython-tutorial-create-the-wxpython-child-class-object/
Before I start, if you guys happen to know the creator of wxPython please do ask him this question: Why are you using the term wxPython instead of WxPython? I just feel curious about that!
Alright, a
Reuven Lerner: How to propose a winning conference talk
Link: https://lerner.co.il/2022/10/19/how-to-propose-a-winning-conference-talk/
[This blog post is taken from my “Trainer Weekly” newsletter, all about the business, logistics, and pedagogy of corporate training. Given that PyCon US 2023 just opened its call for participation, I
Link: https://lerner.co.il/2022/10/19/how-to-propose-a-winning-conference-talk/
[This blog post is taken from my “Trainer Weekly” newsletter, all about the business, logistics, and pedagogy of corporate training. Given that PyCon US 2023 just opened its call for participation, I
Reuven Lerner
How to propose a winning conference talk
[This blog post is taken from my "Trainer Weekly" newsletter, all about the business, logistics, and pedagogy of corporate training. Given that PyCon US 2023 just opened its call for participation, I thought that this
Real Python: Build a Tic-Tac-Toe Game Engine With an AI Player in Python
Link: https://realpython.com/tic-tac-toe-ai-python/
When you’re a child, you learn to play tic-tac-toe, which some people know as naughts and crosses. The game remains fun and challenging until you enter your teenage years. Then, you learn to program a
Link: https://realpython.com/tic-tac-toe-ai-python/
When you’re a child, you learn to play tic-tac-toe, which some people know as naughts and crosses. The game remains fun and challenging until you enter your teenage years. Then, you learn to program a
Realpython
Build a Tic-Tac-Toe Game Engine With an AI Player in Python – Real Python
In this step-by-step tutorial, you'll build a universal game engine in Python with tic-tac-toe rules and two computer players, including an unbeatable AI player using the minimax algorithm. You'll also create a text-based graphical front end for your library…
IslandT: Tkinter Tutorial — Create combo box widget
Link: https://islandtropicaman.com/wp/2022/10/20/tkinter-tutorial-create-combo-box-widget/
In this tutorial, let us continue with our previous example and add the combo box widget into the previously created top-level Tkinter window widget where that combo box will allow the user to select
Link: https://islandtropicaman.com/wp/2022/10/20/tkinter-tutorial-create-combo-box-widget/
In this tutorial, let us continue with our previous example and add the combo box widget into the previously created top-level Tkinter window widget where that combo box will allow the user to select
Python Bytes: #306 Some Fun pytesting Tools
Link: https://pythonbytes.fm/episodes/show/306/some-fun-pytesting-tools
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=O5OyphLaDU8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/306/some-fun-pytesting-tools
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=O5OyphLaDU8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Some Fun pytesting Tools
News and announcements from the Python community for the week of Oct 19th, 2022
Talk Python to Me: #386: Realtime Web Apps and Dashboards with H2O Wave
Link: https://talkpython.fm/episodes/show/386/realtime-web-apps-and-dashboards-with-h2o-wave
Python's data science and data visualization capabilities are certainly one of the reasons for Python's meteoric rise over the past 10 years. But often thens visuals have been corralled into notebooks
Link: https://talkpython.fm/episodes/show/386/realtime-web-apps-and-dashboards-with-h2o-wave
Python's data science and data visualization capabilities are certainly one of the reasons for Python's meteoric rise over the past 10 years. But often thens visuals have been corralled into notebooks
talkpython.fm
Realtime Web Apps and Dashboards with H2O Wave
Python's data science and data visualization capabilities are certainly one of the reasons for Python's meteoric rise over the past 10 years. But often thens visuals have been corralled into notebooks used by data scientists themselves or into static web…
Reuven Lerner: Lots of new YouTube videos about Python and Pandas!
Link: https://lerner.co.il/2022/10/21/lots-of-new-youtube-videos-about-python-and-pandas/
I’ve been blogging a lot less lately, in part because I’ve been writing more on Twitter and recording more YouTube videos.
Among those YouTube videos are:
Intro to Python exceptions, https://www.youtu
Link: https://lerner.co.il/2022/10/21/lots-of-new-youtube-videos-about-python-and-pandas/
I’ve been blogging a lot less lately, in part because I’ve been writing more on Twitter and recording more YouTube videos.
Among those YouTube videos are:
Intro to Python exceptions, https://www.youtu
Reuven Lerner
Lots of new YouTube videos about Python and Pandas!
I've been blogging a lot less lately, in part because I've been writing more on Twitter and recording more YouTube videos. Among those YouTube videos are: Intro to Python exceptions, https://www.youtube.com/watch?v=ilJfD65d-2Q"for" loops vs list comprehensions…
IslandT: Tkinter Tutorial — Create Check Button Widget
Link: https://islandtropicaman.com/wp/2022/10/21/tkinter-tutorial-create-check-button-widget/
In this Tkinter tutorial let us create a check button widget within the previously created top-level window. These lines of code will create the check box widget.
# Create a check button
chVarName =
Link: https://islandtropicaman.com/wp/2022/10/21/tkinter-tutorial-create-check-button-widget/
In this Tkinter tutorial let us create a check button widget within the previously created top-level window. These lines of code will create the check box widget.
# Create a check button
chVarName =
IslandT: wxPython Tutorial — Create Check Box
Link: https://islandtropicaman.com/wp/2022/10/21/wxpython-tutorial-create-check-box/
In this wxPython tutorial let us create a check box within the previously created top-level window. The parameters within the wx.CheckBox’s class are as follows:-
parent (wx.Window) –
id (wx.WindowI
Link: https://islandtropicaman.com/wp/2022/10/21/wxpython-tutorial-create-check-box/
In this wxPython tutorial let us create a check box within the previously created top-level window. The parameters within the wx.CheckBox’s class are as follows:-
parent (wx.Window) –
id (wx.WindowI
Real Python: The Real Python Podcast – Episode #130: Fostering an Internal Python Community & Managing the 3.11 Release
Link: https://realpython.com/podcasts/rpp/130/
Does your company have a plan for growing an internal Python community? What are the attributes to look for when bringing someone into your department? This week on the show, Pablo Galindo Salgado ret
Link: https://realpython.com/podcasts/rpp/130/
Does your company have a plan for growing an internal Python community? What are the attributes to look for when bringing someone into your department? This week on the show, Pablo Galindo Salgado ret
Realpython
Episode #130: Fostering an Internal Python Community & Managing the 3.11 Release – The Real Python Podcast
Does your company have a plan for growing an internal Python community? What are the attributes to look for when bringing someone into your department? This week on the show, Pablo Galindo Salgado returns to talk about building community through the Python…
IslandT: wxPython Tutorial — Create Combo Box
Link: https://islandtropicaman.com/wp/2022/10/22/wxpython-tutorial-create-combo-box/
In this wxPython tutorial let us create a daily combo box beside the hello world button. I will not be going to repeat the previous program again thus if you want to look at the entire program you can
Link: https://islandtropicaman.com/wp/2022/10/22/wxpython-tutorial-create-combo-box/
In this wxPython tutorial let us create a daily combo box beside the hello world button. I will not be going to repeat the previous program again thus if you want to look at the entire program you can
TestDriven.io: Migrating to a Custom User Model Mid-project in Django
Link: https://testdriven.io/blog/django-custom-user-model-migration/
This article explains step-by-step how to migrate to a custom User model mid-project in Django.
Link: https://testdriven.io/blog/django-custom-user-model-migration/
This article explains step-by-step how to migrate to a custom User model mid-project in Django.
testdriven.io
Migrating to a Custom User Model Mid-project in Django
This article explains step-by-step how to migrate to a custom User model mid-project in Django.
EuroPython Society: List of EPS Board Candidates for 2022/2023
Link: https://www.europython-society.org/list-of-eps-board-candidates-for-2022-2023/
List of EPS Board Candidates for 2022/2023At this year’s EuroPython Society General Assembly (GA), planned for Saturday, 29 October at 17:00 CEST, we will vote in a new board of the EuroPython Society
Link: https://www.europython-society.org/list-of-eps-board-candidates-for-2022-2023/
List of EPS Board Candidates for 2022/2023At this year’s EuroPython Society General Assembly (GA), planned for Saturday, 29 October at 17:00 CEST, we will vote in a new board of the EuroPython Society
EuroPython Society
List of EPS Board Candidates for 2022/2023
List of EPS Board Candidates for 2022/2023 At this year’s EuroPython Society General Assembly (GA), planned for Saturday, 29 October at 17:00 CEST, we will vote in a new board of the EuroPython Society for the term 2022/2023. List of Board CandidatesThe EPS…
Marcos Dione: blender-hillshading-and-mapnik
Link: http://www.grulic.org.ar/~mdione/glob//posts/blender-hillshading-and-mapnik/
How did it start? Well, it actually started a long time ago, maybe a year ago, most probably more. I got myself
tumbling down the beautiful rabbit hole of Blender based mapping. The idea is very simpl
Link: http://www.grulic.org.ar/~mdione/glob//posts/blender-hillshading-and-mapnik/
How did it start? Well, it actually started a long time ago, maybe a year ago, most probably more. I got myself
tumbling down the beautiful rabbit hole of Blender based mapping. The idea is very simpl
IslandT: wxPython Tutorial — Create Dialog Box
Link: https://islandtropicaman.com/wp/2022/10/23/wxpython-tutorial-create-dialog-box/
In this wxPython example tutorial, I will write the program to call a function which will then create a dialog box after a button has been clicked.
First of all, from the previous program, I have to a
Link: https://islandtropicaman.com/wp/2022/10/23/wxpython-tutorial-create-dialog-box/
In this wxPython example tutorial, I will write the program to call a function which will then create a dialog box after a button has been clicked.
First of all, from the previous program, I have to a
Reuven Lerner: Upcoming Python/Pandas courses for seasoned coders
Link: https://lerner.co.il/2022/10/23/upcoming-python-pandas-courses-for-seasoned-coders/
Python and Pandas can improve your career. I say this all the time, partly because it’s my job (as a Python/Pandas trainer), and partly because I’ve seen how people’s lives and careers can improve wit
Link: https://lerner.co.il/2022/10/23/upcoming-python-pandas-courses-for-seasoned-coders/
Python and Pandas can improve your career. I say this all the time, partly because it’s my job (as a Python/Pandas trainer), and partly because I’ve seen how people’s lives and careers can improve wit
Reuven Lerner
Upcoming Python/Pandas courses for seasoned coders
Python and Pandas can improve your career. I say this all the time, partly because it's my job (as a Python/Pandas trainer), and partly because I've seen how people's lives and careers can improve with
Codementor: Quick Tips to Make Your Python Better Right Away
Link: https://www.codementor.io/matthewtejo/quick-tips-to-make-your-python-better-right-away-1yf81zedra
Quick Tips to Make your Python Better Right Away
Use a formatter - The first quick way to make your python code better to work with is to use a formatter. Consistent looking code is easy to scan....
Link: https://www.codementor.io/matthewtejo/quick-tips-to-make-your-python-better-right-away-1yf81zedra
Quick Tips to Make your Python Better Right Away
Use a formatter - The first quick way to make your python code better to work with is to use a formatter. Consistent looking code is easy to scan....
www.codementor.io
Quick Tips to Make Your Python Better Right Away | Codementor
Quick Tips to Make your Python Better Right Away
Use a formatter - The first quick way to make your python code better to work with is to use a formatter. Consistent looking code is easy to scan....
Use a formatter - The first quick way to make your python code better to work with is to use a formatter. Consistent looking code is easy to scan....
Podcast.__init__: Take A Tour Of The Hidden Language Of Hardware And How It Powers Your Code
Link: https://www.pythonpodcast.com/code-hidden-language-second-edition-episode-382/
Software is eating the world, but that code has to have hardware to execute the instructions. Most people, and many software engineers, don't have a proper understanding of how that hardware functions
Link: https://www.pythonpodcast.com/code-hidden-language-second-edition-episode-382/
Software is eating the world, but that code has to have hardware to execute the instructions. Most people, and many software engineers, don't have a proper understanding of how that hardware functions
The Python Podcast.__init__
The Python Podcast.__init__: Take A Tour Of The Hidden Language Of Hardware And How It Powers Your Code
An interview with Charles Petzold about the second edition of his book "Code: The Hidden Language Of Computer Hardware and Software" and how an understanding of how hardware works can make you a better software engineer.
IslandT: Tkinter Tutorial — Create Scrolled Text Widget
Link: https://islandtropicaman.com/wp/2022/10/24/tkinter-tutorial-create-scrolled-text-widget/
In this Tkinter example tutorial let us create a scrolled text widget on the previously created top-level window. First of all, the width and height of the scrolled text widget are as follows:
scroll
Link: https://islandtropicaman.com/wp/2022/10/24/tkinter-tutorial-create-scrolled-text-widget/
In this Tkinter example tutorial let us create a scrolled text widget on the previously created top-level window. First of all, the width and height of the scrolled text widget are as follows:
scroll
Mike Driscoll: PyDev of the Week: Marcin Kozak
Link: https://www.blog.pythonlibrary.org/2022/10/24/pydev-of-the-week-marcin-kozak/
This week we welcome Marcin Kozak as our PyDev of the Week! Marcin maintains perftester and makepackage. You can see what else Marcin is working on over on GitHub.
Let's spend some time getting to kn
Link: https://www.blog.pythonlibrary.org/2022/10/24/pydev-of-the-week-marcin-kozak/
This week we welcome Marcin Kozak as our PyDev of the Week! Marcin maintains perftester and makepackage. You can see what else Marcin is working on over on GitHub.
Let's spend some time getting to kn
Mouse Vs Python
PyDev of the Week: Marcin Kozak - Mouse Vs Python
This week we welcome Marcin Kozak as our PyDev of the Week! Marcin maintains perftester and makepackage. You can see what else Marcin is working on over