# irc

I'm operating an irc server! [Nix source](https://github.com/HanEmile/hefe3/blob/main/ops/vms/x86/irc/default.nix).

Be friendly to each other and HACK THE PLANET!

> irc.emile.space:6697 #general

## minimal bash client

Easily connect and write in emile.space #general:

[source irc.sh](https://emile.space/irc.sh)

> curl -sL emile.space/irc.sh -o- | bash

or to set a nick:

> curl -sL emile.space/irc.sh -o- | IRC_NICK=acker bash

## go bot

A minimal golang based bot:
(This is just a template for further fun)

[source irc.go](https://emile.space/irc.go)

> d=$(mktemp -d) && curl -sL emile.space/irc.go -o "$d/irc.go" && go run "$d/irc.go"; rm -rf "$d"
