CODING WITH AI TOOL

gpt4 seriously coded this for me haha (a tool to simplify the process of acc creation)
includes connected apis from various services

View attachment 254212
(styling by me though hehe:D)

you can make him code stuff for you for sure, just take it easy, step by step, dont complicate it to much for him, tasdk by task, try, paste error back in to gpt, copy his solutions update code and repeat.

here's a helpful comment u need to copy and paste everytime he stops by mistake in the middle of a code, you will need tell him this:
PLEASE. CONTINUE WRITE EXACTLY WHERE YOU STOPPED, DO NOT RE-WRITE ANY PREVIOUS CODE, HERE LET ME REMIND U WHERE U STOPPED:
paste some of the last rows he wrote and he will keep going.
haha sometimes i get so frustrated because of him posting the same thing for 9-th time and stopping in the middle of nothing
 
Certainly. In summary, AI coding tools have limitations and can produce incorrect code. Try GitHub Copilot and Tabnine to see which works best for you. Be cautious with any AI-generated code to avoid potential security risks.
 
dude i couldn't learn this coding
you dont need to learn more than cdopy and paste, back and forth to gpt and the files u are editing

im not coder myself, i did some html css back in the days like 10 years ago

GPT have turned me into a terminal warrior lately haha, from hating it to loving it.

GPT over errythinggg
 
you dont need to learn more than cdopy and paste, back and forth to gpt and the files u are editing

im not coder myself, i did some html css back in the days like 10 years ago

GPT have turned me into a terminal warrior lately haha, from hating it to loving it.

GPT over errythinggg
I couldn't start anyway, I'm happy for you
 
Certainly. In summary, AI coding tools have limitations and can produce incorrect code. Try GitHub Copilot and Tabnine to see which works best for you. Be cautious with any AI-generated code to avoid potential security risks.
very true
 
gpt4 seriously coded this for me haha (a tool to simplify the process of acc creation)
includes connected apis from various services

View attachment 254212
(styling by me though hehe:D)

you can make him code stuff for you for sure, just take it easy, step by step, dont complicate it to much for him, tasdk by task, try, paste error back in to gpt, copy his solutions update code and repeat.

here's a helpful comment u need to copy and paste everytime he stops by mistake in the middle of a code, you will need tell him this:
PLEASE. CONTINUE WRITE EXACTLY WHERE YOU STOPPED, DO NOT RE-WRITE ANY PREVIOUS CODE, HERE LET ME REMIND U WHERE U STOPPED:
paste some of the last rows he wrote and he will keep going.

This is refreshing to see. I see a lot of devs hate on GPT, and there are a few that I know personally that haven't even touched it yet. They probably got put off by the bad code it sometimes outputs, or maybe it's an ego thing, but man, this thing is a lifesaver.

I put off learning coding for so long from lack of time/patience. The stuff I was able to build in minutes with GPT I would've had to pay hundreds to a dev to get it done in a few days.

I took up some basic Python to see how far I can push GPT and with the most basic coding knowledge I'm building out software that would've cost me $XX,XXX and months to build. It's taken me a few weeks, to get to this point, but it's well worth it.

My advice is take up a basic coding course. Don't use GPT and cheat yourself - learn everything from scratch. Once you understand the basics, you'll be able to prompt better and get better outputs. You'll get a sense of when GPT is hallucinating, giving you bad code, or can't get it right. Do your own research, look at the code, and if you give GPT a starting point, it can get it done 95% of the time. The other 5% you can find on stackoverflow and Youtube.

For more complex projects you would probably need GPT4. I'm on the Co-Pilot trial right now, but I haven't used it for one line yet so I'll probably cancel. GPT4 all the way.
 
if anyone want the source code to the coded virtual card that you see in first column, here is it, and the prompt used to get it, pretty amazing right? ok its not a complex script or somethingm but that he could be so right on the details, for me is amazing, try copy and paste this code and see the results yourself, its a little different from the modified version i have in my tool though, but check it out

My question/prompt:

"i have a tool when you click generate, it generates a vcc number, 16 digitis + expiry date 05/26 , and cvv 426​

i want it so when its being output for the client, it will be displayed as a bank card, can you code this element for me html css"​



ChatGPT:

Of course, I can help you create the HTML and CSS code for displaying the generated VCC number, expiry date, and CVV as a bank card. Here's a simple example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Generated VCC</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<div class="card-content">
<div class="bank-logo">
<!-- Add your bank logo here -->
<img src="bank_logo.png" alt="Bank Logo" />
</div>
<div class="card-number">
<span id="vcc-number">1234 5678 9012 3456</span>
</div>
<div class="card-info">
<div class="expiry-date">
<label>Expiry:</label>
<span id="expiry-date">05/26</span>
</div>
<div class="cvv">
<label>CVV:</label>
<span id="cvv">426</span>
</div>
</div>
</div>
</div>
</body>
</html>
CSS (styles.css):
css
Copy code
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
font-family: Arial, sans-serif;
}
.card {
width: 400px;
height: 250px;
background-color: #4285f4;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-content {
padding: 20px;
}
.bank-logo img {
width: 100px;
height: auto;
}
.card-number {
font-size: 24px;
letter-spacing: 2px;
color: #fff;
margin-top: 60px;
word-spacing: 4px;
}
.card-info {
display: flex;
justify-content: space-between;
margin-top: 20px;
color: #fff;
}
.expiry-date label,
.cvv label {
font-size: 12px;
text-transform: uppercase;
}
.expiry-date span,
.cvv span {
display: block;
font-size: 18px;
margin-top: 4px;
}


This code will create a simple bank card layout with placeholders for the VCC number, expiry date, and CVV. Replace the placeholder values in the HTML file with the actual generated values. Also, replace the 'bank_logo.png' in the HTML file with the actual bank logo you want to use.
 
I couldn't start anyway, I'm happy for you
youtube or google: how to create a basic html css structure

the same way u will copy, paste and save the .html files (or any extension)
the same way you will copy and paste from GPT, try 30 minutes goddamnit.

No one can teach you this except yourself, get your lazy ass to youtube and practice for 30 minutes, after that you will also become a little terminal warrior. :alien:
 
Chatgpt will have errors. But if you want to try it and find yourself digging through its errors don't let me stop you.
 
Back
Top