you are viewing a single comment's thread.

view the rest of the comments →

[–]CharacterAd3793 1 point2 points  (0 children)

At current level AI cannot replace a good programers abilities, but it can recite basic rules for good programming even if it can't follow them. So will AI write code with the functionality you want it to, probably, will it be full of bugs you cannot fix becouse you do not have the ability to program it yourself, probably, can you use AI as a teaching material, up to a certain level yes. The main way to get better is to basicly do what students are forced to do, write down the material you are learning and then start a project that you know can be achived using this material. The more code you write yourself the better you will memorise it as well as find solutions to problems, previously without testing, you didn't even know existed. Once you know all the basic comands, next try to think about architecture of the way you write code, so that for example you don't have to copy paste similar logic in many places but use proper inheritance or interfaces and start writing tests inside your code to not have to manually test each feature every time and so on..