this post was submitted on 12 Jul 2024
299 points (99.7% liked)

Technology

37521 readers
96 users here now

A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.

Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.

Subcommunities on Beehaw:


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] jarfil@beehaw.org 2 points 1 month ago

Check out this one for a general overview:

https://youtu.be/OFS90-FX6pg

You may want to also check an intro to neural networks, and Q* is a somewhat new concept. Other than that... "the internet". There are plenty of places with info, not sure if there is a more centralized and structured one.

Learning to code with just ChatGPT is not the best idea. You need to join three areas:

  • general principles (data structures, algorithms, etc)
  • language rules (best described in a language reference)
  • business logic (computer science, software engineering, development patterns, etc)

ChatGPT's programming answers, give you an intersection of all those, often with some quirks, with the nice but only benefit of explaining what it thinks it is doing. You still need to have some basic understanding of those in order to understand what ChatGPT is talking about, how to double-check it, and how to look for more info. It can be a great timesaver as a way to generate drafts, though.