From 60f3ce53377992688589c02d3816170f8e1d9968 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sat, 2 Jul 2022 22:41:06 -0400 Subject: [PATCH 01/14] Updating Repo Button, Addition to Permalink --- _items/Another guide.md | 6 +++++- _items/donate.md | 1 + _items/tools.md | 1 + index.md | 7 ++++--- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/_items/Another guide.md b/_items/Another guide.md index 70f6e51..79c9eb9 100644 --- a/_items/Another guide.md +++ b/_items/Another guide.md @@ -1,7 +1,9 @@ --- layout: default1 description: Just... a guide -title: Another Guide +title: Guide +permalink: /guide +priority: 1 ---
@@ -136,6 +138,8 @@ More on this subject will be later in this _guide._ * Do not be lazy +People may think you are paranoid, but in a world like this it *is* useful to be even a bit paranoid. This will allow you to see the true realities of the world. If you are always thinking of ways you can be compromised, you'd actually likely reduce your risk due to the fact of you constantly thinking about it, rather than just "not really thinking" about it, or rather as often as you should. Privacy and security are constantly evolving, which means that you will have to evolve with it. Are you ready for a data breach? What are you going to do if your compromised? Questions like these are what you need to ask yourself in order to be successful, you must always have a backup plan that you can execute. +
#### __Setting Goals__ diff --git a/_items/donate.md b/_items/donate.md index 2073ca5..a5790e8 100644 --- a/_items/donate.md +++ b/_items/donate.md @@ -2,6 +2,7 @@ layout: default1 title: Donate description: money +permalink: /donate --- ## Donations diff --git a/_items/tools.md b/_items/tools.md index 338e682..4091c17 100644 --- a/_items/tools.md +++ b/_items/tools.md @@ -2,6 +2,7 @@ layout: default1 description: Tools to use for your benefit title: Tools +permalink: /tools ---
diff --git a/index.md b/index.md index 649dcd9..e9c4d00 100644 --- a/index.md +++ b/index.md @@ -15,7 +15,10 @@ description: A fun happy place.
- Please Contribute! +
+ + +


@@ -30,8 +33,6 @@ description: A fun happy place. About - Contact - - - Donate From a478a9645e1316f627691be2b12c075c45b0fc89 Mon Sep 17 00:00:00 2001 From: deathrow Date: Fri, 8 Jul 2022 21:13:10 -0400 Subject: [PATCH 02/14] Added Services Page --- _items/Services.md | 73 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 _items/Services.md diff --git a/_items/Services.md b/_items/Services.md new file mode 100644 index 0000000..c05504a --- /dev/null +++ b/_items/Services.md @@ -0,0 +1,73 @@ +--- +layout: default1 +description: List of services +title: Services +permalink: /services +--- + + +### __Services__ + +These services are publicly available and free to use. +These services are not intended to spread spam or malicious content, or sharing / distributing / hosting of malicious content. + +
+ +*Everything done on these services **MUST** remain legal.* + +
+ +Your account *can* be suspended if you take part in any sort of malicious activity ranging from targeted harassment, raids, discussing illegal activities, conducting illegal activities or any questionable content. + +
+ +### __Privacy / Security__ + +As nature of this website, privacy and security must be our main priority, the following is currently in effect: + +- nginx logging is disabled. + +- Matrix IP addresses are logged for 1 hour then they are purged from the database. + +- Matrix federation is enabled. + +- Ratelimiting actions is currently set as default on Matrix, and can be easily re-enabled if needed, do not ruin this for others. + +- Matrix URL previews are allowed + +- We are currently not using a CAPTCHA for registration or requiring an Email, CAPTCHA will be enabled if abuse happens! + +- Registration is open, if abuse takes place, registration will turn to an invite-only system. + +- Password hashing bcrypt rounds are set to 15. + +- Guest access is currently enabled, and will be disabled if abuse takes place. + +- Registered users are automatically joined into the lounges, this is to help prevent abuse! + +- Moderation is done via ''mjolnir'', let us keep this ban list to a minimum. + +- Matrix metrics are disabled. + + +
+ +#### __Matrix__ + +The Matrix homeserver is located at + +``https://matrix.anonymousland.org`` + +As of currently, we do not offer a self-hosted Element instance, as it takes up server resources and there is no current need for our self-hosted platform. + +Password Policy: + +- 15 characters + +- Require at least 1 digit + +- Require at least 1 symbol + +- At least 1 lowercase character + +- At least 1 uppercase character \ No newline at end of file From aad06785f9c024db256159417a5fb4e839b85a89 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:01:15 -0400 Subject: [PATCH 03/14] Installed jekyll-feed and jekyll-seo-tag plugins --- Gemfile | 4 ++-- _config.yml | 30 ++++++++++++++++-------------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/Gemfile b/Gemfile index 42caa35..0278735 100644 --- a/Gemfile +++ b/Gemfile @@ -3,5 +3,5 @@ source "https://rubygems.org" gem 'jekyll' gem "jekyll-theme-potato-hacker" -gem 'github-pages', group: :jekyll_plugins -# gem "rails" +#gem 'github-pages', group: :jekyll_plugins +gem 'jekyll-feed' diff --git a/_config.yml b/_config.yml index 0f7e784..aa50844 100644 --- a/_config.yml +++ b/_config.yml @@ -3,23 +3,25 @@ remote_theme: luxedo/jekyll-theme-potato-hacker theme_base: "dark" theme_switch: off blog: on -avatar: off -highlighter_theme: monokai # Theme of the syntax_highlighter [base16 | - # colorful | github | gruvbox | molokai | - # monokai | pastie | thankful_eyes | tulip ] -toolbar_priority: - - Guides - - dropdown1 - - dropdown2 +highlighter_theme: monokai +toolbar_priority: - blog - collections: .well-known: output: true permalink: /:collection/:path/ - guide: - output: true - dropdown: - output: true items: - output: true \ No newline at end of file + output: true + changelog: + output: true + pages: + output: true +exclude: + - Gemfile + - Gemfile.lock +plugins: + - jekyll-feed + - jekyll-seo-tag +feed: + collections: + - changelog \ No newline at end of file From c4b107cc88e6a98d2b92cf741ec9d9dd00401268 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:01:34 -0400 Subject: [PATCH 04/14] Update Gemfile --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 0278735..7479302 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,4 @@ gem 'jekyll' gem "jekyll-theme-potato-hacker" #gem 'github-pages', group: :jekyll_plugins gem 'jekyll-feed' +gem 'jekyll-seo-tag' From 1b81cd469308d07e354b632ff257817a23b9cc9a Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:01:56 -0400 Subject: [PATCH 05/14] Update Gemfile --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 7479302..062b36f 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,6 @@ source "https://rubygems.org" gem 'jekyll' gem "jekyll-theme-potato-hacker" -#gem 'github-pages', group: :jekyll_plugins +gem 'github-pages', group: :jekyll_plugins gem 'jekyll-feed' gem 'jekyll-seo-tag' From 8e7040c3aa3a73cc34cbe439e8e230bdd7fef481 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:02:14 -0400 Subject: [PATCH 06/14] Added RSS Page --- _pages/RSS.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _pages/RSS.md diff --git a/_pages/RSS.md b/_pages/RSS.md new file mode 100644 index 0000000..fd64823 --- /dev/null +++ b/_pages/RSS.md @@ -0,0 +1,9 @@ +--- +layout: default1 +title: RSS +permalink: /rss +--- + +- [Blog](https://anonymousland.org/feed.xml) + +- [Changelog](https://anonymousland.org/feed/changelog.xml) \ No newline at end of file From 5916504bcb3272afdc2df98a56fc260d49bc1339 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:02:53 -0400 Subject: [PATCH 07/14] Updated file name --- _items/{donate.md => Donate.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _items/{donate.md => Donate.md} (100%) diff --git a/_items/donate.md b/_items/Donate.md similarity index 100% rename from _items/donate.md rename to _items/Donate.md From e7c17f3ee24c66f734afaa1c02948b33da8c84f5 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:03:26 -0400 Subject: [PATCH 08/14] Update to include seo tag --- _layouts/default1.html | 1 + 1 file changed, 1 insertion(+) diff --git a/_layouts/default1.html b/_layouts/default1.html index ea7ee8e..6170ae6 100644 --- a/_layouts/default1.html +++ b/_layouts/default1.html @@ -2,6 +2,7 @@ --- +{% seo %} {% include head.html %} From f19341f30f7098c12e451dd08fc0662071e81c77 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:03:39 -0400 Subject: [PATCH 09/14] Fix formatting issue --- _items/Services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_items/Services.md b/_items/Services.md index c05504a..5389fdf 100644 --- a/_items/Services.md +++ b/_items/Services.md @@ -45,7 +45,7 @@ As nature of this website, privacy and security must be our main priority, the f - Registered users are automatically joined into the lounges, this is to help prevent abuse! -- Moderation is done via ''mjolnir'', let us keep this ban list to a minimum. +- Moderation is done via ``mjolnir``, let us keep this ban list to a minimum. - Matrix metrics are disabled. From 907a8980240d5530c707d9e7fc063b6eb244a3bf Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:04:03 -0400 Subject: [PATCH 10/14] Fix blog format --- _posts/2022-04-23-VM-Isolation.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/_posts/2022-04-23-VM-Isolation.md b/_posts/2022-04-23-VM-Isolation.md index b73ea85..287836f 100644 --- a/_posts/2022-04-23-VM-Isolation.md +++ b/_posts/2022-04-23-VM-Isolation.md @@ -6,16 +6,11 @@ categories: blog layout: post --- - -### 4/23/22 - -##### Credits: 0xTheFather - -VM Isolation Guide - VM Isolation Guide ------------------ +Credits: 0xTheFather + As an alternate to using QubesOS, here is how one can properly setup isolation. This setup will provide proper isolation utilizing VMs and a secure host OS. This will provide increased security via isolation along with increased privacy with compartmentalization. Things needed for this setup: From 1593db75eb1e59bbbe30b6c7e4939830010e8d81 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:04:29 -0400 Subject: [PATCH 11/14] Remove unused layout --- _layouts/txt.html | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 _layouts/txt.html diff --git a/_layouts/txt.html b/_layouts/txt.html deleted file mode 100644 index 7f63ffd..0000000 --- a/_layouts/txt.html +++ /dev/null @@ -1,3 +0,0 @@ ---- ---- -{{ content }} \ No newline at end of file From 02c780b13fc718bdabc8007e58fc5ba4b57cb18d Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:05:05 -0400 Subject: [PATCH 12/14] Added new changelog file along with additional buttons on index --- _changelog/changelog.md | 30 ++++++++++++++++++++++++++++++ index.md | 15 ++++++++++----- 2 files changed, 40 insertions(+), 5 deletions(-) create mode 100644 _changelog/changelog.md diff --git a/_changelog/changelog.md b/_changelog/changelog.md new file mode 100644 index 0000000..31ff6a8 --- /dev/null +++ b/_changelog/changelog.md @@ -0,0 +1,30 @@ +--- +layout: default1 +title: Changelog +permalink: /changelog +--- + +--- +layout: default1 +title: Buttons +--- + +# v1.0 + +- Added new page ``Services.md`` + +- Reformatting old blog post + +- New Jekyll plugin ``jekyll-feed`` + +- New Jekyll plugin ``jekyll-seo-tag`` + +- New ``_changelog`` folder along with ``changelog.md`` + +- Fix formatting error on ``Services.md`` + +- Added RSS feed for ``posts`` and for ``changelog`` + +- Updated file naming to be consistent + +- Reformat buttons on ``index.md`` diff --git a/index.md b/index.md index e9c4d00..be50b96 100644 --- a/index.md +++ b/index.md @@ -17,7 +17,16 @@ description: A fun happy place.
- + + + + + + + + + +

@@ -26,13 +35,9 @@ description: A fun happy place.

Coming Soon:

Mastadon Instance - - RSS Feed - - Forum
  • About - - - Contact From 7014ef553d7b465e483023643f9af36156f2a3e8 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:12:11 -0400 Subject: [PATCH 13/14] Update index to reflect current version --- index.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index be50b96..b944e53 100644 --- a/index.md +++ b/index.md @@ -15,11 +15,16 @@ description: A fun happy place.
    +
    +
    + + + +

    - From 8512b9c5e8c6efe3c7ce60f12042ca636ba2e099 Mon Sep 17 00:00:00 2001 From: deathrow Date: Sun, 10 Jul 2022 21:13:39 -0400 Subject: [PATCH 14/14] Fix small error on changelog file --- _changelog/changelog.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/_changelog/changelog.md b/_changelog/changelog.md index 31ff6a8..ed9388e 100644 --- a/_changelog/changelog.md +++ b/_changelog/changelog.md @@ -4,9 +4,6 @@ title: Changelog permalink: /changelog --- ---- -layout: default1 -title: Buttons --- # v1.0