AI is really strong, as a 10-year programmer, I panicked

Chatgpt has been really hot in the past few months. Yesterday I saw an artificial intelligence reply to human beings. I was quite shocked.

picture
I wrote a program for 10 years before, and now it takes more than 20 minutes to write a binary tree by hand.

But chatgpt only takes a few seconds.

Do you think I'm panicking?

It is fast and good to see the code written by others!

class Node:
    def __init__(self, val):
        self.val = val
        self.left = None
        self.right = None

# Define a class for the binary tree
class BinaryTree:
    def __init__(self):
        self.root = None

    # Function to insert a node into the binary tree
    def insert(self, val):
        new_node = Node(val)
        if self.root is None:
            self.root = new_node
        else:
            current = self.root
            while True:
                if val < current.val:
                    if current.left is None:
                        current.left = new_node
                        break
                    else:
                        current = current.left
                elif val > current.val:
                    if current.right is None:
                        current.right = new_node
                        break
                    else:
                        current = current.right

    # Function to traverse the binary tree in-order
    def inorder_traversal(self, node):
        if node is not None:
            self.inorder_traversal(node.left)
            print(node.val)
            self.inorder_traversal(node.right) 

# Example usage
tree = BinaryTree()
tree.insert(5)
tree.insert(3)
tree.insert(7)
tree.insert(1)
tree.insert(9)
tree.inorder_traversal(tree.root) # Output: 1 3 5 7 9

Recently, using ChatGPT to write code, the speed has doubled,

Standing on the tuyere, pigs can fly!

If the direction is right, you will get twice the result with half the effort; if the direction is wrong, your efforts will be in vain! At present, almost all domestic Internet giants are working hard on R&D, and the top domestic reptile teams and AI R&D personnel are almost being poached.

picture

On April 10th, Wang Xiaochuan, the founder of Sogou, brought $50 million into the group and became another Internet hero who joined the large-scale model "Battle of the Gods" after Wang Huiwen, the co-founder of Meituan, and Li Kaifu, the founder of Sinovation Works. .

AI is indeed not just a simple tool, its application is really extensive!

Recently, I have developed a lot of project lists with ChatGPT, and Party A is basically satisfied! Saved me a lot of development time.

insert image description here
insert image description here
insert image description here
insert image description here

Therefore, everyone should combine their own industries and use gpt to do things that can improve their work!

This wave of AI has brought many opportunities, and it may be the biggest year of the Internet in the past 20 to 30 years!

A friend of mine said that his company has cut all the art department, let's look at the ability of AI to make pictures:

insert image description here
insert image description here

AI tools can generate one in a few seconds. If a human draws it, one day is enough...

What we ordinary people can do now is to try our best to understand this technology in advance, and rely on these technologies to make some attempts and preparations.
When the right opportunity arises, team up and do something together. If you can really seize the opportunity, you will take off in this life.
For example, some partners have already taken off:

Graduate students, use ChatGPT to earn 20,000 a month!

insert image description here

Entered ChatGPT on February 8th, and became the head account of the video account ChatGPT within 10 days. So far, the video account has gained 9W+ fans, and the viewers of a single live broadcast have exceeded 20W+, and the private domain enterprise WeChat/personal WeChat 8k+ has been diverted, and 20K+ has been directly realized.

insert image description here

Programmer Xiaomeng has 10 years of experience in side jobs. After his sophomore year, he basically never wanted a penny from his family. After his first year of graduate school, he began to take on various projects and outsourcing. One year after graduation, he took care of all the mortgages and car loans. Worked as a programmer, project supervisor, and product manager. It is often requested by some organizations to invite them to share side jobs.

Many times, we don't know how to make money or business. Because there are too few things to learn and touch in this area. Textbooks will teach us Tang poetry and Song Ci, but they will not teach operations, promotion, how the company goes public, etc.
picture
Now artificial intelligence is rising wildly, and major companies are all in!

Xiaomeng thinks that ordinary people should do two things well:

1. Improve work efficiency;
2. Start a sideline business.

I am Xiaomeng, a programmer, and the above project was developed with chatgpt. If you need to learn, I can open source for you. If necessary, please like and comment! If there are more people who like it, I will organize and open source it!

Come on! You can also contact me below!

Guess you like

Origin blog.csdn.net/mengchuan6666/article/details/130359815