Real Python: The Real Python Podcast – Episode #188: Measuring Bias, Toxicity, and Truthfulness in LLMs With Python
Link: https://realpython.com/podcasts/rpp/188/
How can you measure the quality of a large language model? What tools can measure bias, toxicity, and truthfulness levels in a model using Python? This week on the show, Jodie Burchell, developer advo
Link: https://realpython.com/podcasts/rpp/188/
How can you measure the quality of a large language model? What tools can measure bias, toxicity, and truthfulness levels in a model using Python? This week on the show, Jodie Burchell, developer advo
Realpython
Episode #188: Measuring Bias, Toxicity, and Truthfulness in LLMs With Python – The Real Python Podcast
How can you measure the quality of a large language model? What tools can measure bias, toxicity, and truthfulness levels in a model using Python? This week on the show, Jodie Burchell, developer advocate for data science at JetBrains, returns to discuss…
Paolo Melchiorre: My Django roadmap ideas 💡
Link: https://www.paulox.net/2024/01/19/my-django-roadmap-ideas/
My ideas for the informal Django roadmap session for 2024, proposed by the new DSF board member, Thibaud Colas.
Link: https://www.paulox.net/2024/01/19/my-django-roadmap-ideas/
My ideas for the informal Django roadmap session for 2024, proposed by the new DSF board member, Thibaud Colas.
Paolo Melchiorre
Paolo Melchiorre - My Django roadmap ideas 💡
My ideas for the informal Django roadmap session for 2024, proposed by the new DSF board member, Thibaud Colas.
Django Weblog: DSF calls for applicants for a Django Fellow
Link: https://www.djangoproject.com/weblog/2024/jan/19/django-fellow-applicants-2024/
After five years as part of the Django Fellowship program, Mariusz Felisiak has let us know that he will be stepping down as a Django Fellow in March 2024 to explore other things. Mariusz has made an
Link: https://www.djangoproject.com/weblog/2024/jan/19/django-fellow-applicants-2024/
After five years as part of the Django Fellowship program, Mariusz Felisiak has let us know that he will be stepping down as a Django Fellow in March 2024 to explore other things. Mariusz has made an
Django Project
DSF calls for applicants for a Django Fellow
Posted by Frank Wiles on Jan. 19, 2024
Marcos Dione: Sending AWS CloudWatch alarms through SNS to MSTeams
Link: https://www.grulic.org.ar/~mdione/glob/posts/sending-aws-cloudwatch-alarms-through-sns-to-msteams/
I'm new to AWS os please take the following statements with a grain of salt. Also, I'm tired, but I want to get this of
my chest before the weekend begins (although, technically, it has already begun)
Link: https://www.grulic.org.ar/~mdione/glob/posts/sending-aws-cloudwatch-alarms-through-sns-to-msteams/
I'm new to AWS os please take the following statements with a grain of salt. Also, I'm tired, but I want to get this of
my chest before the weekend begins (although, technically, it has already begun)
.:: Marcos Dione/StyXman's glob ::.
Sending AWS CloudWatch alarms through SNS to MSTeams
I'm new to AWS os please take the following statements with a grain of salt. Also, I'm tired, but I want to get this of
my chest before the weekend begins (although, technically, it has already begun)
my chest before the weekend begins (although, technically, it has already begun)
Test and Code: 213: Repeating Tests
Link: https://podcast.pythontest.com/episodes/213-repeating-tests
If a test fails in a test suite, I'm going to want to re-run the test. I may even want to re-run a test, or a subset of the suite, a bunch of times. There are a few pytest plugins that help with this
Link: https://podcast.pythontest.com/episodes/213-repeating-tests
If a test fails in a test suite, I'm going to want to re-run the test. I may even want to re-run a test, or a subset of the suite, a bunch of times. There are a few pytest plugins that help with this
Python Test
Python Test | 213: Repeating Tests
a.k.a Test & Code. Python's test focused podcast is more than just pytest, testing, and TDD.
We also cover Python packaging, data science, CI/CD, project automation, and tons of other software engineering practices.
Hosted by Brian Okken.
We also cover Python packaging, data science, CI/CD, project automation, and tons of other software engineering practices.
Hosted by Brian Okken.
Talk Python to Me: #445: Inside Azure Data Centers with Mark Russinovich
Link: https://talkpython.fm/episodes/show/445/inside-azure-data-centers-with-mark-russinovich
When you run your code in the cloud, how much do you know about where it runs? I mean, the hardware it runs on and the data center it runs in? There are just a couple of hyper-scale cloud providers in
Link: https://talkpython.fm/episodes/show/445/inside-azure-data-centers-with-mark-russinovich
When you run your code in the cloud, how much do you know about where it runs? I mean, the hardware it runs on and the data center it runs in? There are just a couple of hyper-scale cloud providers in
talkpython.fm
Inside Azure Data Centers with Mark Russinovich
When you run your code in the cloud, how much do you know about where it runs? I mean, the hardware it runs on and the data center it runs in? There are just a couple of hyper-scale cloud providers in the world. This episode is a very unique chance to get…
TechBeamers Python: Install Python packages with pip and requirements.txt
Link: https://www.techbeamers.com/pip-install-python-packages-requirements-txt/
Check this tutorial if you want to learn how to use pip to install Python packages using the requirements.txt. It is a simple configuration file where we can list the exact packages with their version
Link: https://www.techbeamers.com/pip-install-python-packages-requirements-txt/
Check this tutorial if you want to learn how to use pip to install Python packages using the requirements.txt. It is a simple configuration file where we can list the exact packages with their version
TechBeamers
Install Python packages with pip and requirements.txt
How to install Python packages using pip install from requirements.txt, pip list to verify, and pip freeze to export current configuration.
Matt Layman: Design and Stripe - Building SaaS with Python and Django #180
Link: https://www.mattlayman.com/blog/2024/design-and-stripe-building-saas-with-python-and-django-180/
In this episode, I started with a plan to work on Stripe checkout, but realized that I needed to come up with a better plan and also improve the base template of the app. We ended up doing more design
Link: https://www.mattlayman.com/blog/2024/design-and-stripe-building-saas-with-python-and-django-180/
In this episode, I started with a plan to work on Stripe checkout, but realized that I needed to come up with a better plan and also improve the base template of the app. We ended up doing more design
Matt Layman
Design and Stripe - Building SaaS with Python and Django #180
In this episode, I started with a plan to work on Stripe checkout, but realized that I needed to come up with a better plan and also improve the base template of the app. We ended up doing more design work than working with Stripe, but we ended the stream…
TechBeamers Python: How to Remove Whitespace from a String in Python
Link: https://www.techbeamers.com/how-to-remove-whitespace-from-a-string-in-python/
This tutorial explains multiple ways to remove whitespace from a string in Python. Often, as a programmer, we need to put in a mechanism to remove whitespace, especially trailing spaces. So, with the
Link: https://www.techbeamers.com/how-to-remove-whitespace-from-a-string-in-python/
This tutorial explains multiple ways to remove whitespace from a string in Python. Often, as a programmer, we need to put in a mechanism to remove whitespace, especially trailing spaces. So, with the
TechBeamers
How to Remove Whitespace from a String in Python
This tutorial explains 7 practical methods to remove whitespace from a string in Python, also including a full explanation and examples.
death and gravity: This is not interview advice: building a priority-expiry LRU cache without heaps or trees in Python
Link: https://death.andgravity.com/lru-cache
It's not your fault I got nerdsniped,
but that doesn't matter.
Hi, I'm Adrian, and today we're implementing a
least recently used cache with priorities and expiry,
using only the Python standard libra
Link: https://death.andgravity.com/lru-cache
It's not your fault I got nerdsniped,
but that doesn't matter.
Hi, I'm Adrian, and today we're implementing a
least recently used cache with priorities and expiry,
using only the Python standard libra
death and gravity
This is not interview advice: a priority-expiry LRU cache in Python without heaps or trees
Today we're implementing a least recently used cache with priorities and expiry, using only the Python standard library.
This is a bIG TEch CoDINg InTerVIEW problem, so we'll work hard to stay away from the correct™ data structures, but we'll end up with…
This is a bIG TEch CoDINg InTerVIEW problem, so we'll work hard to stay away from the correct™ data structures, but we'll end up with…
TechBeamers Python: Python Pip Usage for Beginners
Link: https://www.techbeamers.com/python-pip-usage/
Python Pip, short for “Pip Installs Packages,” is a powerful package management system that simplifies the process of installing, upgrading, and managing Python libraries and dependencies. In this tut
Link: https://www.techbeamers.com/python-pip-usage/
Python Pip, short for “Pip Installs Packages,” is a powerful package management system that simplifies the process of installing, upgrading, and managing Python libraries and dependencies. In this tut
TechBeamers
Python Pip Usage for Beginners
Check essential Python Pip usage, including installation, basic commands, virtual environments, requirements files with practical examples
TechBeamers Python: Understanding Python Timestamps: A Simple Guide
Link: https://www.techbeamers.com/python-timestamp/
In Python, a timestamp is like a timestamp! It’s a number that tells you when something happened. This guide will help you get comfortable with timestamps in Python. We’ll talk about how to make them,
Link: https://www.techbeamers.com/python-timestamp/
In Python, a timestamp is like a timestamp! It’s a number that tells you when something happened. This guide will help you get comfortable with timestamps in Python. We’ll talk about how to make them,
TechBeamers
Understanding Python Timestamps: A Simple Guide
Python timestamp tutorial covers what is a timestamp, how to get the current timestamp, add, and get time difference, and more with examples.
TechBeamers Python: LangChain Memory Basics
Link: https://www.techbeamers.com/langchain-memory/
Langchain Memory is like a brain for your conversational agents. It remembers past chats, making conversations flow smoothly and feel more personal. Think of it like chatting with a real friend who re
Link: https://www.techbeamers.com/langchain-memory/
Langchain Memory is like a brain for your conversational agents. It remembers past chats, making conversations flow smoothly and feel more personal. Think of it like chatting with a real friend who re
TechBeamers
Python LangChain: Learn the Memory Basics
What is LangChain memory and types, What is summarization memory, and How to add memory to the LangChain agent with examples?
TechBeamers Python: LangChain Agent Basics with Sample Agent Code
Link: https://www.techbeamers.com/langchain-agents/
LangChain agents are fascinating creatures! They live in the world of text and code, interacting with humans through conversations and completing tasks based on instructions. Think of them as your dig
Link: https://www.techbeamers.com/langchain-agents/
LangChain agents are fascinating creatures! They live in the world of text and code, interacting with humans through conversations and completing tasks based on instructions. Think of them as your dig
TechBeamers
LangChain Agent Basics with Sample Agent Code
What is an agent in LangChain? What is the benefit of LangChain agents? What are the different use cases for the LangChain agent?
Luke Plant: Python packaging must be getting better - a datapoint
Link: https://lukeplant.me.uk/blog/posts/python-packaging-must-be-getting-better-a-datapoint/
I’m developing some Python software for a client, which in its current early state is desktop software that will need to run on Windows.
So far, however, I have done all development on my normal comfo
Link: https://lukeplant.me.uk/blog/posts/python-packaging-must-be-getting-better-a-datapoint/
I’m developing some Python software for a client, which in its current early state is desktop software that will need to run on Windows.
So far, however, I have done all development on my normal comfo
Luke Plant's home page
Python packaging must be getting better - a datapoint
I “pip install”ed my app on Windows and everything just worked. Something is going right.
Zato Blog: How to correctly integrate APIs in Python
Link: https://zato.io/en/blog/how-to-integrate-apis-in-python.html
How to correctly integrate APIs in Python
2024-01-22, by Dariusz Suchojad
Understanding how to effectively integrate various systems and APIs is crucial. Yet, without a dedicated integration p
Link: https://zato.io/en/blog/how-to-integrate-apis-in-python.html
How to correctly integrate APIs in Python
2024-01-22, by Dariusz Suchojad
Understanding how to effectively integrate various systems and APIs is crucial. Yet, without a dedicated integration p
TypeThePipe: Data Engineering Bootcamp 2024 (Week 1) Docker & Terraform
Link: https://typethepipe.com/post/data-engineering-free-bootcamp-2024-week1/
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.source
Link: https://typethepipe.com/post/data-engineering-free-bootcamp-2024-week1/
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.source
TypeThePipe
Data Engineering Bootcamp 2024 (Week 1) Docker & Terraform | TypeThePipe
Learn the basics of Docker and Terraform from scratch to enhance your Data Engineering projects. Containerize your data pipelines and manage your infrastructure as code.
Real Python: When to Use a List Comprehension in Python
Link: https://realpython.com/list-comprehension-python/
One of Python’s most distinctive features is the list comprehension, which you can use to create powerful functionality within a single line of code. However, many developers struggle to fully leverag
Link: https://realpython.com/list-comprehension-python/
One of Python’s most distinctive features is the list comprehension, which you can use to create powerful functionality within a single line of code. However, many developers struggle to fully leverag
Realpython
When to Use a List Comprehension in Python – Real Python
Python list comprehensions help you to create lists while performing sophisticated filtering, mapping, and conditional logic on their members. In this tutorial, you'll learn when to use a list comprehension in Python and how to create them effectively.
Glyph Lefkowitz: Okay, I’m A Centrist I Guess
Link: https://blog.glyph.im/2024/01/a-centrist-i-guess.html
Today I saw a short YouTube video about “cozy
games” and started writing a comment, then
realized that this was somehow prompting me to write the most succinct summary
of my own personal views on poli
Link: https://blog.glyph.im/2024/01/a-centrist-i-guess.html
Today I saw a short YouTube video about “cozy
games” and started writing a comment, then
realized that this was somehow prompting me to write the most succinct summary
of my own personal views on poli
blog.glyph.im
Okay, I’m A Centrist I Guess
Market simulator video game mechanics reveal the core of human soul.
TechBeamers Python: Is Python Map Faster than Loop?
Link: https://www.techbeamers.com/python-map-vs-loop/
In this short tutorial, we’ll quickly compare Python map vs loop. We’ll try to assess whether the Python map is faster than the loop or vice-versa. The comparison between using map and a loop (such as
Link: https://www.techbeamers.com/python-map-vs-loop/
In this short tutorial, we’ll quickly compare Python map vs loop. We’ll try to assess whether the Python map is faster than the loop or vice-versa. The comparison between using map and a loop (such as
TechBeamers
Is Python Map Faster than Loop?
This tutorial provides a comparison of Python map vs loop. It presents various facts and provides code to test which of these two is faster.