Sumana Harihareswara - Cogito, Ergo Sumana: Maintainer Burnout: PyCon US 2023 Followup
Link: http://23.harihareswara.net/posts/2023/maintainer-burnout-pycon-us-2023-followup/
Maintainer Burnout: PyCon US 2023 Followup
Link: http://23.harihareswara.net/posts/2023/maintainer-burnout-pycon-us-2023-followup/
Maintainer Burnout: PyCon US 2023 Followup
Cogito, Ergo Sumana
Maintainer Burnout: PyCon US 2023 Followup
At PyCon US 2023, David Lord facilitated an open space discussion of "maintainer burnout, how to survive it, and maybe how to prevent it." Here are some notes (incorporating his; thanks, David!), my analysis, and … | Cogito, Ergo Sumana | Blog by Sumana Harihareswara…
Sumana Harihareswara - Cogito, Ergo Sumana: User Support, Equanimity, And Potential Cross-Project Tools and Practices in Open Source
Link: http://23.harihareswara.net/posts/2023/user-support-equanimity-potential-cross-project-tools-practices-open-source/
User Support, Equanimity, And Potential Cross-Project Tools and Practices in Open Source
Link: http://23.harihareswara.net/posts/2023/user-support-equanimity-potential-cross-project-tools-practices-open-source/
User Support, Equanimity, And Potential Cross-Project Tools and Practices in Open Source
Cogito, Ergo Sumana
User Support, Equanimity, And Potential Cross-Project Tools and Practices in Open Source
I met David Lord at this year's PyCon, talking about maintainer burnout and how to make projects more resilient. Since then, we've been chatting regularly to help us develop material for our respective writing projects. … | Cogito, Ergo Sumana | Blog by Sumana…
Sumana Harihareswara - Cogito, Ergo Sumana: A Celebration of My Friend, Dr. Mel Chua
Link: http://23.harihareswara.net/posts/2023/a-celebration-of-my-friend-dr-mel-chua/
A Celebration of My Friend, Dr. Mel Chua
Link: http://23.harihareswara.net/posts/2023/a-celebration-of-my-friend-dr-mel-chua/
A Celebration of My Friend, Dr. Mel Chua
Cogito, Ergo Sumana
A Celebration of My Friend, Dr. Mel Chua
My dear friend Mel Chua is, as of this year, Dr. Mel Chua, as they have now deposited the doctoral dissertation that they successfully defended several years ago. Yay Dr. Chua!!!There's been a bit of … | Cogito, Ergo Sumana | Blog by Sumana Harihareswara…
Sumana Harihareswara - Cogito, Ergo Sumana: Celebrate Beautiful Soup's 20th Anniversary
Link: http://23.harihareswara.net/posts/2024/celebrate-beautiful-soups-20th-anniversary/
Celebrate Beautiful Soup's 20th Anniversary
Link: http://23.harihareswara.net/posts/2024/celebrate-beautiful-soups-20th-anniversary/
Celebrate Beautiful Soup's 20th Anniversary
Cogito, Ergo Sumana
Celebrate Beautiful Soup's 20th Anniversary
Please help join a celebration for the 20th anniversary of the software project Beautiful Soup on May 19th, 2024! For twenty years, this screen-scraping library has made it easier to get data out of HTML.You … | Cogito, Ergo Sumana | Blog by Sumana Harihareswara…
Sumana Harihareswara - Cogito, Ergo Sumana: Model UX Research & Design Docs for Command-Line Open Source
Link: http://23.harihareswara.net/posts/2024/model-ux-research-design-docs-for-command-line-open-source/
Model UX Research & Design Docs for Command-Line Open Source
Link: http://23.harihareswara.net/posts/2024/model-ux-research-design-docs-for-command-line-open-source/
Model UX Research & Design Docs for Command-Line Open Source
Cogito, Ergo Sumana
Model UX Research & Design Docs for Command-Line Open Source
If you work on open source software, especially command-line tools, I want you to know about newly available research reports and design guidance, and a user research HOWTO, that you can pick up and reuse.The … | Cogito, Ergo Sumana | Blog by Sumana Harihareswara…
Matt Layman: Settings and Billing Portal - Building SaaS with Python and Django #190
Link: https://www.mattlayman.com/blog/2024/settings-and-billing-portal-building-saas-with-python-and-django-190/
In this episode, I worked on the settings page for the user. This was a vital addition because it allows users to access the Stripe billing portal and close their account if they no longer wish to use
Link: https://www.mattlayman.com/blog/2024/settings-and-billing-portal-building-saas-with-python-and-django-190/
In this episode, I worked on the settings page for the user. This was a vital addition because it allows users to access the Stripe billing portal and close their account if they no longer wish to use
Matt Layman
Settings and Billing Portal - Building SaaS with Python and Django #190
In this episode, I worked on the settings page for the user. This was a vital addition because it allows users to access the Stripe billing portal and close their account if they no longer wish to use JourneyInbox.
Python Morsels: Assignment vs. Mutation in Python
Link: https://www.pythonmorsels.com/assignment-versus-mutation/
In Python, "change" can mean two different things. Assignment changes which object a variable points to. Mutation, changes the object itself.
Table of contents
Remember: variables are pointers
Mut
Link: https://www.pythonmorsels.com/assignment-versus-mutation/
In Python, "change" can mean two different things. Assignment changes which object a variable points to. Mutation, changes the object itself.
Table of contents
Remember: variables are pointers
Mut
Pythonmorsels
Assignment vs. Mutation in Python
In Python, "change" can mean two different things. Assignment changes which object a variable points to. Mutation, changes the object itself.
Juri Pakaste: Git history search with fzf
Link: https://juripakaste.fi/git-history-search-fzf/
fzf is one of my favorite shell tools. I have a ton of scripts where I use it for selection. Here's one for searching git history. git log -Gpattern allows you to search for commits that contain patte
Link: https://juripakaste.fi/git-history-search-fzf/
fzf is one of my favorite shell tools. I have a ton of scripts where I use it for selection. Here's one for searching git history. git log -Gpattern allows you to search for commits that contain patte
juripakaste.fi
Git history search with fzf
Personal blog of Juri Pakaste
Juri Pakaste: DotEnvy
Link: https://juripakaste.fi/dotenvy/
I released a new Swift library, DotEnvy. It's a parser and loader for dotenv files.
Dotenv is a vaguely specified format that is supported by libraries found for most languages used in server-side dev
Link: https://juripakaste.fi/dotenvy/
I released a new Swift library, DotEnvy. It's a parser and loader for dotenv files.
Dotenv is a vaguely specified format that is supported by libraries found for most languages used in server-side dev
juripakaste.fi
DotEnvy
Personal blog of Juri Pakaste
ListenData: How to Use Gemini in Python
Link: https://www.listendata.com/2024/05/how-to-use-gemini-in-python.html
In this tutorial, you will learn how to use Google's Gemini AI model in Python.
Steps to Access Gemini API
Follow the steps below to access the Gemini API and then use it in python.
Visit Google AI S
Link: https://www.listendata.com/2024/05/how-to-use-gemini-in-python.html
In this tutorial, you will learn how to use Google's Gemini AI model in Python.
Steps to Access Gemini API
Follow the steps below to access the Gemini API and then use it in python.
Visit Google AI S
ListenData
How to Use Gemini API in Python
This tutorial explains how to use Google's Gemini AI model through its API in Python.
Tryton News: Release 1.5.0 of python-sql
Link: https://discuss.tryton.org/t/release-1-5-0-of-python-sql/7278
We are proud to announce the release of the version 1.5.0 of python-sql.
python-sql is a library to write SQL queries in a pythonic way. It is mainly developed for Tryton but it has no external depend
Link: https://discuss.tryton.org/t/release-1-5-0-of-python-sql/7278
We are proud to announce the release of the version 1.5.0 of python-sql.
python-sql is a library to write SQL queries in a pythonic way. It is mainly developed for Tryton but it has no external depend
Tryton Discussion
Release 1.5.0 of python-sql
We are proud to announce the release of the version 1.5.0 of python-sql. python-sql is a library to write SQL queries in a pythonic way. It is mainly developed for Tryton but it has no external dependencies and is agnostic to any framework or SQL database.…
EuroPython: Community Post: The Invisible Threads that sustained me in STEM/Tech
Link: https://blog.europython.eu/community-post-invisible-threads/
The unconscious influence the Ghanaian tech community has had on my career.My name is Joana Owusu-Appiah, and I am currently pursuing an MSc degree in Medical Imaging and Applications. I am originally
Link: https://blog.europython.eu/community-post-invisible-threads/
The unconscious influence the Ghanaian tech community has had on my career.My name is Joana Owusu-Appiah, and I am currently pursuing an MSc degree in Medical Imaging and Applications. I am originally
EuroPython Blog
Community Post: The Invisible Threads that sustained me in STEM/Tech
The unconscious influence the Ghanaian tech community has had on my career.My name is Joana Owusu-Appiah, and I am currently pursuing an MSc degree in Medical Imaging and Applications. I am originally from Ghana, but as my colleague likes to put it, I am…
Doug Hellmann: sphinxcontrib-sqltable 2.1.1 - db cursor fix
Link: https://doughellmann.com/releases/sphinxcontrib-sqltable-2-1-1/
What’s new in 2.1.1? Access cursor before closing the db connection (contributions by dopas21) use the readthedocs.org theme for docs
Link: https://doughellmann.com/releases/sphinxcontrib-sqltable-2-1-1/
What’s new in 2.1.1? Access cursor before closing the db connection (contributions by dopas21) use the readthedocs.org theme for docs
Doug Hellmann
sphinxcontrib-sqltable 2.1.1 - db cursor fix
What’s new in 2.1.1? Access cursor before closing the db connection (contributions by dopas21) use the readthedocs.org theme for docs
PyCharm: PyCharm at PyCon US 2024: Engage, Learn, and Celebrate!
Link: https://blog.jetbrains.com/pycharm/2024/05/pycharm-at-pycon-us-2024/
We’re thrilled to announce that the PyCharm team will be part of the vibrant PyCon US 2024 conference in Pittsburgh, Pennsylvania, USA. Join us for a series of engaging activities, expert talks, live
Link: https://blog.jetbrains.com/pycharm/2024/05/pycharm-at-pycon-us-2024/
We’re thrilled to announce that the PyCharm team will be part of the vibrant PyCon US 2024 conference in Pittsburgh, Pennsylvania, USA. Join us for a series of engaging activities, expert talks, live
The JetBrains Blog
PyCharm at PyCon US 2024: Engage, Learn, and Celebrate! | The PyCharm Blog
We're thrilled to announce that the PyCharm team will be part of the vibrant PyCon US 2024 conference in Pittsburgh, Pennsylvania, USA. Join us for a series of engaging activities, expert talks, live
ListenData: 4 Ways to Use ChatGPT API in Python
Link: https://www.listendata.com/2024/04/4-ways-to-use-chatgpt-api-in-python.html
In this tutorial, we will explain how to use ChatGPT API in Python, along with examples.
Steps to Access ChatGPT API
Please follow the steps below to access the ChatGPT API.
Visit the OpenAI Platform
Link: https://www.listendata.com/2024/04/4-ways-to-use-chatgpt-api-in-python.html
In this tutorial, we will explain how to use ChatGPT API in Python, along with examples.
Steps to Access ChatGPT API
Please follow the steps below to access the ChatGPT API.
Visit the OpenAI Platform
ListenData
4 Ways to Use ChatGPT API in Python
In this tutorial, we will explain how to use ChatGPT API in Python, along with examples.
PyCon: Get ready for PyCon US 2024! Tips and tricks from our community.
Link: https://pycon.blogspot.com/2024/05/get-ready-for-pycon-us-2024-tips-and.html
PyCon US 2024 will kick off later this week. Our staff members are all busy with the final preparation, and we know that many of you are packing and traveling to the conference too.If you’re wondering
Link: https://pycon.blogspot.com/2024/05/get-ready-for-pycon-us-2024-tips-and.html
PyCon US 2024 will kick off later this week. Our staff members are all busy with the final preparation, and we know that many of you are packing and traveling to the conference too.If you’re wondering
Blogspot
Get ready for PyCon US 2024! Tips and tricks from our community.
PyCon US 2024 will kick off later this week. Our staff members are all busy with the final preparation, and we know that many of you are pac...
Real Python: HTML and CSS Foundations for Python Developers
Link: https://realpython.com/courses/html-css-foundations/
When you want to build websites as a Python programmer, there’s no way around HTML and CSS.
Almost every website on the Internet is built with HTML markup to structure the page.
To make a website look
Link: https://realpython.com/courses/html-css-foundations/
When you want to build websites as a Python programmer, there’s no way around HTML and CSS.
Almost every website on the Internet is built with HTML markup to structure the page.
To make a website look
Realpython
HTML and CSS Foundations for Python Developers – Real Python
There's no way around HTML and CSS when you want to build web apps. Even if you're not aiming to become a web developer, knowing the basics of HTML and CSS will help you understand the Web better. In this video course, you'll get an introduction to HTML and…
Programiz: Python List
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
Programiz
Python List (With Examples)
Python lists store multiple data together in a single variable. In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
Python Bytes: #383 Why aren’t devs shipping faster?
Link: https://pythonbytes.fm/episodes/show/383/why-aren-t-devs-shipping-faster
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://greptile.com/blog/100-devs"><strong>I asked 100 devs why they aren’t shipping faster. Here’s what I learned</strong></a
Link: https://pythonbytes.fm/episodes/show/383/why-aren-t-devs-shipping-faster
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://greptile.com/blog/100-devs"><strong>I asked 100 devs why they aren’t shipping faster. Here’s what I learned</strong></a
pythonbytes.fm
Why aren’t devs shipping faster?
News and announcements from the Python community for the week of May 14th, 2024
PyCoder’s Weekly: Issue #629 (May 14, 2024)
Link: https://pycoders.com/issues/629
#629 – MAY 14, 2024 View in Browser » Flattening a List of Lists in Python In this video course, you’ll learn how to flatten a list of lists in Python. You’ll use different tools and techniques
Link: https://pycoders.com/issues/629
#629 – MAY 14, 2024 View in Browser » Flattening a List of Lists in Python In this video course, you’ll learn how to flatten a list of lists in Python. You’ll use different tools and techniques
Pycoders
PyCoder’s Weekly | Issue #629
Issue #629 of the PyCoder’s Weekly newsletter, published May 14, 2024.