From 3222f7dfcca28fa5d13e0c0409ebf92677711dcf Mon Sep 17 00:00:00 2001 From: druid520 Date: Sat, 15 Aug 2026 21:59:06 +0000 Subject: irc page + git:// clone docs --- git.html | 17 ++++++++++++----- index.html | 2 +- irc.html | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 irc.html diff --git a/git.html b/git.html index 85aa781..acf054a 100644 --- a/git.html +++ b/git.html @@ -8,11 +8,11 @@

git.0druid.cc

-

homepage. git.

+

homepage. git. irc.

this is my git forge. its invite only, accounts are made by me, and everything is public to clone but only people with accounts can push. if you want an account, email me with your ssh pubkey.

browsing happens at git.0druid.cc, with the usual stuff: commits, tree, refs, diffs n such.

-

clone over https (read only):

-
git clone https://git.0druid.cc/druid520/site.git
+

clone over git:// (anonymous, read only):

+
git clone git://git.0druid.cc/druid520/site.git

clone and push over ssh (accounts only):

git clone git:druid520/site.git

accounts get ssh commands too:

@@ -21,11 +21,18 @@ ssh git desc <repo> "description" ssh git perms <repo> +WRITERS <user> ssh git ls

put this in ~/.ssh/config:

-
Host git
+	
Host serv
+    HostName 0druid.cc
+    User root
+    Port 3447
+    IdentityFile ~/.ssh/serv
+    ProxyCommand sh -c "nc -z -w 1 %h 47910; exec nc %h %p"
+
+Host git
     HostName git.0druid.cc
     User git
     Port 3447
-    IdentityFile ~/.ssh/id_ed25519
+    IdentityFile ~/.ssh/druid
     ProxyCommand sh -c "nc -z -w 1 %h 47910; exec nc %h %p"

the serv host is the server itself, it knocks a secret port before ssh answers so scanners see nothing. the git host is the same machine, same deal.

profiles: push a repo named the same as your username (like druid520/druid520) with a profile.png and a readme.djot in it, first line like this:

diff --git a/index.html b/index.html index ac10033..52ac997 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@

0druid.cc

homepage.

-

git.

+

git. irc.

interdimensional salutations. i guess this is my website, im druid520 from usa/az.

im a amateur radio/computer enthusiast and amateur "dev". i suppose i make stuff sometimes.

i believe in a *ware philosophy thats kinda extremist suckless+cat-v+floss+some custom stuff.

diff --git a/irc.html b/irc.html new file mode 100644 index 0000000..9e573bc --- /dev/null +++ b/irc.html @@ -0,0 +1,35 @@ + + + + + + 0druid.cc - irc + + + +

irc.0druid.cc

+

homepage. git. irc.

+

my irc server. tls only, on 6697. it runs ergo, and it officially supports catgirl (thats what i use).

+

its no-kyc: no email, no real name, no questions. just nick + password, then optionally a cert for passwordless login from catgirl.

+

connect with catgirl:

+
catgirl -h irc.0druid.cc -p 6697
+

first time, register your account (nick + password, no email needed):

+
/msg NickServ REGISTER <nick> <password>
+

then you can log in with sasl. put this in ~/.config/catgirl/irc.0druid.cc:

+
nick = <nick>
+sasl-plain = <nick>:<password>
+

or, do it without a password at all: add your tls cert to your account. connect with your cert, log in once, then:

+
/msg NickServ CERT ADD
+

and switch to cert-only auth:

+
nick = <nick>
+sasl-external
+cert = ~/.config/catgirl/cert.crt
+priv = ~/.config/catgirl/cert.key
+

that cert + key is a self-signed tls client cert you make once:

+
openssl req -x509 -newkey ec -pkeyopt ec_paramgen_curve:P-256 \
+    -keyout ~/.config/catgirl/cert.key -out ~/.config/catgirl/cert.crt \
+    -days 3650 -nodes -subj "/CN=<nick>"
+

no logs of your messages or ip, no email, no ads. if you want an account just connect and register, i dont gate it.

+

oper (admin) is me. if somethings broken, email me.

+ + -- cgit 1.4.1