How does ChatGPT compare to GitHub Copilot when it comes to getting help writing code? Is one better than the other? For ChatGPT, have people learned any good prompt design to get excellent code results?
Conversation
Replying to
I'm using both of them for my learning-Rust project at the moment, notes in my issues here: github.com/simonw/advent-
ChatGPT will write entire scripts based on a short prompt - Copilot tends to more work one line (or block) at a time
Replying to
If we assume the Centaur model for pairing these tools with people, any tips you’ve learned when working with ChatGPT so far for programming tasks?
1
2
Replying to
Best results I have had so far are with prompts that look like this
Quote Tweet
Using ChatGPT to write a scraper API for ChatGPT
fedi.simonwillison.net/@simon/1094518
Show this thread
read image description
ALT
3
Out of curiosity, I saw in your code you're using just. How do you like it, and why use just over make or something Python-based like pyinvoke.org. I've been looking for alternatives to make.
1
1
I switched to "cargo run" now, but I have a few notes on why I like Just here
2


