Rubber ducky debugging from the comfort of your terminal.
- Rust 53%
- C 47%
| src | Fix a bug when choosing the response | |
| .gitignore | Merge branch 'master' of https://codeberg.org/jaafar/roachat | |
| Cargo.lock | Rewrite in Rust | |
| Cargo.toml | Rewrite in Rust | |
| LICENSE | Init | |
| README.md | Merge branch 'master' of https://codeberg.org/jaafar/roachat | |
Roachat
A CLI where you can debug with an actual bug. Inspired by this.
How to use:
$ roachat- Enter some text, and you'll get a random response.
Example:
$ roachat
Another bug, huh? What is it this time?
> So I have this apple in my game, but I everytime I remove it, my game
completely breaks.
It's a feature, not a bug. ;)
> Fuck off. ^C
How to obtain:
Prebuilt binaries:
Check the releases section for a prebuilt binary that runs on your OS/Arch combination.
Build from source:
C:
- If you're on Windows, you can get either:
- the Visual Studio build tools,
- or MinGW.
- If you're on UNIX, you probably already have a compiler. If not, there's GCC, Clang, and TCC.
- Compile
src/main.cwith your compiler.
Rust:
- Just build:
cargo build --release - Build and install:
cargo install --path .