mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-16 04:58:38 +00:00
Compare commits
2 Commits
396f7b0244
...
8f0cec9739
Author | SHA1 | Date | |
---|---|---|---|
|
8f0cec9739 | ||
|
a56eeeb528 |
@@ -30,13 +30,13 @@ A hypervisor such as [Proxmox](https://www.proxmox.com/en/proxmox-ve/get-started
|
|||||||
|
|
||||||
## Services
|
## Services
|
||||||
|
|
||||||
So what are some useful services to deploy?
|
Here is a list of some useful services to consider:
|
||||||
|
|
||||||
- [Jellyfin](https://jellyfin.org/) or [Plex](https://www.plex.tv/) - a common gateway to self-hosting that enables a "self-hosted Netflix" experience where you are in control of the content (guaranteed to make your partner and kids happy)
|
- [Jellyfin](https://jellyfin.org/) or [Plex](https://www.plex.tv/) - a common gateway to self-hosting that enables a "self-hosted Netflix" experience that puts you in control of the content (guaranteed to make your partner and kids happy)
|
||||||
- [changedetection](https://github.com/dgtlmoon/changedetection.io) - is a self-hosted equivalent to something like [visualping.io](https://visualping.io/) that can notify you when a webpage changes and keep track of the diffs
|
- [changedetection](https://github.com/dgtlmoon/changedetection.io) - is a self-hosted equivalent to something like [visualping.io](https://visualping.io/) that can notify you when a webpage changes and keep track of the diffs
|
||||||
- [Adguard](https://github.com/AdguardTeam/AdGuardHome) or [Pihole](https://pi-hole.net/) - can block a list of known trackers for all clients on your local network with the added benefit of speeding up your internet experience since you don't need to download so many ads
|
- [Adguard](https://github.com/AdguardTeam/AdGuardHome) or [Pihole](https://pi-hole.net/) - can block a list of known trackers for all clients on your local network with the added benefit of speeding up web page load times
|
||||||
- [gitea](https://gitea.io/) - A lightweight git server that can used to mirror git repos and host private content
|
- [gitea](https://gitea.io/) - A lightweight git server that can be used to mirror git repos and host private content
|
||||||
- [gethomepage](https://github.com/gethomepage/homepage) - A customizable landing page for quick access to services and data with many builtin widgets supported.
|
- [gethomepage](https://github.com/gethomepage/homepage) - A customizable landing page for quick access to services with many supported widgets that can query APIs and display information
|
||||||
- [Uptime Kuma](https://github.com/louislam/uptime-kuma) - A tool for monitoring the uptime of services, with notification support
|
- [Uptime Kuma](https://github.com/louislam/uptime-kuma) - A tool for monitoring the uptime of services, with notification support
|
||||||
- [Speedtest Tracker](https://github.com/alexjustesen/speedtest-tracker) - a way to monitor the performance of your internet connection and/or vpn connection
|
- [Speedtest Tracker](https://github.com/alexjustesen/speedtest-tracker) - a way to monitor the performance of your internet connection and/or vpn connection
|
||||||
- [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) - a self-hosted PDF manipulation tool that will keep your data private
|
- [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) - a self-hosted PDF manipulation tool that will keep your data private
|
||||||
|
@@ -6,12 +6,15 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// load comments
|
// load comments
|
||||||
var getTheme =
|
var getTheme = localStorage && localStorage.getItem("theme");
|
||||||
(localStorage && localStorage.getItem("theme")) ||
|
|
||||||
(window.matchMedia &&
|
getTheme =
|
||||||
window.matchMedia("(prefers-color-scheme: light)").matches)
|
getTheme == null
|
||||||
? "light"
|
? window.matchMedia &&
|
||||||
: "dark";
|
window.matchMedia("(prefers-color-scheme: light)").matches
|
||||||
|
? "light"
|
||||||
|
: "dark"
|
||||||
|
: getTheme;
|
||||||
getTheme = getTheme == null ? "dark" : getTheme;
|
getTheme = getTheme == null ? "dark" : getTheme;
|
||||||
|
|
||||||
let theme = getTheme === "dark" ? "gruvbox-dark" : "github-light";
|
let theme = getTheme === "dark" ? "gruvbox-dark" : "github-light";
|
||||||
|
Reference in New Issue
Block a user