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
- Host: GitHub
- URL: https://github.com/plummerssoftwarellc/chatgptcode
- Owner: PlummersSoftwareLLC
- Created: 2023-02-09T16:59:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-12T22:32:56.000Z (about 2 years ago)
- Last Synced: 2025-04-01T20:51:27.356Z (27 days ago)
- Language: Cuda
- Size: 188 KB
- Stars: 19
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
[](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).