guides to hosting your own things https://diyhosting.bhh.sh
Go to file
= 900cb43eec Create IRC article and link on homepage 2021-07-01 14:34:06 -04:00
.github/workflows autodeploy on push 2021-06-30 16:56:38 -04:00
pix Create IRC article and link on homepage 2021-07-01 14:34:06 -04:00
.footer.html firststuffs 2021-06-29 08:30:52 -04:00
404.html firststuffs 2021-06-29 08:30:52 -04:00
README.md more submission guidelines 2021-07-01 08:45:52 -04:00
auth.html minor branding changes and tweaks 2021-06-30 23:03:21 -04:00
barsup firststuffs 2021-06-29 08:30:52 -04:00
bat.html firststuffs 2021-06-29 08:30:52 -04:00
bitcoin.html fixed typo 2021-07-01 13:34:56 +05:30
certbot.html Added a articel on how to use cron. Added links to this article on 2021-06-30 18:01:49 +01:00
cron.html safety 2021-07-01 07:37:37 -04:00
crypto.html firststuffs 2021-06-29 08:30:52 -04:00
dns.html begin gemini tweaks 2021-07-01 08:36:13 -04:00
domain.html firststuffs 2021-06-29 08:30:52 -04:00
favicon.ico firststuffs 2021-06-29 08:30:52 -04:00
federation.html firststuffs 2021-06-29 08:30:52 -04:00
gemini.html gemini tweaks 2021-07-01 13:34:49 -04:00
git.html random tweaks 2021-06-30 17:34:27 -04:00
html.html cleanup for publication 2021-06-29 09:50:40 -04:00
html2.html cleanup for publication 2021-06-29 09:50:40 -04:00
html4.html firststuffs 2021-06-29 08:30:52 -04:00
index.html Create IRC article and link on homepage 2021-07-01 14:34:06 -04:00
irc.html Create IRC article and link on homepage 2021-07-01 14:34:06 -04:00
maintenance.html Added a articel on how to use cron. Added links to this article on 2021-06-30 18:01:49 +01:00
monero.html firststuffs 2021-06-29 08:30:52 -04:00
nextcloud.html Corrected more information in nextcloud.html 2021-06-30 18:05:33 -04:00
nginx.html tweaks 2021-06-30 15:47:19 -04:00
openalias.html firststuffs 2021-06-29 08:30:52 -04:00
rss.xml safety 2021-07-01 07:37:37 -04:00
server.html firststuffs 2021-06-29 08:30:52 -04:00
sshkeys.html Fixed typos, slightly improved phrasing 2021-07-01 12:35:23 +02:00
style.css random tweaks 2021-06-30 17:34:27 -04:00
template.html firststuffs 2021-06-29 08:30:52 -04:00
tor.html Tor: Typos fixed, colons added 2021-07-01 18:34:57 +02:00
xmpp.html firststuffs 2021-06-29 08:30:52 -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.