Skip to content

Commit 473bb50

Browse files
committed
remove gremlins
1 parent 2e8f2dc commit 473bb50

4 files changed

+31
-31
lines changed

docs/posts/2018/2018-05-07-setting-up-powershell-gallery-and-nuget-gallery-for-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ PoshRSJob 1.7.4.4 PSGallery Provides an alt
123123

124124
```powershell
125125
# I also add the Trusted switch
126-
Register-PackageSource -Name Nuget -Location "http://www.nuget.org/api/v2" ProviderName Nuget -Trusted
126+
Register-PackageSource -Name Nuget -Location "http://www.nuget.org/api/v2" -ProviderName Nuget -Trusted
127127
```
128128

129129
My Nuget client is at v2, so I can only target at Nuget v2 API.

docs/posts/2025/2025-02-01-python-type-hints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Python is a dynamically typed language, meaning variable types don't require exp
1616

1717
Type hints ([PEP 484](https://peps.python.org/pep-0484/)) have been a major focus of recent Python releases, and I was particularly intrigued when I heard about [Guido van Rossum's work on MyPy at Dropbox](https://blog.dropbox.com/topics/company/thank-you--guido), where the team needed robust tooling to migrate their codebase from Python 2 to Python 3.
1818

19-
Today, type hints are [essential for modern Python development](https://mypy.readthedocs.io/en/stable/faq.html#would-my-project-benefit-from-static-typing). They significantly enhance IDE capabilities and AI-powered development tools by providing better code completion, static analysis, and error detection. This mirrors the evolution we've seen with TypeScript's adoption over traditional JavaScriptexplicit typing leads to more reliable and maintainable code.
19+
Today, type hints are [essential for modern Python development](https://mypy.readthedocs.io/en/stable/faq.html#would-my-project-benefit-from-static-typing). They significantly enhance IDE capabilities and AI-powered development tools by providing better code completion, static analysis, and error detection. This mirrors the evolution we've seen with TypeScript's adoption over traditional JavaScript-explicit typing leads to more reliable and maintainable code.
2020

2121
The majority of this post is based on [MyPy documentation](https://mypy.readthedocs.io/).
2222

0 commit comments

Comments
 (0)