create account

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

View this thread on: hive.blogpeakd.comecency.com
· @vikisecrets · (edited)
$7.33
Can ChatGPT replace software developers? No, but ...
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](https://images.hive.blog/DQmPpjozjmUY3bc8snsMPcJHbd2BJs5QPMFkdXajCTk4nbv/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("test@example.com")); // 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](http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html) 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("test@example.com")); // 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("test@example.com")); // 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](https://stemgeeks.net)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 101 others
properties (23)
authorvikisecrets
permlinkcan-chatgpt-replace-software-developers-no-but
categoryhive-163521
json_metadata{"tags":["chatgpt","ai","coding","javascript","technology","deutsch","proofofbrain","leofinance","hive-engine","stem"],"users":["example.com","example","vikisecrets"],"image":["https://images.hive.blog/DQmPpjozjmUY3bc8snsMPcJHbd2BJs5QPMFkdXajCTk4nbv/chatgpt-javascript-1.jpg"],"links":["http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html"],"app":"stemgeeks/0.1","format":"markdown","canonical_url":"https://stemgeeks.net/@vikisecrets/can-chatgpt-replace-software-developers-no-but"}
created2023-01-03 12:02:36
last_update2023-01-05 16:01:36
depth0
children22
last_payout2023-01-10 12:02:36
cashout_time1969-12-31 23:59:59
total_payout_value3.678 HBD
curator_payout_value3.656 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,331
author_reputation1,202,807,083,763,795
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,580,536
net_rshares19,313,852,005,765
author_curate_reward""
vote details (165)
@bescouted ·
$0.07
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.
👍  
properties (23)
authorbescouted
permlinkrnx51p
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-01-03 16:41:51
last_update2023-01-03 16:41:51
depth1
children0
last_payout2023-01-10 16:41:51
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length457
author_reputation118,309,258,668,927
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,586,587
net_rshares183,441,431,725
author_curate_reward""
vote details (1)
@chinito ·
$0.08
not yet, but maybe later..
👍  , ,
properties (23)
authorchinito
permlinkre-vikisecrets-rnxm7t
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 22:52:39
last_update2023-01-03 22:52:39
depth1
children0
last_payout2023-01-10 22:52:39
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation191,307,419,474,867
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,594,531
net_rshares214,827,887,314
author_curate_reward""
vote details (3)
@djbravo ·
$0.07
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.
👍  
properties (23)
authordjbravo
permlinkrnwuuy
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-01-03 13:01:00
last_update2023-01-03 13:01:00
depth1
children0
last_payout2023-01-10 13:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length290
author_reputation359,296,892,510,880
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,581,746
net_rshares180,549,476,463
author_curate_reward""
vote details (1)
@florakese ·
$0.07
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.
👍  
properties (23)
authorflorakese
permlinkre-vikisecrets-202313t174533929z
categoryhive-163521
json_metadata{"tags":["chatgpt","ai","coding","javascript","technology","deutsch","proofofbrain","leofinance","hive-engine","stem"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-03 16:45:33
last_update2023-01-03 16:45:33
depth1
children0
last_payout2023-01-10 16:45:33
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation69,016,276,124,205
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,586,670
net_rshares183,080,353,756
author_curate_reward""
vote details (1)
@hivebuzz ·
Congratulations @vikisecrets! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@vikisecrets/upvotes.png?202301031913"></td><td>You distributed more than 73000 upvotes.<br>Your next target is to reach 74000 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@vikisecrets) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pud-202301-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xQGM37X.png"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202301-feedback">Feedback from the January Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202212-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202212-result">Hive Power Up Month Challenge 2022-12 - Winners List</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202301"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202301">Be ready for the first Hive Power Up Month of the year 2023!</a></td></tr><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal Renewal</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
properties (22)
authorhivebuzz
permlinknotify-vikisecrets-20230103t195416
categoryhive-163521
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2023-01-03 19:54:15
last_update2023-01-03 19:54:15
depth1
children0
last_payout2023-01-10 19:54:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,954
author_reputation369,390,339,508,590
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,590,734
net_rshares0
@idksamad78699 ·
$0.07
This is Insane. Pretty sure ChatGPT can replace lot of Things in future maybe next search engine after Google as well. 

👍  
properties (23)
authoridksamad78699
permlinkre-vikisecrets-202313t18218888z
categoryhive-163521
json_metadata{"tags":["hive-163521","chatgpt","ai","coding","javascript","technology","deutsch","proofofbrain","leofinance","hive-engine","stem"],"app":"ecency/3.0.34-mobile","format":"markdown+html"}
created2023-01-03 13:02:18
last_update2023-01-03 13:02:18
depth1
children0
last_payout2023-01-10 13:02:18
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation375,094,489,988,342
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,581,759
net_rshares180,191,229,957
author_curate_reward""
vote details (1)
@igormuba ·
$0.07
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
👍  
properties (23)
authorigormuba
permlinkre-vikisecrets-202313t20315137z
categoryhive-163521
json_metadata{"tags":["hive-163521","chatgpt","ai","coding","javascript","technology","deutsch","proofofbrain","leofinance","hive-engine","stem"],"app":"ecency/3.0.35-mobile","format":"markdown+html"}
created2023-01-03 19:31:09
last_update2023-01-03 19:31:09
depth1
children0
last_payout2023-01-10 19:31:09
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length657
author_reputation129,603,781,755,476
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,590,255
net_rshares177,241,485,676
author_curate_reward""
vote details (1)
@javeson ·
$0.07
Great information!  Thanks for sharing!
👍  
properties (23)
authorjaveson
permlinkre-vikisecrets-rnxa3n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 18:30:57
last_update2023-01-03 18:30:57
depth1
children0
last_payout2023-01-10 18:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation1,728,596,860,665
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,588,863
net_rshares185,888,300,690
author_curate_reward""
vote details (1)
@jfang003 ·
$0.07
RE: Can ChatGPT replace software developers? No, but ...
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 <sup>Beta</sup>](https://leofinance.io/@jfang003/re-vikisecrets-3j9wab)
👍  
properties (23)
authorjfang003
permlinkre-vikisecrets-3j9wab
categoryhive-163521
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@jfang003/re-vikisecrets-3j9wab"}
created2023-01-04 07:44:36
last_update2023-01-04 07:44:36
depth1
children0
last_payout2023-01-11 07:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length330
author_reputation639,938,833,166,429
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,602,670
net_rshares186,256,481,064
author_curate_reward""
vote details (1)
@malos10 ·
$0.07
Would be a really interesting test to build a simple app using only Chatgpt jaja
👍  
properties (23)
authormalos10
permlinkre-vikisecrets-202313t201923192z
categoryhive-163521
json_metadata{"tags":["chatgpt","ai","coding","javascript","technology","deutsch","proofofbrain","leofinance","hive-engine","stem"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-04 00:19:24
last_update2023-01-04 00:19:24
depth1
children0
last_payout2023-01-11 00:19:24
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation658,162,136,817,033
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,596,072
net_rshares178,779,704,354
author_curate_reward""
vote details (1)
@mein-senf-dazu ·
$0.07
Sind wir der Singularität näher als gedacht?
👍  
properties (23)
authormein-senf-dazu
permlinkre-vikisecrets-202313t187642z
categoryhive-163521
json_metadata{"tags":["hive-163521","chatgpt","ai","coding","javascript","technology","deutsch","proofofbrain","leofinance","hive-engine","stem"],"app":"ecency/3.0.35-mobile","format":"markdown+html"}
created2023-01-03 17:07:06
last_update2023-01-03 17:07:06
depth1
children0
last_payout2023-01-10 17:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation300,120,266,111,037
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,587,145
net_rshares182,351,514,357
author_curate_reward""
vote details (1)
@mundharmonika ·
$0.07
!PIZZA !LOLZ !invest_vote 
👍  
properties (23)
authormundharmonika
permlinkre-vikisecrets-rnx5do
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 16:49:00
last_update2023-01-03 16:49:00
depth1
children1
last_payout2023-01-10 16:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation51,511,583,372,642
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,586,738
net_rshares182,715,569,272
author_curate_reward""
vote details (1)
@lolzbot ·
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>What do you get if you cross a bullet and a tree with no leaves?<br>A cartridge in a bare tree.</strong><br><sub>Credit: <a href="https://peakd.com/@reddit">reddit</a></sub><br>@vikisecrets, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of @mundharmonika<br><br>Delegate Hive Tokens to Farm $LOLZ and earn 110% Rewards.  <a href='https://peakd.com/@lolztoken/introducing-lolz-defi-now-you'>Learn more.</a><br>(1/1)</center></p>
properties (22)
authorlolzbot
permlinkre-re-vikisecrets-rnx5do-20230103t164921z
categoryhive-163521
json_metadata"{"app": "beem/0.24.19"}"
created2023-01-03 16:49:30
last_update2023-01-03 16:49:30
depth2
children0
last_payout2023-01-10 16:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length628
author_reputation196,265,390,654,272
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,586,748
net_rshares0
@ozelot47 ·
$0.07
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.
👍  
properties (23)
authorozelot47
permlinkre-vikisecrets-rnwzwa
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 14:50:33
last_update2023-01-03 14:50:33
depth1
children0
last_payout2023-01-10 14:50:33
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation142,494,549,479,901
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,584,188
net_rshares179,831,630,097
author_curate_reward""
vote details (1)
@pizzabot ·
<center>🍕 PIZZA !


I gifted <strong>$PIZZA</strong> slices here:
@mundharmonika<sub>(1/5)</sub> tipped @vikisecrets (x1)


<sub>Join us in <a href="https://discord.gg/hivepizza">Discord</a>!</sub></center>
properties (22)
authorpizzabot
permlinkre-can-chatgpt-replace-software-developers-no-but-20230103t165111z
categoryhive-163521
json_metadata"{"app": "beem/0.24.19"}"
created2023-01-03 16:51:12
last_update2023-01-03 16:51:12
depth1
children0
last_payout2023-01-10 16:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation7,563,984,529,447
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,586,773
net_rshares0
@stayoutoftherz ·
$0.08
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.
👍  ,
properties (23)
authorstayoutoftherz
permlinkre-vikisecrets-rnwsqv
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 12:16:09
last_update2023-01-03 12:16:09
depth1
children3
last_payout2023-01-10 12:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation1,327,460,528,358,198
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,580,798
net_rshares206,986,620,873
author_curate_reward""
vote details (2)
@vikisecrets ·
$0.04
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.
👍  ,
properties (23)
authorvikisecrets
permlinkre-stayoutoftherz-rnwtf2
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 12:30:39
last_update2023-01-03 12:30:39
depth2
children2
last_payout2023-01-10 12:30:39
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length253
author_reputation1,202,807,083,763,795
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,581,157
net_rshares122,496,905,362
author_curate_reward""
vote details (2)
@stayoutoftherz ·
$0.08
Und daher auch Bürgergeld bzw. BGE, um die entrechteten, überwachten Arbeitslosenheere bei Laune zu halten 😟, damit sie weiter ihre Almosengeber wählen.
👍  ,
properties (23)
authorstayoutoftherz
permlinkre-vikisecrets-rnwugq
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 12:53:15
last_update2023-01-03 12:53:15
depth3
children1
last_payout2023-01-10 12:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation1,327,460,528,358,198
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,581,613
net_rshares207,255,633,999
author_curate_reward""
vote details (2)
@terry.aya ·
$0.07
Die Zeit wird kommen, da wird die KI uns überlegen sein 
👍  
properties (23)
authorterry.aya
permlinkre-vikisecrets-rnx6t6
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 17:20:00
last_update2023-01-03 17:20:00
depth1
children0
last_payout2023-01-10 17:20:00
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation13,827,901,881,920
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,587,482
net_rshares181,989,663,775
author_curate_reward""
vote details (1)
@thebighigg ·
$0.14
They may not replace coders yet... But if quantum computers become mainstream all bets are off!
👍  ,
properties (23)
authorthebighigg
permlinkre-vikisecrets-rnx9lr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-03 18:20:15
last_update2023-01-03 18:20:15
depth1
children1
last_payout2023-01-10 18:20:15
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation483,203,040,157,435
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,588,673
net_rshares365,390,256,042
author_curate_reward""
vote details (2)
@thelowededwookie ·
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.
properties (22)
authorthelowededwookie
permlinkre-thebighigg-202352t174255487z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-05-02 05:42:57
last_update2023-05-02 05:42:57
depth2
children0
last_payout2023-05-09 05:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation3,004,141,479,959
root_title"Can ChatGPT replace software developers? No, but ..."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,077,910
net_rshares0