I have tried several AI:
ChatGPT
https://talkai.info
Bing Copilot
https://www.bing.com/copilot
Perplexity AI
https://www.perplexity.ai
AI chatting
https://www.aichatting.net
HuggingChat
https://huggingface.co/chat
you.com
https://you.com/
I have set these two tasks:
Task A
Due to various problems, production decreased by 11%
By how many percent would the price have to be increased to compensate for this loss?
Task B
Are there any years in which "Friday the thirteenth" does not appear at all?
Task A was answered incorrectly by Bing Copilot and you.com
Task B was answered incorrectly by ChatGPT and AI chatting
Perplexity AI was the best at supporting bash programming.
It is often useful to ask the question or task to several AI
Experience in the use of AI
- Ed_P
- Contributor
- Posts: 8912
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Experience in the use of AI
Which AI did you use to post this? 

Experience in the use of AI
Hi Ed_P,
I did not post this with any AI.
I wrote the text myself after trying out many AIs.
I was horrified after I discovered that some AIs solve simple math problems incorrectly
I did not post this with any AI.
I wrote the text myself after trying out many AIs.
I was horrified after I discovered that some AIs solve simple math problems incorrectly
Experience in the use of AI
I have set Perplexity AI this task (formulated in German):
write a bash script that determines if a more recent version for Chromium 64 bit exists, if I specify my version number as a parameter.
After several corrections, this script was created:
But it doesn't work.
The new version number is not displayed
The AI has given up
This is where the limits of AI become apparent
But AI has often helped me with programming scripts
write a bash script that determines if a more recent version for Chromium 64 bit exists, if I specify my version number as a parameter.
After several corrections, this script was created:
Code: Select all
#!/bin/bash
if [ -z "$1" ]; then
echo "Verwendung: $0 <versionsnummer>"
exit 1
fi
current_version="$1"
releases_url="https://chromium.googlesource.com/chromium/src/+/refs/heads/main/chrome/VERSION"
releases_page=$(curl -s "$releases_url")
major=$(echo "$releases_page" | grep -oP '(?<=MAJOR=)[0-9]+')
minor=$(echo "$releases_page" | grep -oP '(?<=MINOR=)[0-9]+')
build=$(echo "$releases_page" | grep -oP '(?<=BUILD=)[0-9]+')
patch=$(echo "$releases_page" | grep -oP '(?<=PATCH=)[0-9]+')
latest_version="$major.$minor.$build.$patch"
if [ "$(printf '%s\n' "$latest_version" "$current_version" | sort -V | head -n 1)" = "$current_version" ]; then
echo "Chromium $current_version ist auf dem neuesten Stand."
else
echo "Eine neuere Version von Chromium ist verfügbar: $latest_version"
fi
The new version number is not displayed
The AI has given up
This is where the limits of AI become apparent
But AI has often helped me with programming scripts
-
- Warlord
- Posts: 768
- Joined: 04 Jan 2014, 04:27
- Distribution: Porteus 5.0 x64 OpenBox
- Location: NZ
- Contact:
Experience in the use of AI
https://www.blackbox.ai/publish/OEQFcaXs7ecRu7GX6fLUo generated this:
Code: Select all
#!/bin/bash
VERSION=$1
# Get the latest version of Chromium from the official repository
LATEST_VERSION=$(git ls-remote --tags https://chromium.googlesource.com/chromium/src.git | grep -oP '(?<=refs/tags/)[^/]+')
# Compare the versions
if [[ $VERSION!= $LATEST_VERSION ]]; then
echo "A more recent version of Chromium 64 bit exists: $LATEST_VERSION"
else
echo "You are running the latest version of Chromium 64 bit: $VERSION"
fi
Experience in the use of AI
Hi rych,
thanks
I didn't know about blackbox.ai.
As I've tried since then,
blachbox.ai also seems to be useful for helping and supporting bash scripts
thanks
I didn't know about blackbox.ai.
As I've tried since then,
blachbox.ai also seems to be useful for helping and supporting bash scripts
Experience in the use of AI
Question
"Are there any years in which "Friday the thirteenth" does not appear at all?"
has so far been answered incorrectly by 3 AIs: ChatGPT AIchatting and blackbox.ai
blackbox.ai writes
1700, 1800, 1900, ...
2100, 2200, 2300, ... In these years, "Friday the 13th" does not occur at all.
But blackbox.ai does not do any testing either,
because command "cal 1700" shows that September 13th is a Friday.
"Are there any years in which "Friday the thirteenth" does not appear at all?"
has so far been answered incorrectly by 3 AIs: ChatGPT AIchatting and blackbox.ai
blackbox.ai writes
1700, 1800, 1900, ...
2100, 2200, 2300, ... In these years, "Friday the 13th" does not occur at all.
But blackbox.ai does not do any testing either,
because command "cal 1700" shows that September 13th is a Friday.