An AI writing code for you
Posted: Sat Jan 21, 2023 3:19 pm
For those who are interested in an AI bot generating code (and many other things, like reports) for you! Try https://beta.openai.com/playground
Not only for starters this could be interesting to use.
E.g. as a test, I gave it the question: Show me the code in livecode with which i can update data in a file in windows.
It gave me the following answer:
I just thought it would be nice for all in the community to know about this.
Regards,
Paul
Not only for starters this could be interesting to use.
E.g. as a test, I gave it the question: Show me the code in livecode with which i can update data in a file in windows.
It gave me the following answer:
Code: Select all
put "This is new data" into tData
put url ("file:" & specialFolderPath("documents") & "/myfile.txt") into tURL
open file tURL for write
write tData to file tURL
close file tURL
Regards,
Paul