An open API service indexing awesome lists of open source software.

https://github.com/plummerssoftwarellc/chatgptcode

Code samples generated by ChatGPT
https://github.com/plummerssoftwarellc/chatgptcode

Last synced: 6 days ago
JSON representation

Code samples generated by ChatGPT

Awesome Lists containing this project

README

        

# ChatGPT Code

This repository contains code samples generated by ChatGPT. They are featured and discussed in the episode ["10X Your Code with ChatGPT: How to Use it Effectively"](https://youtu.be/pspsSn_nGzo) on Dave's Garage:

[![10X Your Code with ChatGPT: How to Use it Effectively](https://i3.ytimg.com/vi/pspsSn_nGzo/hqdefault.jpg)](https://youtu.be/pspsSn_nGzo)

The repository contains the following code, all generated by ChatGPT:

- In the [Primes](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/Primes) directory, implementations of the Sieve of Eratosthenes in [C](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/Primes/C), [C++](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/Primes/CPP) and [NVIDIA CUDA](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/Primes/CUDA). You can compare these to their respective counterparts in the [Primes project repository](https://github.com/PlummersSoftwareLLC/Primes), also available here.
- In the [RomanNumerals](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/RomanNumerals) directory, programs that convert decimal numbers into Roman numerals. These are available in [BASIC](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/RomanNumerals/BASIC), [C](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/RomanNumerals/C), [C++](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/RomanNumerals/CPP) and [Python](https://github.com/PlummersSoftwareLLC/ChatGPTCode/tree/main/RomanNumerals/Python).