How does an AI explain type hints in Python

This article is about type hints in Python. In addition, it is also an article on the subject of artificial intelligence. Because the following text was created by an AI. However, not ChatGPT, but YouWrite was used. This is the writing AI of the You.com search engine. Here is the answer I got from this …

Read more

Create a Virtual Environment in Python

Introduction What does a virtual development environment do? It isolates different Python versions and their package installations from each other. Once set up for a Python project, this means that the packages used are only available to this project. Updating one of these packages does not affect other packages installed on the system. In addition, …

Read more

Mastodon is not an alternative to Twitter

The current events on Twitter are more exciting than some TV series. (I was about to quit Netflix.) Even though some journalists already see Twitter’s end, I think it’s open how this story ends. But I have to admit that it doesn’t look good for Twitter at the moment. Yesterday, hundreds of employees left Twitter …

Read more

How to Fetch Hacker News from news.ycombinator.com?

Some time ago I familiarized myself with the topic of web scraping. As a programming language, the decision quickly falls on Python, since there are good libraries available for this task. When dealing with a new topic, it is not a bad idea to do so creating a self-developed program. The result is: fetch-hackernews. As …

Read more