blog

# chatGPT?

ChatGPT is an Artificial Intelligent chatbot that is supposed to answer your query based on the information, it is trained with. As the name suggests, It is a chat-based AI tool that is quite powerful and it’s quite evident while interacting with it.

It just took 5 days to reach one million users because of its popularity.

This is about my interaction with ChatGPT.

# Is Elon Musk an Alien? Even chatGPT understands this joke.

# Does chatGPT know who will be the next prime minister of India?

# Does chatGPT know the winner of FIFA 2022?

Ohh! no, the Request timed out. After trying again, the answer was pretty much the same as the previous one.

# Shell Script programming questions. The answer was pretty accurate.

#!/bin/bash

# Set defaults for the options
number=10
file=script.txt

# Use getopts to parse the options and arguments
while getopts ":hn:f:" opt; do
  case $opt in
    h)
      # Display a help message and exit
      echo "Usage: script.sh [-h] [-n NUMBER] [-f FILE]"
      exit 0
      ;;
    n)
      # Set the value of the number option
      number=$OPTARG
      ;;
    f)
      # Set the value of the file option
      file=$OPTARG
      ;;
    :)
      # Display an error message if an option is missing an argument
      echo "Error: -$OPTARG requires an argument"
      exit 1
      ;;
    \?)
      # Display an error message if an invalid option is provided
      echo "Error: invalid option -$OPTARG"
      exit 1
      ;;
  esac
done

# Use the values of the options and arguments in the rest of the script
echo "Number = $number"
echo "File = $file"

# Debugging a C++ Linker error with chatGPT! Did it work?

It helped but didn’t provide the exact solution.

# Asking, if something can be learned from chatGPT?

# Is openAI/chatGPT our competetor?

# Hmmm! chatGPT knows data structure and algorithms.

# What is the chatGPT’s thought about overtaking Google?

# ChatGPT knows about AI dominance in the future.

After seeing the above response, one can conclude that it’s not simply gonna replace Google and StackOverflow. Community-driven things will be there even after AI takes over the world. It will definitely help us to write the code but there is no way it can design a project currently. Processing so much data from the internet and curating the answer is not a simple thing and it requires heavy processing.

Currently, it leaves a lot of open questions :
How about debugging the code? This is not mature enough to solve any issue!
– What will happen if AI will write the code and the developer has to debug the same code?
– How monetization is going to take place for this?

Try chatGPT

AI is here to help us to speed up the things around us and let humans focus on the bigger goal.
Spread the love

Rohit

I am a software developer by profession. I love coding and learning new skills.

Leave a Reply

Your email address will not be published. Required fields are marked *