diff options
author | Andrew Yu <andrew@andrewyu.org> | 2021-12-12 20:00:22 +0800 |
---|---|---|
committer | Andrew Yu <andrew@andrewyu.org> | 2021-12-12 20:00:22 +0800 |
commit | 6025d88e6fbfa83df5d1e85c893353aecf45478a (patch) | |
tree | 47d0e941a9f52452a8a3043364f1951a95e06a52 | |
parent | 4f0a333fcce73fec96db6267c710dfe228730857 (diff) | |
download | www-6025d88e6fbfa83df5d1e85c893353aecf45478a.tar.gz |
add blog template and New OpenBSD Server post
-rw-r--r-- | blog/.template.html | 10 | ||||
-rw-r--r-- | blog/New_OpenBSD_Server.html | 19 |
2 files changed, 29 insertions, 0 deletions
diff --git a/blog/.template.html b/blog/.template.html new file mode 100644 index 0000000..f3871ff --- /dev/null +++ b/blog/.template.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title><++></title> + </head> + <body> + <h1><++></h1> + <p><++></p> + </body> +</html> diff --git a/blog/New_OpenBSD_Server.html b/blog/New_OpenBSD_Server.html new file mode 100644 index 0000000..b4ce425 --- /dev/null +++ b/blog/New_OpenBSD_Server.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>New OpenBSD server</title> + </head> + <body> + <h1>New OpenBSD server</h1> + <p>I finally made the switch from <a href="https://debian.org">Debian GNU/Linux</a> to <a href="https://OpenBSD.org">OpenBSD</a> for my server. I recently got into the idea that Linux is too bloated and was led the wrong direction. OpenBSD on the other hand is well documented (you get help by reading the manual rather than searching the Web), secure by default, simpler, and not let by capital interests.</p> + <p>Below I list a few articles that got me into this. I do not agree with everything stated in these, but nevertheless they are a worth a lot to my technical thoughts.</p> + <p> + <ul> + <li><a href="https://unixsheikh.com/articles/the-problems-with-the-gpl.html">The problems with the GPL</a></li> + <li><a href="https://unixsheikh.com/articles/why-you-should-migrate-everything-from-linux-to-bsd.html">Why migrate to BSD -- part 1</a></li> + <li><a href="https://unixsheikh.com/articles/why-you-should-migrate-everything-from-linux-to-bsd-part-2.html">Why migrate to BSD -- part 2</a></li> + <li><a href="https://unixsheikh.com/articles/technical-reasons-to-choose-freebsd-over-linux.html">Why migrate to BSD -- technical reasons</a></li> + </ul> + </p> + </body> +</html> |