You can downvote me but I think OP hasn't learned how to learn yet. If OP reads Wikipedia by understanding every sentence and clicking on every link, that's deliberately sabotaging his own learning. Attitudes like "I don't really feel like spelunking through a ton more articles" simply shows OP isn't interested in learning per se, just quick answers. OP learns in a way that's very child-like. When you are a five-year…
OP here. I think learning exists on a broad spectrum. On one end, you're just indulging curiosity ("I wonder how...?"). On the other, you're trying to build deep understanding and expertise. I completely agree that for the latter goal, the approaches in the blog post are insufficient, even undesirable. And I do worry that the way I engage with content on the web is weakening my ability to go deep on a subject I'm int…
GPT makes learning fun again
131–140 of 243 posts
Re: GPT makes learning fun again
#132* Various new english idioms. I read a lot, but still find new ones
* More optimal translations between languages i'm ~native in.
* ton of new JS, Python libs
* Got deeper in SQL (recursive queries, etc)
* Can use CSS way better than before
* Mermaid
I wrote https://chatcraft.org/ as a friendlier UI for learning programming related things.
Re: GPT makes learning fun again
#133Earlier quoted context omitted.
That is actually the killer feature of interactive AIs. People go on and on and on about "accuracy", completely ignoring that accuracy is irrelevant to 99.9% of things that humans do in their everyday lives. Simulating (positive) human interaction is far more impactful than getting facts correct.
What does it mean to have a positive interaction with someone who consistently tells you misinformation with a high degree of confidence?
Re: GPT makes learning fun again
#134PS you would also need to do this if you started with Wikipedia as well.
Re: GPT makes learning fun again
#135Things I learned using gpt in last 6 mo: * Various new english idioms. I read a lot, but still find new ones * More optimal translations between languages i'm ~native in. * ton of new JS, Python libs * Got deeper in SQL (recursive queries, etc) * Can use CSS way better than before * Mermaid I wrote https://chatcraft.org/ as a friendlier UI for learning programming related things.
Re: GPT makes learning fun again
#136Earlier quoted context omitted.
If you're not DevOps, why bother learning whatever framework is used today, but which will be replaced by something else next year? I just want to get my stuff deployed and that's it.
Yeah that’s true, why bother actually knowing anything about the systems they run your software /s
Re: GPT makes learning fun again
#137Re: GPT makes learning fun again
#138Scary part is I don't know enough about the subject to tell apart truth from falshood because they are stated in exactly the same confident manner. Also most things are true with falsehoods sprinkled in between
Re: GPT makes learning fun again
#139Earlier quoted context omitted.
Is it? I couldn't even get it to figure out an NGINX config, despite feeding it the documentation and URL rewrites it would need, and the prior Apache .htaccess file. Spent days on it. Consulted with people who know more than me about prompt engineering. Nope. Reasoning is not its strong point, IMO. It's a next-word prediction model, why would it be? It's doing what an LLM does. Frequently, nonsensically.
I've actually had great success with the automation of boiler plate DevOps nonsense using GPT-4, including: GitHub actions, Caddy scripts, Docker files, etc. Every second that I didn't have to: - go look up a similar problem on Google - open three or four stack overflow tabs - read through the stack overflow links - copy out the answer - change all the variables to match variable names that I want All of this represe…
If you just need the beginner's gist or are completely unfamiliar with something, they're not bad. Getting specific answers to corner cases is often a waste of time.
Re: GPT makes learning fun again
#140Earlier quoted context omitted.
I've actually had great success with the automation of boiler plate DevOps nonsense using GPT-4, including: GitHub actions, Caddy scripts, Docker files, etc. Every second that I didn't have to: - go look up a similar problem on Google - open three or four stack overflow tabs - read through the stack overflow links - copy out the answer - change all the variables to match variable names that I want All of this represe…
> I'm honestly baffled that people lack the ability to use LLMs in a productive and optimal manner. Huge +1. I’ve got it to do a large part of my work for me by chaining some simple API calls. The fundamental conceptual gap I see - people often ask it to do some “thinking”. Then are annoyed by the inaccurate output. A simple example is doing word count and it getting the wrong answer very confidently. Of course it su…