guides to hosting your own things https://diyhosting.bhh.sh
Go to file
Luke Smith 210ee55fe7
calibre fixes
2021-08-03 13:49:51 -04:00
.github/workflows autodeploy on push 2021-06-30 16:56:38 -04:00
pix calibre fixes 2021-08-03 13:49:51 -04:00
.footer.html footers icons easier to click 2021-07-02 19:29:15 -04:00
404.html footers icons easier to click 2021-07-02 19:29:15 -04:00
README.md more submission guidelines 2021-07-01 08:45:52 -04:00
auth.html Note that ssl certificates not neded for tor 2021-07-29 16:52:44 -04:00
barsup firststuffs 2021-06-29 08:30:52 -04:00
bat.html spell form 2021-07-05 09:33:36 -04:00
bitcoin.html spell form 2021-07-05 09:33:36 -04:00
calibre.html calibre fixes 2021-08-03 13:49:51 -04:00
certbot.html Change apt-get to apt 2021-07-13 10:42:01 -06:00
cgi.html Update donations link 2021-07-26 12:58:16 +02:00
cron.html Another space 2021-07-13 12:38:56 -06:00
crypto.html footers icons easier to click 2021-07-02 19:29:15 -04:00
dns.html spell form 2021-07-05 09:33:36 -04:00
domain.html spell form 2021-07-05 09:33:36 -04:00
favicon.ico firststuffs 2021-06-29 08:30:52 -04:00
federation.html footers icons easier to click 2021-07-02 19:29:15 -04:00
gemini.html spell form 2021-07-05 09:33:36 -04:00
git.html Update donations link 2021-07-26 12:58:16 +02:00
gitea.html spell form 2021-07-05 09:33:36 -04:00
html.html spell form 2021-07-05 09:33:36 -04:00
html2.html footers icons easier to click 2021-07-02 19:29:15 -04:00
html4.html footers icons easier to click 2021-07-02 19:29:15 -04:00
index.html Merge branch 'master' of git://github.com/reflex229/landchad 2021-08-03 13:06:18 -04:00
irc.html fix small grammar mistakes 2021-07-16 17:18:36 -04:00
jitsi.html jitsi revisions 2021-08-03 13:00:43 -04:00
maintenance.html footers icons easier to click 2021-07-02 19:29:15 -04:00
matrix.html matrix tweak to be finished 2021-08-01 18:15:39 -04:00
monero.html spell form 2021-07-05 09:33:36 -04:00
nextcloud.html nextcloud fixes. close #101, close #100 2021-07-31 07:57:19 -04:00
nginx.html spell form 2021-07-05 09:33:36 -04:00
openalias.html spell form 2021-07-05 09:33:36 -04:00
peertube.html Merge branch 'master' of github.com:LukeSmithxyz/landchad 2021-07-30 10:54:08 -04:00
pleroma.html footers icons easier to click 2021-07-02 19:29:15 -04:00
rss-bridge.html rss bridge tweaks 2021-07-05 18:11:10 -04:00
rss.xml calibre fixes 2021-08-03 13:49:51 -04:00
rsync.html Merge branch 'master' of github.com:LukeSmithxyz/landchad 2021-07-13 14:40:27 -04:00
server.html spell form 2021-07-05 09:33:36 -04:00
sshkeys.html footers icons easier to click 2021-07-02 19:29:15 -04:00
standalone.html footers icons easier to click 2021-07-02 19:29:15 -04:00
style.css tweaks, standalone, openalias link imgs 2021-07-02 02:55:20 -04:00
template.html footers icons easier to click 2021-07-02 19:29:15 -04:00
tor.html Note that ssl certificates not neded for tor 2021-07-29 16:52:44 -04:00
ufw.html spell form 2021-07-05 09:33:36 -04:00
xmpp.html close #85 2021-07-26 08:25:19 -04:00

README.md

LandChad.net (https://landchad.net)

A site dedicated to turn web peasants into Internet LandChads.

Simple step-by-step text and image-based tutorials for creating websites, email servers, chat servers, server administration and everything else.

Suggestions welcome.

Submission guidelines

  • follow the general style of pre-existing articles
  • use the root user (i.e. no sudo) unless there is a specific need.
  • do not preface commands with $ or # or anything.
  • use .svg files for icons/logos and for illustrative images, keep filesize low
  • Use example.org
  • custom command/file info should be highlighted with <strong> tags

On <pre> tags

In-line code should be in <code> tags, while codeblocks should be in a <code> tag inside of a <pre> tag. <pre> allows formatting preserving whitespace. That said, do not format <pre> tags as following:

<pre><code>
	echo "Here is a command."
	echo "Here is another."
</code></pre>

but do it like this:

<pre><code>echo "Here is a command."
echo "Here is another."</code></pre>

All whitespace, including tabbing in and initial and final newlines are displayed by <pre>. To maintain consistency and avoid goofy-looking extra lines, add no extra whitespace.