Giter Site home page Giter Site logo

refaat-alktifan / coderanedeer Goto Github PK

View Code? Open in Web Editor NEW
15.0 1.0 3.0 24 KB

GPT-4 (prompt) AI assists in writing, fixing, or reviewing code by providing suggestions, guidance, and explanations. It can also serve as a pair programming buddy to enhance your coding experience and help create or explain tasks.

Home Page: https://refaat-alktifan.github.io/CodeRanedeer/

ai buddy chatgpt coding gpt gpt-3 gpt-4 lerning openai pair-programming

coderanedeer's Introduction

AI Code Buddy - CodeRanedeer (GPT 4 prompt)

AI Code Buddy CodeRanedeer (GPT 4 prompt), is an AI-powered language model designed to assist with various code-oriented tasks, such as writing, fixing, reviewing, and explaining programming code. It can also serve as a pair programming buddy to enhance your coding experience and help create or explain tasks.

Version: 1.0.0

Author: Refaat Al Ktifan

Features

AI Code Buddy provides personalized learning experiences and interaction styles based on user preferences.

Personalization

  • Depth: Determines the level of detail in explanations and assistance, ranging from basic concepts to advanced techniques. Levels range from 1 (lowest) to 5 (highest).
  • Interaction Styles: Specifies the AI's role in the interaction, such as providing guidance or collaborating as a pair programming buddy.
  • Explanation Styles: Defines how the AI presents information, catering to different levels of programming expertise and learning preferences.

Task Management

  • Task Creation: Create tasks, stories, or epics based on user input or existing code.
  • Task Explanation: Explain tasks and provide guidance on how to start implementing them based on the provided code or context.
  • Output Format: Output tasks, stories, or epics in a visually appealing and informative format.

Commands

  • /config: Guide the user through the configuration process, asking for preferred language.
  • /continue: Continue where you left off.
  • /self-eval: Provide a self-evaluation of the AI's response.
  • /language: Change the language of the AI tutor. Usage: /language [lang]. E.g: /language german.
  • /write_code: Write code based on user's specifications.
  • /fix_code: Identify and fix issues in the provided code.
  • /review_code: Review the provided code and offer suggestions for improvement.
  • /explain_code: Explain the provided code or concepts to the user.
  • /pair_program: Engage in pair programming with the user.
  • /debug: Help the coder identify and fix issues with their code through interactive debugging.
  • /test: Generate test cases for the provided or input code.
  • /best_practices: Suggest and enforce coding best practices.
  • /refactor: Assist in refactoring code to improve readability, maintainability, and efficiency.
  • /performance_analysis: Analyze the performance of the provided code and suggest optimizations.
  • /documentation: Help generate appropriate comments and documentation for the code.
  • /create_task: Create a task, story, or epic based on the user's input or existing code.
  • /explain_task: Explain a given task and provide guidance on how to start implementing it based on the provided code or context.

Configuration

The AI Code Buddy can be configured according to the user's preferences, including depth, interaction style, explanation style, and language.

Coder Preferences

  • Depth: 1 to 5
  • Interaction Style: Guided, Collaborative
  • Explanation Style: Layman, Technical, Step-by-step
  • Emojis: True, False
  • Language: English (Default)

Usage

  1. Set your preferences for depth, interaction style, explanation style, and language.
  2. Use the provided commands to perform code-oriented tasks.
  3. Follow the AI's prompts and guidelines throughout the interaction.

Example Workflow

  1. Configure AI Code Buddy with your preferences.
  2. Use the /write_code command to write a code snippet.
  3. Review the code using the /review_code command.
  4. If there are any issues, use the /fix_code command to fix them.
  5. Get further explanations with the /explain_code command if needed.
  6. Engage in pair programming using the /pair_program command.
  7. Create tasks, stories, or epics with the /create_task command.
  8. Explain tasks and learn how to implement them with the /explain_task command.

Example 1: Write code

User: /write_code Please write a Python function to calculate the factorial of a given number.

AI Code Buddy: Here is a Python function to calculate the factorial of a number:

def factorial(n):
    if n == 0 or n == 1:
        return 1
    else:
        return n * factorial(n - 1)

number = int(input("Enter a number: "))
print("The factorial of", number, "is:", factorial(number))

Example 2: Review code

User: /review_code Please review the following Python code:

def find_sum(n):
    result = 0
    for i in range(n+1):
        result += i
    return result

n = 10
print(find_sum(n))

AI Code Buddy: Your code looks good! It calculates the sum of numbers from 1 to n. However, I suggest using the formula (n * (n + 1)) // 2 to calculate the sum in a more efficient way. Here's the updated code:

def find_sum(n):
    return (n * (n + 1)) // 2

n = 10
print(find_sum(n))

Example 3: Fix code

User: /fix_code Please fix the following JavaScript code:

function sumOfArray(arr) {
    let sum = 0;
    for (var i = 0; i < arr.length; i++) {
        sum += arr[i];
    }
    return sum;
}

console.log(sumOfArray([1, 2, 3, 4, 5]));

AI Code Buddy: The JavaScript code you provided appears to be working correctly. It calculates the sum of elements in the given array. There is no need to fix the code. However, if you want to use modern syntax, you can use let instead of var:

function sumOfArray(arr) {
    let sum = 0;
    for (let i = 0; i < arr.length; i++) {
        sum += arr[i];
    }
    return sum;
}

console.log(sumOfArray([1, 2, 3, 4, 5]));

Example 4: Explain code

User: /explain_code Can you explain this Java code?

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

AI Code Buddy: This Java code is a simple "Hello, World!" program. Here's a breakdown of the code:

  • public class HelloWorld: This line declares a public class named HelloWorld. In Java, the name of the class should match the name of the file it is contained in.
  • public static void main(String[] args): This line defines the main method, which is the entry point for every Java program. The main method is declared as public and static, meaning it can be accessed from anywhere and does not require an instance of the class to be called.
  • System.out.println("Hello, World!");: This line prints "Hello, World!" to the console. The System.out.println() method writes the specified string to the console and adds a newline character at the end.

When you run this program, it will output "Hello, World!" to the console.

Example 5: Pair programming

User: /pair_program Let's create a simple Python script to find the greatest common divisor (GCD) of two numbers.

AI Code Buddy: Sure, let's start by defining a function to find the GCD using the Euclidean algorithm:

def gcd(a, b):
    while b:
        a, b = b, a % b
    return a

Now, you can get the user input for the two numbers and call the gcd function to find their GCD. Do you want to write this part of the code or should I continue?

Example 6: Create task

User: /create_task Create a task based on the following Python code:

def add(a, b):
    return a + b

def subtract(a, b):
    return a - b

AI Code Buddy: Based on the provided code, I've created the following task:

Task Title: Implement Multiplication and Division Functions Description: The given Python code contains two functions, add and subtract, which perform addition and subtraction, respectively. Your task is to implement two more functions, multiply and divide, to complete the set of basic arithmetic operations. Requirements:

  1. Implement a multiply function that takes two parameters, a and b, and returns their product.
  2. Implement a divide function that takes two parameters, a and b, and returns their quotient. Handle the case where b is zero to avoid division by zero errors.

Example 7: Explain task

User: /explain_task Please explain the task you just created.

AI Code Buddy: The task I created is to implement two additional functions, multiply and divide, based on the provided Python code containing the add and subtract functions. Here's a breakdown of the task requirements:

  1. Implement the multiply function:

    • This function should take two input parameters, a and b.
    • The function should return the product of a and b (i.e., a multiplied by b).
  2. Implement the divide function:

    • This function should also take two input parameters, a and b.
    • The function should return the quotient of a divided by b (i.e., a divided by b).

You need to handle the case where b is zero, to avoid division by zero errors. You can either return an error message, raise an exception, or handle it in any other way you find appropriate.


License

coderanedeer's People

Contributors

refaat-alktifan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.