DEV Community

Lam
Lam

Posted on

ChatGPT Coding CheatSheets

Explain why a piece of code isn't working

Why this code is not working?
var x = 5;
var y = 0;
console.log(x/y);
Enter fullscreen mode Exit fullscreen mode

Explain what a piece of code means

What does this code do?
function addNumbers(a, b) {
    return a + b;
}
Enter fullscreen mode Exit fullscreen mode

*Rewrite the code using the specified language

Translate this code into Python:
function addNumbers(a, b) {
    return a + b;
}
Enter fullscreen mode Exit fullscreen mode

Code an entire software program

Write a program that calculates the factorial of a given number in python.
How do I make an HTTP request in Javascript?
Enter fullscreen mode Exit fullscreen mode

Generate regular expressions (regex)

Create a regex that matches all email addresses?
Generate 8-digit password regex
Enter fullscreen mode Exit fullscreen mode

Add comments to your codebase

Add comments to this code: 
function addNumbers(a, b) {
    return a + b;\n}
Enter fullscreen mode Exit fullscreen mode

Change the CSS of a line of code

Update the CSS for this line to change the font color to blue?
<p class=\"example\">Hello, QuickRef.ME!</p>
Enter fullscreen mode Exit fullscreen mode

Change the HTML of a line of code

Add a class of \"header\" to this header tag?
<h1>Hello, QuickRef.ME!</h1>
Enter fullscreen mode Exit fullscreen mode

References:

API Trace View

Struggling with slow API calls?

Dan Mindru walks through how he used Sentry's new Trace View feature to shave off 22.3 seconds from an API call.

Get a practical walkthrough of how to identify bottlenecks, split tasks into multiple parallel tasks, identify slow AI model calls, and more.

Read more →

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay