Can ChatGPT replace software developers? No, but ...

avatar
(Edited)

Kann ChatGPT Software-Entwickler ersetzen? Nein, aber ...

Eine Fähigkeit von ChatGPT, die mich geflasht hat, ist dass GPT sogar programmieren kann.

In der jetzigen Version kann GPT kleine Programme und Funktionen schreiben, aber auch Fehler ausbessern und Sachen im Code verändern, wenn man GPT danach fragt und Programme von einer Programmiersprache in eine andere übersetzen.

Das ist schon ziemlich heftig und beeindruckend, aber es gibt wie immer Limitierungen.

GPT kann im Moment nur kleine Beispielprogramme schreiben und remixen, die man höchst wahrscheinlich in einer ähnlichen Form auch mit Google finden würde.

Und dann wäre auch noch die Sache mit den Fehlern. GPT macht häufig Fehler oder erfindet einfach etwas.

Man kann also nicht erwarten, dass einem GPT ganze, funktionstüchtige und fehlerfreie Applikationen oder Webseiten programmiert.

Die Aufgabe eines Software-Entwicklers geht normalerweise auch weit über das Programmieren hinaus und umfasst auch das Design der Software und generell das Lösen von sehr komplexen Problemen.

Ich denke daher nicht, dass GPT im Moment hoch qualifizierte Entwickler ersetzen kann, aber es ist ein sehr mächtiges Werkzeug, das in Zukunft viele Routinearbeiten effizienter machen könnte.

In Summe kann es dann schon in die Richtung gehen, dass man in Zukunft weniger Programmierer brauchen wird und sich die Arbeit eher in Richtung hoch qualifizierte Software-Architekten verlagert, die KIs dirigieren und sich um das Design und die schwierigen Aufgaben kümmern, die KIs im Moment noch nicht lösen können.

Was sagt ihr dazu? Denkt ihr, dass AI-Systeme Software-Entwickler ersetzen werden?

Coding session with ChatGPT

chatgpt-javascript-1.jpg

I asked ChatGPT to write me a javascript function to check whether an email address is correct.

Q

write a javascript function that checks whether an email address is correct

A (ChatGPT)

Sure! Here is a function that checks whether a given email address is in a valid format:

function isValidEmail(email) {
  // Use a regular expression to check for a valid email format
  var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
  return re.test(String(email).toLowerCase());
}

To use this function, you can pass in an email address as a string and it will return true if the email is in a valid format and false if it is not.

For example:

console.log(isValidEmail("[email protected]")); // true
console.log(isValidEmail("test@example")); // false

This function uses a regular expression to check for a valid email format. The regular expression checks for the presence of an "at" symbol (@), at least one character before and after the "at" symbol, and a period (.) after the "at" symbol to indicate a domain. It also allows for the inclusion of characters such as "." and "-" in the email address, as long as they are not the first or last characters.

Note

ChatGPT produced a correct javascript program with a regular expression and even provided some explanation and test examples that could be used for unit testing.

However the regex is not very optimal and efficient. Rather overcomplicated, included a check for an IP4 adress, and the test for uppercase characters is useless because the string was already converted to lowercase before.

Checking an email address with a regex can be quite hard depending how accurate the test should be.

An RFC822-compliant check would need an insanely long regex that is more than 6000 characters long.

But often you don't need an RFC-compliant check in javascript, but what you want to do is implement a quick and dirty solution.

So I asked ChatGPT to simpfly the regex:

Q

simplify the regex that validates the email address

A (ChatGPT)

Here is a simplified version of the regular expression that can be used to validate an email address:

/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/

With this regular expression, you can update the isValidEmail function like this:

function isValidEmail(email) {
  // Use a regular expression to check for a valid email format
  var re = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
  return re.test(String(email).toLowerCase());
}

This regular expression checks for the presence of an "at" symbol (@), at least one character before and after the "at" symbol, and a period (.) after the "at" symbol to indicate a domain. It also allows for the inclusion of characters such as "." and "-" in the email address, as long as they are not the first or last characters.

To use this function, you can pass in an email address as a string and it will return true if the email is in a valid format and false if it is not.

For example:

console.log(isValidEmail("[email protected]")); // true
console.log(isValidEmail("test@example")); // false

Q

make the regex even shorter and simpler

A (ChatGPT)

Here is an even shorter and simpler regular expression that can be used to validate an email address:

/^\S+@\S+$/

This regular expression checks for the presence of an "at" symbol (@) with at least one character before and after it. It does not check for a valid domain name or for the inclusion of special characters such as "." or "-".

With this regular expression, you can update the isValidEmail function like this:

function isValidEmail(email) {
  // Use a regular expression to check for a valid email format
  var re = /^\S+@\S+$/;
  return re.test(email);
}

To use this function, you can pass in an email address as a string and it will return true if the email is in a valid format and false if it is not.

For example:

console.log(isValidEmail("[email protected]")); // true
console.log(isValidEmail("test@example")); // true

Keep in mind that this regular expression is very basic and may not accurately validate all email addresses. For example, it will return true for an email address like "test@example", which is not a valid email because it does not include a domain name. To fully validate an email address, it is recommended to use a more comprehensive regular expression that checks for a valid domain name and allows for the inclusion of special characters.

Conclusion

Amazing!

English

Can ChatGPT replace software developers? No, but ...

One capability of ChatGPT that flashed me is that GPT can even code.

In the current version, GPT can write small programs and functions, but also fix bugs and change things in the code if you ask GPT to, and translate programs from one programming language to another.

This is pretty mind-boggling and impressive, but there are limitations as always.

GPT can currently only write and remix small sample programs that you would most likely find in a similar form using Google too.

And then there is the matter of bugs. GPT often makes mistakes or simply makes something up that does not make sense.

So you can't expect GPT to program you an entire, functional and bug-free app or website.

The job of a software developer usually also goes far beyond programming and includes designing the software and generally solving very complex problems.

So I don't think that GPT can replace highly skilled senior developers at the moment, but it is a very powerful tool that could make many routine tasks more efficient in the future.

All in all, it could lead to a situation where fewer programmers will be needed in the future and the work will shift more towards highly qualified software architects, who will direct AIs and take care of the design and the difficult tasks that AIs cannot solve at the moment.

What do you guys think? Will AI systems replace software developers in the long run?

Sources

[1] ChatGPT https://chat.openai.com/
[2] x-posted on my blog: https://virtualnet.at/weblog/260

Live your Secrets and Hive Prosper 🍯

xx Viki @vikisecrets

Posted with STEMGeeks



0
0
0.000
22 comments
avatar

Natürlich, ist nur eine Frage der Zeit. Man darf nicht vergessen, dass der Gratis-Bot eine abgespeckte Version ist. Google ist da wesentlich weiter.

0
0
0.000
avatar

Sehr spannende Entwicklung, könnte mir zum Beispiel vorstellen, dass speziell angepasste KIs in Zukunft Standardwebseiten programmieren und auch grafisch designen könnten, und dass dann viele kleine Web- und Marketingagenturen arbeitslos werden könnten.

0
0
0.000
avatar

Und daher auch Bürgergeld bzw. BGE, um die entrechteten, überwachten Arbeitslosenheere bei Laune zu halten 😟, damit sie weiter ihre Almosengeber wählen.

0
0
0.000
avatar

Zumindest diejenigen, die ihre Giftspritzen überleben!

0
0
0.000
avatar

I personally think its possible for chatGPT to take on certain tasks of software engineering. I think you have touched on a very important topic today. A normal person does not have ability to work like a software engineer. When we read about something, we can still talk about it properly.

0
0
0.000
avatar

This is Insane. Pretty sure ChatGPT can replace lot of Things in future maybe next search engine after Google as well.

0
0
0.000
avatar

Ich schätze schon das es in ein paar Jahren so weit sein wird, dass die KI Templates für Webseiten oder auch grafische Oberflächen entwickeln wird. Für den Feinschliff werden aber mit Sicherheit noch Menschen benötigt.

0
0
0.000
avatar

All right, i am not a dev, but have already asked it to write me a few small programs that would make my life so much easier.
Have not tested it, but installed node.js to my laptop and will try the code. i hope it works.

Other than that.. considering it's first baby steps... i am so stoked it's here and i will not be so dependant on extremely busy devs when i need something.

And eventually maybe i'll be able to launch a product or two dow the line.

0
0
0.000
avatar

That it can translate from one programming language to another is very interesting.
To your question I will answer that I think that AI will replace almost any job but it has to improve a lot, it is a technology in its infancy.

0
0
0.000
avatar

Die Zeit wird kommen, da wird die KI uns überlegen sein

0
0
0.000
avatar

They may not replace coders yet... But if quantum computers become mainstream all bets are off!

0
0
0.000
avatar

Quantum computers won't really change things they'll just make things so much faster. This would allow AI to be more realtime but won't change how AI operates, that's down to programmers not hardware.

0
0
0.000
avatar

Great information! Thanks for sharing!

0
0
0.000
avatar

It may eventually replace programmers, but as stupid as it sounds I would say "programmers have not yet replaced programmers"

Because coding has become more and more simple, most of the work is copying what already works and reshaping it to something new. We copy a lot of code from other code and from stackoverflow.

As programming became easier the demand for programmers didn't seem to decrease.

So if ChatGPT does the job of helping us find the code we need, that still would be anothee tool for programmers, and not a competitor, like package management, open source and stackoverflow have all been another tool instead of competitor in the market

0
0
0.000
avatar

Congratulations @vikisecrets! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

You distributed more than 73000 upvotes.
Your next target is to reach 74000 upvotes.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

To support your work, I also upvoted your post!

Check out our last posts:

Feedback from the January Hive Power Up Day
Hive Power Up Month Challenge 2022-12 - Winners List
Be ready for the first Hive Power Up Month of the year 2023!
The Hive Gamification Proposal Renewal
Support the HiveBuzz project. Vote for our proposal!
0
0
0.000
avatar

Would be a really interesting test to build a simple app using only Chatgpt jaja

0
0
0.000
avatar

I don't think they will completely replace developers but it can definitely reduce the number of software developers required. After all, if you can start from a better code base generated, it makes things much more straightforward.

Posted Using LeoFinance Beta

0
0
0.000