https://github.com/codewithkyle/learning-c
A junk repo full of various C files while I learn the basics.
https://github.com/codewithkyle/learning-c
Last synced: 2 days ago
JSON representation
A junk repo full of various C files while I learn the basics.
- Host: GitHub
- URL: https://github.com/codewithkyle/learning-c
- Owner: codewithkyle
- Created: 2024-02-03T05:54:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-25T15:24:17.000Z (over 1 year ago)
- Last Synced: 2025-06-10T21:58:18.213Z (11 days ago)
- Language: C
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Course 1: Introduction to C
- [x] Learn the basics of C
- [x] Follow the course and create a CLI program that does the following:
- [x] Parse CLI flags
- [x] Read/write/validate a custom employee database file
- [x] Parse and insert employees (`"Demo Dean,123 Fake St.,120"`) into database
- [x] List out all employees from the database file
- [ ] Go beyond the course project and add the following:
- [ ] Write tests
- [ ] Delete an employee by id or name
- [ ] List out employees by name
- [ ] Update an employees name, address, or hours worked
- [ ] Add hourly pay rate to the employee structure
- [ ] As a fresh database file
- [ ] Migrating from version 1 to 2
- [ ] Generate a CSV file with all employee information + paycheck## Course 2: Networking
- [ ] Learn the basic of the POSIX Socket API
- [ ] Follow along and build the course projects:
- [ ] Create a simple server
- [ ] Create a simple client
- [ ] Go beyond the course project and build the following:
- [ ] Build a simple HTTP server
- [ ] Display employees from database file on a web page
- [ ] CRUD employees
- [ ] Read
- [ ] Create
- [ ] Update
- [ ] Delete