Skip to content

Commit 02bac9c

Browse files
committed
fix: fix swapped articles
1 parent 3729b35 commit 02bac9c

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
Title: Creating great README files for you Python projects
2-
Tags: programming, python, how-to guide
3-
Author: Leodanis Pozo Ramos
4-
Url: https://realpython.com/readme-python-project/
1+
Title: `bytes`: The Lesser-Known Python Built-In Sequence • And Understanding UTF-8 Encoding
2+
Tags: programming, python, explanation
3+
Author: Stephen Gruppetta
4+
Url: https://www.thepythoncodingstack.com/p/bytes-python-built-in-unicode-utf-8-encoding
55
Save_As:
66

7-
A well-crafted README is essential for any Python project, yet it's too often overlooked in the professional world—despite being crucial for smooth collaboration.
8-
In environments where developers frequently change, a clear and structured README ensures seamless onboarding and project continuity.
9-
This guide walks you through best practices to make your README informative, accessible, and contribution-friendly, so your code remains useful to both current and future developers.
7+
When using strings and bytes in Python you may, like me, stick to using utf-8 encoding for anything. When you start having some weirds characters being displayed you know its probably because its not utf-8 encoded.
8+
But do you know actually how this works behind the scene? Discover how Python `bytes` are working internally and does encoding affect string representations.
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
Title: `bytes`: The Lesser-Known Python Built-In Sequence • And Understanding UTF-8 Encoding
2-
Tags: programming, python, explanation
3-
Author: Stephen Gruppetta
4-
Url: https://www.thepythoncodingstack.com/p/bytes-python-built-in-unicode-utf-8-encoding
1+
Title: Creating great README files for you Python projects
2+
Tags: programming, python, how-to guide
3+
Author: Leodanis Pozo Ramos
4+
Url: https://realpython.com/readme-python-project/
55
Save_As:
66

7-
When using strings and bytes in Python you may, like me, stick to using utf-8 encoding for anything. When you start having some weirds characters being displayed you know its probably because its not utf-8 encoded.
8-
But do you know actually how this works behind the scene? Discover how Python `bytes` are working internally and does encoding affect string representations.
7+
A well-crafted README is essential for any Python project, yet it's too often overlooked in the professional world—despite being crucial for smooth collaboration.
8+
In environments where developers frequently change, a clear and structured README ensures seamless onboarding and project continuity.
9+
This guide walks you through best practices to make your README informative, accessible, and contribution-friendly, so your code remains useful to both current and future developers.

0 commit comments

Comments
 (0)