Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anachan01h/lauriewired-halloween-2024
My solution to the LaurieWired 2024 Halloween Programming Challenge: Logic Captcha!
https://github.com/anachan01h/lauriewired-halloween-2024
Last synced: 4 days ago
JSON representation
My solution to the LaurieWired 2024 Halloween Programming Challenge: Logic Captcha!
- Host: GitHub
- URL: https://github.com/anachan01h/lauriewired-halloween-2024
- Owner: anachan01h
- Created: 2024-10-15T05:26:35.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T03:38:36.000Z (2 months ago)
- Last Synced: 2024-10-19T03:51:24.522Z (2 months ago)
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Logic Captcha
My solution to the LaurieWired 2024 Halloween Programming Challenge. It's a captcha that prompts the user to determine if arguments are valid or not. It works because computers can't think. 😅️The Makefile only works for Linux (or WSL).
## How to compile
On Linux, just run the command:
```
make
```Or use `gcc` directly:
```
gcc src/main.c src/arguments.c -o bin/logic_captcha
```The executable `logic_captcha` will be in the folder `bin`.