1
2
Fork
You've already forked roachat
0
Rubber ducky debugging from the comfort of your terminal.
  • Rust 53%
  • C 47%
Find a file
2021年04月17日 17:05:06 +02:00
src Fix a bug when choosing the response 2021年04月09日 19:37:08 +02:00
.gitignore Merge branch 'master' of https://codeberg.org/jaafar/roachat 2021年04月17日 17:05:06 +02:00
Cargo.lock Rewrite in Rust 2021年04月08日 21:18:21 +02:00
Cargo.toml Rewrite in Rust 2021年04月08日 21:18:21 +02:00
LICENSE Init 2021年03月05日 00:13:00 +03:00
README.md Merge branch 'master' of https://codeberg.org/jaafar/roachat 2021年04月17日 17:05:06 +02:00

Roachat

A CLI where you can debug with an actual bug. Inspired by this.

How to use:

  1. $ roachat
  2. 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:

  1. If you're on Windows, you can get either:
  2. If you're on UNIX, you probably already have a compiler. If not, there's GCC, Clang, and TCC.
  3. Compile src/main.c with your compiler.

Rust:

  • Just build: cargo build --release
  • Build and install: cargo install --path .