Back
Shashank

Shashank
PRO

@shashank

Business builder from Sydney.
758
Joined November 2022

Yea do that if you have to, you can copy and paste the bugs into chatGPT and get good solutions almost all the time, sometimes you may have to consult Google or stack overflow.

Think of something you want to built and ask ChatGPT or Claude how to do it, follow the steps and ask it when you have problems, use Google if it ever fails you.

so I did this one and tried to deploy the code but it returned bugs that I did not know how to solve.

Maybe I should try again and post my problem online!

Yea do that if you have to, you can copy and paste the bugs into chatGPT and get good solutions almost all the time, sometimes you may have to consult Google or stack overflow.

If the Dell has been working fine for you for 7 years then just get a newer similar laptop. The extra expense for a Mac is only worth it if you get benefits from the OS, which most people don't.

I'd love to see failures and successes as part of the weekly/monthly recaps. Makes more sense to me than daily failures.

Some great suggestions here about starting your own thing, while you hunt for clients you can establish your reputation by completing bug bounties. If you complete a few bounties for a medium sized company it's easier to sell your services to them since you have already demonstrated your expertise.

No worries, let me know if you have any other questions.

I'd just jump into an API testing application like Postman or similar and start playing with it based on the docs.

If you haven't played with one before here is a cURL you can import into it to get you started -

curl --location --request POST 'api.openai.com/v1/chat/comple…' \
--header 'Authorization: Bearer <Your API Key>' \
--header 'Content-Type: application/json' \
--data-raw '{"model": "gpt-3.5-turbo",
"messages":[
{"role": "system", "content": "<A Message from the system explaining the APIs purpose>"},
{"role": "user", "content": "<Main content of your message>"}
],
"temperature": 1
}'