Hynek Schlawack: How to Automatically Switch to Rosetta With Fish and Direnv
Link: https://hynek.me/til/automatic-rosetta-fish-direnv/
I love my Apple silicon computer, but having to manually switch to Rosetta-enabled shells for my Intel-only projects was a bummer.
Link: https://hynek.me/til/automatic-rosetta-fish-direnv/
I love my Apple silicon computer, but having to manually switch to Rosetta-enabled shells for my Intel-only projects was a bummer.
Hynek Schlawack
How to Automatically Switch to Rosetta With Fish and Direnv
I love my Apple silicon computer, but having to manually switch to Rosetta-enabled shells for my Intel-only projects was a bummer.
ListenData: ChatGPT-4 Is a Smart Analyst, Unlike GPT-3.5
Link: https://www.listendata.com/2022/12/limitations-of-ChatGPT.html
ChatGPT has been trending on social media platforms. It has crossed one million users in just a week time. Those who haven't heard about ChatGPT, it's a large language model trained by OpenAI. In simp
Link: https://www.listendata.com/2022/12/limitations-of-ChatGPT.html
ChatGPT has been trending on social media platforms. It has crossed one million users in just a week time. Those who haven't heard about ChatGPT, it's a large language model trained by OpenAI. In simp
ListenData
ChatGPT-4 Is a Smart Analyst, Unlike GPT-3.5
ChatGPT-4 can analyze data and generate insights more effectively. Unlike GPT-3.5, which lacks reasoning skills, ChatGPT-4 can perform complex tasks
Brian Okken: Sharing is Caring - Sharing pytest Fixtures - PyCascades 2023
Link: https://pythontest.com/pycascades-2023/
Slides and code and such for a talk for PyCascades 2023.
Talk page: Sharing is Caring - Sharing pytest Fixtures
Scheduled Time: Sunday, March 19, 11:30 am
Summary:
pytest rocks, obviously. When
Link: https://pythontest.com/pycascades-2023/
Slides and code and such for a talk for PyCascades 2023.
Talk page: Sharing is Caring - Sharing pytest Fixtures
Scheduled Time: Sunday, March 19, 11:30 am
Summary:
pytest rocks, obviously. When
Pythontest
Sharing is Caring - Sharing pytest Fixtures - PyCascades 2023
Slides and code and such for a talk for PyCascades 2023.
Talk page: Sharing is Caring - Sharing pytest Fixtures
Scheduled Time: Sunday, March 19, 11:30 am
Summary:
pytest rocks, obviously. When people start using pytest as a team, they often come up…
Talk page: Sharing is Caring - Sharing pytest Fixtures
Scheduled Time: Sunday, March 19, 11:30 am
Summary:
pytest rocks, obviously. When people start using pytest as a team, they often come up…
Django Weblog: Django 4.2 release candidate 1 released
Link: https://www.djangoproject.com/weblog/2023/mar/20/django-42-rc1/
Django 4.2 release candidate 1 is the final opportunity for you to try out the farrago of new features before Django 4.2 is released.
The release candidate stage marks the string freeze and the call f
Link: https://www.djangoproject.com/weblog/2023/mar/20/django-42-rc1/
Django 4.2 release candidate 1 is the final opportunity for you to try out the farrago of new features before Django 4.2 is released.
The release candidate stage marks the string freeze and the call f
Django Project
Django 4.2 release candidate 1 released
Posted by Mariusz Felisiak on March 20, 2023
Python GUIs: Working With Git and Github in Your Python Projects
Link: https://www.pythonguis.com/tutorials/git-github-python/
Using a version control system (VCS) is crucial for any software development project. These systems allow developers to track changes to the project's codebase over time, removing the need to keep mul
Link: https://www.pythonguis.com/tutorials/git-github-python/
Using a version control system (VCS) is crucial for any software development project. These systems allow developers to track changes to the project's codebase over time, removing the need to keep mul
Python GUIs
Working With Git and Github in Your Python Projects
In this article, we'll learn the basics of using Git for version control. This tool allow developers to track changes to the project's codebase over time, removing the need to keep multiple copies of the project folder. Using a <a href=
Mike Driscoll: PyDev of the Week: Pierre Raybaut
Link: https://www.blog.pythonlibrary.org/2023/03/20/pydev-of-the-week-pierre-raybaut/
Today we welcome Pierre Raybaut (@pierreraybaut) as our PyDev of the Week! Pierre is the creator of Spyder, the Scientific Python IDE. Pierre is also the creator of pythonxy and WinPython.
You can see
Link: https://www.blog.pythonlibrary.org/2023/03/20/pydev-of-the-week-pierre-raybaut/
Today we welcome Pierre Raybaut (@pierreraybaut) as our PyDev of the Week! Pierre is the creator of Spyder, the Scientific Python IDE. Pierre is also the creator of pythonxy and WinPython.
You can see
Mouse Vs Python
PyDev of the Week: Pierre Raybaut - Mouse Vs Python
Today we welcome Pierre Raybaut (@pierreraybaut) as our PyDev of the Week! Pierre is the creator of Spyder, the Scientific Python IDE. Pierre is also the
TestDriven.io: Django Performance Optimization Tips
Link: https://testdriven.io/blog/django-performance-optimization-tips/
This article looks at where potential performance issues can occur in a Django application and how to address them in order to speed up your app.
Link: https://testdriven.io/blog/django-performance-optimization-tips/
This article looks at where potential performance issues can occur in a Django application and how to address them in order to speed up your app.
testdriven.io
Django Performance Optimization Tips
This article looks at where potential performance issues can occur in a Django application and how to address them in order to speed up your app.
Armin Ronacher: Lessons from a Pessimist: Make Your Pessimism Productive
Link: http://lucumr.pocoo.org/2023/3/20/lessons-from-a-pessimist
This year I decided that I want to share my most important learnings about
engineering, teams and quite frankly personal mental health. My hope is that
those who want to learn from me find it useful.
Link: http://lucumr.pocoo.org/2023/3/20/lessons-from-a-pessimist
This year I decided that I want to share my most important learnings about
engineering, teams and quite frankly personal mental health. My hope is that
those who want to learn from me find it useful.
Armin Ronacher's Thoughts and Writings
Lessons from a Pessimist: Make Your Pessimism Productive
On the topic of life lessons from a born pessimist.
Real Python: Executing Python Scripts With a Shebang
Link: https://realpython.com/python-shebang/
When you read someone else’s Python code, you frequently see a mysterious line, which always appears at the top of the file, starting with the distinctive shebang (#!) sequence. It looks like a not-so
Link: https://realpython.com/python-shebang/
When you read someone else’s Python code, you frequently see a mysterious line, which always appears at the top of the file, starting with the distinctive shebang (#!) sequence. It looks like a not-so
Realpython
Executing Python Scripts With a Shebang – Real Python
In this tutorial, you'll learn when and how to use the shebang line in your Python scripts to execute them from a Unix-like shell. Along the way, you'll run custom scripts written in your domain-specific language interpreted by Python.
Python Morsels: What is a context manager?
Link: https://www.pythonmorsels.com/what-is-a-context-manager/
Context managers power Python's with blocks. They sandwich a code block between enter code and exit code. They're most often used for reusing common cleanup/teardown functionality.
Table of content
Link: https://www.pythonmorsels.com/what-is-a-context-manager/
Context managers power Python's with blocks. They sandwich a code block between enter code and exit code. They're most often used for reusing common cleanup/teardown functionality.
Table of content
Pythonmorsels
What is a context manager?
Context managers power Python's with blocks. They sandwich a code block between enter code and exit code. They're most often used for reusing common cleanup/teardown functionality.
ListenData: Complete Guide to Visual ChatGPT
Link: https://www.listendata.com/2023/03/complete-guide-to-visual-chatgpt.html
In this post, we will talk about how to run Visual ChatGPT in Python with Google Colab. ChatGPT has garnered huge popularity recently due to its capability of human style response. As of now, it only
Link: https://www.listendata.com/2023/03/complete-guide-to-visual-chatgpt.html
In this post, we will talk about how to run Visual ChatGPT in Python with Google Colab. ChatGPT has garnered huge popularity recently due to its capability of human style response. As of now, it only
ListenData
Complete Guide to Visual ChatGPT
Learn how to run Visual ChatGPT in Python with Google Colab. With Visual ChatGPT, you can generate or edit stunning images based on user input.
Django Weblog: Want to host DjangoCon Europe 2024?
Link: https://www.djangoproject.com/weblog/2023/mar/20/want-to-host-djangocon-europe-2024/
DjangoCon Europe 2023 will be held May 29th-June 2nd in Edinburgh, Scotland, but we're already looking ahead to next year's conference. Could your town - or your football stadium, circus tent, private
Link: https://www.djangoproject.com/weblog/2023/mar/20/want-to-host-djangocon-europe-2024/
DjangoCon Europe 2023 will be held May 29th-June 2nd in Edinburgh, Scotland, but we're already looking ahead to next year's conference. Could your town - or your football stadium, circus tent, private
Django Project
Want to host DjangoCon Europe 2024?
Posted by Chaim Kirby on March 20, 2023
Codementor: Python Position and Keyword Only Arguments
Link: https://www.codementor.io/bhavanir/python-position-and-keyword-only-arguments-22yx6m5xja
What does / and * mean in a Python function definition mean
Link: https://www.codementor.io/bhavanir/python-position-and-keyword-only-arguments-22yx6m5xja
What does / and * mean in a Python function definition mean
www.codementor.io
Python Position and Keyword Only Arguments | Codementor
What does / and * mean in a Python function definition mean
Python for Beginners: Convert String to DataFrame in Python
Link: https://www.pythonforbeginners.com/basics/convert-string-to-dataframe-in-python
We use strings for text manipulation in Python. On the other hand, we use dataframes to handle tabular data in python. Despite this dissimilarity, we may need to convert a string to a pandas dataframe
Link: https://www.pythonforbeginners.com/basics/convert-string-to-dataframe-in-python
We use strings for text manipulation in Python. On the other hand, we use dataframes to handle tabular data in python. Despite this dissimilarity, we may need to convert a string to a pandas dataframe
PythonForBeginners.com
Convert String to DataFrame in Python - PythonForBeginners.com
Convert String to DataFrame in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Summing Values the Pythonic Way With sum()
Link: https://realpython.com/courses/python-sum-function/
Python’s built-in function sum() is an efficient and Pythonic way to sum a list of numeric values. Adding several numbers together is a common intermediate step in many computations, so sum() is a pre
Link: https://realpython.com/courses/python-sum-function/
Python’s built-in function sum() is an efficient and Pythonic way to sum a list of numeric values. Adding several numbers together is a common intermediate step in many computations, so sum() is a pre
Realpython
Summing Values the Pythonic Way With sum() – Real Python
In this video course, you'll learn how to use Python's sum() function to add numeric values together. You'll also learn how to concatenate sequences, such as lists and tuples, using sum().
Mike Driscoll: The Python Quiz Book is Now Available
Link: https://www.blog.pythonlibrary.org/2023/03/21/the-python-quiz-book-is-now-available/
The Python Quiz Book is Mike Driscoll’s latest book on the Python programming language. There are over one hundred quizzes and answers in the book to help you test your Python knowledge.
From the Pub
Link: https://www.blog.pythonlibrary.org/2023/03/21/the-python-quiz-book-is-now-available/
The Python Quiz Book is Mike Driscoll’s latest book on the Python programming language. There are over one hundred quizzes and answers in the book to help you test your Python knowledge.
From the Pub
Mouse Vs Python
The Python Quiz Book is Now Available - Mouse Vs Python
The Python Quiz Book is Mike Driscoll's latest book on the Python programming language. There are over one hundred quizzes and answers in the book to help
CodersLegacy: Pyinstaller Spec File Tutorial
Link: https://coderslegacy.com/pyinstaller-spec-file-tutorial/
In this Pyinstaller Tutorial, we will discuss how to manage, modify, and use the Spec File to compile EXE’s.
Generating a single executable file that works flawlessly on every platform is not an easy
Link: https://coderslegacy.com/pyinstaller-spec-file-tutorial/
In this Pyinstaller Tutorial, we will discuss how to manage, modify, and use the Spec File to compile EXE’s.
Generating a single executable file that works flawlessly on every platform is not an easy
CodersLegacy
Pyinstaller Spec File Tutorial - CodersLegacy
In this Pyinstaller Tutorial, we will discuss how to manage, modify, and use the Spec File to compile EXE's.
Codementor: Python Position and Keyword Only Arguments
Link: https://www.codementor.io/bhavaniravi/python-position-and-keyword-only-arguments-22yx6m5xja
What does / and * mean in a Python function definition mean
Link: https://www.codementor.io/bhavaniravi/python-position-and-keyword-only-arguments-22yx6m5xja
What does / and * mean in a Python function definition mean
www.codementor.io
Python Position and Keyword Only Arguments | Codementor
What does / and * mean in a Python function definition mean
PyCoder’s Weekly: Issue #569 (March 21, 2023)
Link: https://pycoders.com/issues/569
#569 – MARCH 21, 2023 View in Browser » How to Evaluate the Quality of Python Packages Just like you shouldn’t download any file from the Internet, you shouldn’t blindly install third-party Pyth
Link: https://pycoders.com/issues/569
#569 – MARCH 21, 2023 View in Browser » How to Evaluate the Quality of Python Packages Just like you shouldn’t download any file from the Internet, you shouldn’t blindly install third-party Pyth
Pycoders
PyCoder’s Weekly | Issue #569
Issue #569 of the PyCoder’s Weekly newsletter, published March 21, 2023.
Ned Batchelder: Beginner sprint on coverage.py
Link: https://nedbatchelder.com/blog/202303/beginner_sprint_on_coveragepy.html
I participated in the PyCascades sprint
day yesterday, offering up coverage.py as a
project. I was pretty sure it wasn’t beginner-friendly, but the sprint was
useful because it pointed out specific w
Link: https://nedbatchelder.com/blog/202303/beginner_sprint_on_coveragepy.html
I participated in the PyCascades sprint
day yesterday, offering up coverage.py as a
project. I was pretty sure it wasn’t beginner-friendly, but the sprint was
useful because it pointed out specific w
Nedbatchelder
Beginner sprint on coverage.py
I participated in the <a rel="external noopener" href="https://2023.pycascades.com/program/sprints/">PyCascades sprint day</a> yesterday, offering up <a rel="external noopener" href="https://github.com/nedbat/coveragepy">coverage.py</a> as a project. I was…
Python Bytes: #328 We are going to need some context here
Link: https://pythonbytes.fm/episodes/show/328/we-are-going-to-need-some-context-here
<a href='https://www.youtube.com/watch?v=qQRpUnwB1Xo' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by <a href="http://pythonbytes.fm/f
Link: https://pythonbytes.fm/episodes/show/328/we-are-going-to-need-some-context-here
<a href='https://www.youtube.com/watch?v=qQRpUnwB1Xo' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by <a href="http://pythonbytes.fm/f
pythonbytes.fm
We are going to need some context here
News and announcements from the Python community for the week of Mar 21st, 2023