An open API service indexing awesome lists of open source software.

https://github.com/liquidev/shitchat

shitty netcat chat
https://github.com/liquidev/shitchat

Last synced: about 2 months ago
JSON representation

shitty netcat chat

Awesome Lists containing this project

README

        

# shitchat

shitty netcat chat

## Usage

To start a server, simply run:
```
$ shitchat
```
To connect, run:
```sh
$ nc 12321
```
You might need to open the port in your router for others to be able to connect.

For extra help, use the `/help` command in your shitchat client session.

## Configuring

If the shitchat config file doesn't exist, the server will generate one and put
it in the current working directory. Feel free to change options as you wish;
any errors you make will be pointed out. If you want to change the file used for
configuration, use the option `-c:` when starting the server.

## Compiling

To compile shitchat, use:
```sh
$ nim c -d:release src/shitchat
```
(TODO: replace this with `nimble install`)

To compile the termimg tool bundled in this repo, use:
```
$ nim c -d:release src/termimg
```

## termimg

This is an extra tool bundled in this repo, which allows you to display PNGs in
your terminal. Usage:
```sh
$ termimg -i:image.png # the input image \
-w:64 # the width in terminal columns \
-h:64 # the height in terminal row halves
```