From 5c1d188cfb9cb620c6c6691d48da31c903fc5d62 Mon Sep 17 00:00:00 2001
From: Kieran <32241933+KieranRobson@users.noreply.github.com>
Date: Sat, 4 Jun 2022 19:31:19 +0100
Subject: [PATCH 01/11] Create main.yml

---
 .github/workflows/main.yml | 46 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 .github/workflows/main.yml

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 00000000..decb2362
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,46 @@
+name: Awesome Lint
+on: 
+  pull_request:
+  push:
+    branches:
+      - main
+
+jobs:
+    awesome-lint:
+      strategy:
+        fail-fast: false
+        matrix:
+          files:
+            - "readme.md"
+      runs-on: ubuntu-latest
+      steps:
+        - name: "checkout repo"
+          uses: actions/checkout@v2
+          with:
+            fetch-depth: 0
+        - name: asdf_install
+          uses: asdf-vm/actions/install@v1
+        - name: "linting: ${{ matrix.files }}"
+          run: npx -y awesome-lint ${{ matrix.files }}
+    awesome-bot:
+      strategy:
+        fail-fast: false
+        matrix:
+          files:
+            - "readme.md"
+      runs-on: ubuntu-latest
+      steps:
+        - name: "checkout repo"
+          uses: actions/checkout@v2.0.0
+          with:
+            fetch-depth: 0
+        - name: "setup ruby"
+          uses: ruby/setup-ruby@v1
+          with:
+            ruby-version: 3.0.1
+            bundler-cache: true
+        - name: "install awesome-bot"
+          run: gem install awesome_bot
+        - name: "linting: ${{ matrix.files }}"
+          run: awesome_bot --allow-redirect ${{ matrix.files }}
+

From b0c9a8741de24149e48718e8323442ef11147ae4 Mon Sep 17 00:00:00 2001
From: Kieran <32241933+KieranRobson@users.noreply.github.com>
Date: Sat, 4 Jun 2022 19:32:06 +0100
Subject: [PATCH 02/11] Update main.yml

---
 .github/workflows/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index decb2362..df9428ab 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -3,7 +3,7 @@ on:
   pull_request:
   push:
     branches:
-      - main
+      - master
 
 jobs:
     awesome-lint:

From acd9e3ad8eea575fd873acbc69c2d7875e855d4a Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 19:54:19 +0100
Subject: [PATCH 03/11] Updated Titra

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index d35b1ce6..9622767b 100644
--- a/README.md
+++ b/README.md
@@ -1762,7 +1762,7 @@ _See also: [awesome-sysadmin/Code Review](https://github.com/awesome-foss/awesom
 - [RhodeCode](https://rhodecode.com/) - RhodeCode is an open source platform for software development teams. It unifies and simplifies repository management for Git, Subversion, and Mercurial. ([Source Code](https://code.rhodecode.com/)) `AGPL-3.0` `Python`
 - [SCM Manager](https://www.scm-manager.org/) - The easiest way to share and manage your Git, Mercurial and Subversion repositories over http. ([Source Code](https://github.com/scm-manager/scm-manager)) `BSD-3-Clause` `Java`
 - [Taiga](https://taiga.io/) - Agile Project Management Tool based on the Kanban and Scrum methods. ([Source Code](https://github.com/taigaio)) `AGPL-3.0` `Python`
-- [Titra](https://titra.io/en/free-time-tracking-online/) - Time-tracking solution for freelancers and small teams. ([Demo](https://app.titra.io/try), [Source Code](https://github.com/kromitgmbh/titra)) `GPL-3.0` `Javascript`
+- [Titra](https://titra.io/) - Time-tracking solution for freelancers and small teams. ([Source Code](https://github.com/kromitgmbh/titra)) `GPL-3.0` `Javascript`
 - [Trac](https://trac.edgewall.org/) - Trac is an enhanced wiki and issue tracking system for software development projects. `BSD-3-Clause` `Python`
 - [Tuleap](https://www.tuleap.org/) - Tuleap is a libre suite to plan, track, code and collaborate on software projects. ([Source Code](https://tuleap.net/plugins/git/tuleap/tuleap/stable?p=tuleap%2Fstable.git&a=tree)) `GPL-2.0` `PHP`
 - [UVDesk](https://www.uvdesk.com/) - UVDesk community is a service oriented, event driven extensible opensource helpdesk system that can be used by your organization to provide efficient support to your clients effortlessly whichever way you imagine. ([Demo](https://demo.uvdesk.com/), [Source Code](https://github.com/uvdesk/community-skeleton)) `MIT` `PHP`

From 9e15e07d70f63a7a5cad47534ed64d56156cec14 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 19:54:53 +0100
Subject: [PATCH 04/11] rm workflows used for testing

---
 .github/workflows/main.yml | 46 --------------------------------------
 1 file changed, 46 deletions(-)
 delete mode 100644 .github/workflows/main.yml

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index df9428ab..00000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Awesome Lint
-on: 
-  pull_request:
-  push:
-    branches:
-      - master
-
-jobs:
-    awesome-lint:
-      strategy:
-        fail-fast: false
-        matrix:
-          files:
-            - "readme.md"
-      runs-on: ubuntu-latest
-      steps:
-        - name: "checkout repo"
-          uses: actions/checkout@v2
-          with:
-            fetch-depth: 0
-        - name: asdf_install
-          uses: asdf-vm/actions/install@v1
-        - name: "linting: ${{ matrix.files }}"
-          run: npx -y awesome-lint ${{ matrix.files }}
-    awesome-bot:
-      strategy:
-        fail-fast: false
-        matrix:
-          files:
-            - "readme.md"
-      runs-on: ubuntu-latest
-      steps:
-        - name: "checkout repo"
-          uses: actions/checkout@v2.0.0
-          with:
-            fetch-depth: 0
-        - name: "setup ruby"
-          uses: ruby/setup-ruby@v1
-          with:
-            ruby-version: 3.0.1
-            bundler-cache: true
-        - name: "install awesome-bot"
-          run: gem install awesome_bot
-        - name: "linting: ${{ matrix.files }}"
-          run: awesome_bot --allow-redirect ${{ matrix.files }}
-

From d0a47bcb46dbde4131ae3943ed107332029f42e1 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 19:56:14 +0100
Subject: [PATCH 05/11] Remove Piwigo demo - dead

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 9622767b..0fe12e13 100644
--- a/README.md
+++ b/README.md
@@ -1486,7 +1486,7 @@ _Related: [Monitoring](#monitoring)_
 - [PhotoPrism](https://photoprism.org) - Personal photo management powered by Go and Google TensorFlow.  Browse, organize, and share your personal photo collection, using the latest technologies to automatically tag and find pictures. ([Source Code](https://github.com/photoprism/photoprism)) `MIT` `Go`
 - [Photoview](https://photoview.github.io/) - A simple and user-friendly Photo Gallery for personal servers. It is made for photographers and aims to provide an easy and fast way to navigate directories, with thousands of high resolution photos. ([Demo](https://photos.qpqp.dk/), [Source Code](https://github.com/photoview/photoview)) `GPL-3.0` `Go`
 - [PiGallery 2](https://bpatrik.github.io/pigallery2/) - A directory-first photo gallery website, with a rich UI, optimised for running on low resource servers. ([Source Code](https://github.com/bpatrik/pigallery2)) `MIT` `Docker/Nodejs`
-- [Piwigo](https://piwigo.org/) - Photo gallery software for the web, built by an active community of users and developers. ([Demo](https://piwigo.org/demo/), [Source Code](https://github.com/Piwigo/Piwigo)) `GPL-2.0` `PHP`
+- [Piwigo](https://piwigo.org/) - Photo gallery software for the web, built by an active community of users and developers. ([Source Code](https://github.com/Piwigo/Piwigo)) `GPL-2.0` `PHP`
 - [Quru Image Server](https://quruimageserver.com/) - High performance dynamically resizing image server offering directory based access control cropping, rotation, color management and other tools. ([Demo](https://quruimageserver.com), [Source Code](https://github.com/quru/qis)) `AGPL-3.0` `Python`
 - [sigal](https://github.com/saimn/sigal) - Yet another simple static gallery generator. `MIT` `Python`
 - [UberGallery](https://www.ubergallery.net) - UberGallery is an easy to use, simple to manage, web photo gallery. UberGallery does not require a database and supports JPEG, GIF and PNG file types. Simply upload your images and UberGallery will automatically generate thumbnails and output HTML. ([Source Code](https://github.com/UberGallery/UberGallery)) `MIT` `PHP`

From 125f99e1a98a39e0df477e47532c81a9482c8a01 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 19:58:22 +0100
Subject: [PATCH 06/11] Updated babybuddy demo link

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 0fe12e13..d4774a66 100644
--- a/README.md
+++ b/README.md
@@ -1440,7 +1440,7 @@ _Related: [Wikis](#wikis)_
 
 _Related: [Monitoring](#monitoring)_
 
-- [Baby Buddy](https://github.com/babybuddy/babybuddy) - Helps caregivers track baby sleep, feedings, diaper changes, and tummy time. ([Demo](https://babybuddy.herokuapp.com/)) `BSD-2-Clause` `Python`
+- [Baby Buddy](https://github.com/babybuddy/babybuddy) - Helps caregivers track baby sleep, feedings, diaper changes, and tummy time. ([Demo](https://demo.baby-buddy.net/login/?next=/)) `BSD-2-Clause` `Python`
 - [Dashboard](https://github.com/phntxx/dashboard) - Minimalist homepage for organizing your web applications and bookmarks using JSON-files. `MIT` `Nodejs/Docker`
 - [DashMachine](https://github.com/rmountjoy92/DashMachine) - Another web application bookmark dashboard, with fun features. `GPL-3.0` `Python`
 - [Dashy](https://github.com/lissy93/dashy) - Feature-rich homepage for your homelab, with easy YAML configuration. ([Demo](https://demo.dashy.to/)) `MIT` `Nodejs/Docker`

From a765cd535f00d6c60650f9cb31db21cd622e3e46 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 19:59:42 +0100
Subject: [PATCH 07/11] Updated dead link for passcheck

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index d4774a66..178c8802 100644
--- a/README.md
+++ b/README.md
@@ -1259,7 +1259,7 @@ _See also: [List of streaming media systems - Wikipedia](https://en.wikipedia.or
 - [Ombi](https://ombi.io/) - A content request system for Plex/Emby, connects to SickRage, CouchPotato, Sonarr, with a growing feature set. ([Demo](https://app.ombi.io/), [Source Code](https://github.com/Ombi-app/Ombi)) `GPL-2.0` `C#`
 - [Orchest](https://www.orchest.io/) - A new kind of IDE for Data Science. ([Demo](https://cloud.orchest.io), [Source Code](https://github.com/orchest/orchest)) `AGPL-3.0` `Docker`
 - [oTranscribe](https://github.com/oTranscribe/oTranscribe) - Free web app to take the pain out of transcribing recorded interviews. ([Demo](https://otranscribe.com/)) `MIT` `Javascript`
-- [PassCheck](https://apacketofsweets.github.io/PassCheck/) - A web application featuring some handy password tools, including a password generator, strength checker and HaveIBeenPwned breach checker. ([Source Code](https://github.com/apacketofsweets/PassCheck)) `MIT` `Javascript`
+- [PassCheck](https://passcheck.anhur.xyz/) - A web application featuring some handy password tools, including a password generator, strength checker and HaveIBeenPwned breach checker. ([Source Code](https://github.com/apacketofsweets/PassCheck)) `MIT` `Javascript`
 - [Reactive Resume](https://rxresu.me/) - A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. ([Demo](https://rxresu.me/app/dashboard/), [Source Code](https://github.com/AmruthPillai/Reactive-Resume)) `MIT` `Docker/Nodejs`
 - [ReleaseBell](https://releasebell.com/) - Send release notifications for starred Github repos. ([Source Code](https://git.cloudron.io/cloudron/releasebell)) `MIT` `Nodejs`
 - [revealjs](https://revealjs.com) - Framework for easily creating beautiful presentations using HTML. ([Demo](https://revealjs.com/), [Source Code](https://github.com/hakimel/reveal.js)) `MIT` `Javascript`

From ac629750b7b482810bc58214324f913d3ccaa9b2 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 20:02:00 +0100
Subject: [PATCH 08/11] Update citadel link

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 178c8802..72887b5c 100644
--- a/README.md
+++ b/README.md
@@ -1022,7 +1022,7 @@ Games, game servers and control panels.
 **[`^        back to top        ^`](#)**
 
 - [BlueMind](https://www.bluemind.net/en/) - Groupware with email, calendar, addressbooks, exchange active sync, exchange MAPI protocol support. ([Source Code](https://forge.bluemind.net/stash/projects/BM/repos/bluemind-public/browse)) `AGPL-3.0` `Java`
-- [Citadel](https://www.citadel.org/doku.php) - Groupware including email, calendar/scheduling, address books, forums, mailing lists, IM, wiki and blog engines, RSS aggregation and more. ([Source Code](https://www.citadel.org/source.html)) `GPL-3.0` `C`
+- [Citadel](https://www.citadel.org/) - Groupware including email, calendar/scheduling, address books, forums, mailing lists, IM, wiki and blog engines, RSS aggregation and more. ([Source Code](https://www.citadel.org/source.html)) `GPL-3.0` `C`
 - [Corteza](https://cortezaproject.org) - CRM including a unified workspace, enterprise messaging and a low code environment for rapidly and securely delivering records-based management solutions. ([Demo](https://latest.cortezaproject.org), [Source Code](https://github.com/cortezaproject/corteza-server)) `Apache-2.0` `Go`
 - [Cozy Cloud](https://cozy.io) - Personal cloud where you can manage and sync your contact, files and calendars, and manage your budget with an app store full of community contributions. ([Source Code](https://github.com/cozy)) `GPL-3.0` `Nodejs`
 - [egroupware](https://www.egroupware.org/) - Software suite including calendars, address books, notepad, project management tools, client relationship management tools (CRM), knowledge management tools, a wiki and a CMS. ([Source Code](https://github.com/EGroupware/egroupware)) `GPL-2.0` `PHP`

From 87389c26e148de51f81c582ae6af882ab2dc7fbb Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 20:03:50 +0100
Subject: [PATCH 09/11] Update fremto dead link

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 72887b5c..1db66d85 100644
--- a/README.md
+++ b/README.md
@@ -934,7 +934,7 @@ _Related: [Groupware](#groupware)_
 - [transfer.sh](https://transfer.sh) - Easy file sharing from the command line. ([Source Code](https://github.com/dutchcoders/transfer.sh)) `MIT` `Go`
 - [Uguu](https://uguu.se/) - Stores files and deletes after X amount of time. ([Source Code](https://github.com/nokonoko/uguu)) `MIT` `PHP`
 - [Void](https://github.com/AlphaNecron/Void) - Lightweight, fast and elegant file hosting service for ShareX with Web UI and REST API. ([Source Code](https://github.com/AlphaNecron/Void/)) `MIT` `Nodejs`
-- [Web-File-Uploader](https://v2.femto.pw/) - A simple tool to let people upload and share images and files. ([Source Code](https://github.com/femto-apps/web-file-uploader)) `MIT` `Nodejs`
+- [Web-File-Uploader](https://github.com/femto-apps/web-file-uploader) - A simple tool to let people upload and share images and files. `MIT` `Nodejs`
 - [XBackBone](https://github.com/SergiX44/XBackBone) - A simple, fast and lightweight file manager with instant sharing tools integration, like ShareX (a free and open-source screenshot utility for Windows). `AGPL-3.0` `PHP`
 - [YouTransfer](https://www.youtransfer.io) - YouTransfer is a simple but elegant self-hosted file transfer and sharing solution. ([Source Code](https://github.com/YouTransfer/YouTransfer)) `Apache-2.0` `Nodejs`
 - [Zipline](https://zipline.diced.me/) - A lightweight, fast and reliable file sharing server that is commonly used with ShareX, offering a react-based Web UI and fast API. ([Source Code](https://github.com/diced/zipline)) `MIT` `Nodejs`

From 401f2eca9a2584197f9ad6ae8aae3d2da06eaa89 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 20:05:03 +0100
Subject: [PATCH 10/11] Remove dead pkp demo link

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 1db66d85..4a4f5b2f 100644
--- a/README.md
+++ b/README.md
@@ -626,7 +626,7 @@ _Related: [E-commerce](#e-commerce)_
 - [Conference Organizing Distribution (COD)](http://usecod.com/) - Create conference and event websites built on top of Drupal. ([Source Code](https://git.drupalcode.org/project/cod)) `GPL-1.0` `PHP`
 - [frab](https://frab.github.io/frab/) - web-based conference planning and management system. It helps to collect submissions, to manage talks and speakers and to create a schedule. ([Source Code](https://github.com/frab/frab)) `MIT` `Ruby`
 - [indico](https://getindico.io/) - A feature-rich event management system, made @ CERN, the place where the Web was born. ([Demo](https://sandbox.getindico.io/), [Source Code](https://github.com/indico/indico)) `MIT` `Python`
-- [Open Conference Systems (OCS)](https://pkp.sfu.ca/ocs/) - is a free Web publishing tool that will create a complete Web presence for your scholarly conference. ([Demo](https://pkp.sfu.ca/ocs/ocs_demo/), [Source Code](https://github.com/pkp/ocs)) `GPL-1.0` `PHP`
+- [Open Conference Systems (OCS)](https://pkp.sfu.ca/ocs/) - is a free Web publishing tool that will create a complete Web presence for your scholarly conference. ([Source Code](https://github.com/pkp/ocs)) `GPL-1.0` `PHP`
 - [OpenCFP](https://github.com/opencfp/opencfp) - OpenCFP is a PHP-based conference talk submission system. `MIT` `PHP`
 - [osem](https://osem.io/) - Event management tailored to free Software conferences. ([Demo](https://demo.osem.io/), [Source Code](https://github.com/openSUSE/osem)) `MIT` `Ruby`
 - [pretalx](https://pretalx.org) - Web-based event management, including running a Call for Papers, reviewing submissions, and scheduling talks. Exports and imports for various related tools. ([Source Code](https://github.com/pretalx/pretalx)) `Apache-2.0` `Python`

From 41fd7dd496eeac1ff2be4361bf3b80a4d06bbde6 Mon Sep 17 00:00:00 2001
From: Kieran <kieranrobson1999@gmail.com>
Date: Sat, 4 Jun 2022 20:05:54 +0100
Subject: [PATCH 11/11] Remove torret.csv - only link is dead

---
 README.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/README.md b/README.md
index 4a4f5b2f..3076f18c 100644
--- a/README.md
+++ b/README.md
@@ -895,7 +895,6 @@ _Related: [Groupware](#groupware)_
 - [qBittorrent](https://www.qbittorrent.org/) - Free cross-platform bittorrent client with a feature rich Web UI for remote access. ([Source Code](https://github.com/qbittorrent/qBittorrent)) `GPL-2.0` `C++`
 - [rartracker](https://github.com/swetorrentking/rartracker) - Complete private bittorrent tracker. `WTFPL` `PHP`
 - [Send](https://github.com/timvisee/send) - Simple, private, end to end encrypted temporary file sharing, originally built by Mozilla. ([Clients](https://github.com/timvisee/send#clients)) `MPL-2.0` `Nodejs`
-- [Torrents.csv](https://codeberg.org/heretic/torrents-csv-server) - A self-hostable torrent search engine. `GPL-3.0` `Rust`
 - [Transmission](https://transmissionbt.com/) - Fast, easy, Free Bittorrent client. ([Source Code](https://github.com/transmission/transmission)) `GPL-3.0` `C`