Skip to content

Commit

Permalink
[Automation] Site update No.917
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 2, 2024
0 parents commit b56c932
Show file tree
Hide file tree
Showing 877 changed files with 14,803 additions and 0 deletions.
1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en" ><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="theme-color" media="(prefers-color-scheme: light)" content="#f7f7f7"><meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1b1b1e"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="viewport" content="width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover" ><meta name="generator" content="Jekyll v4.3.3" /><meta property="og:title" content="404: Page not found" /><meta property="og:locale" content="en" /><meta name="description" content="Techno Tim Home - Documentation and More" /><meta property="og:description" content="Techno Tim Home - Documentation and More" /><link rel="canonical" href="https://technotim.live/404.html" /><meta property="og:url" content="https://technotim.live/404.html" /><meta property="og:site_name" content="Techno Tim" /><meta property="og:type" content="website" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="404: Page not found" /><meta name="twitter:site" content="@technotimlive" /> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"WebPage","description":"Techno Tim Home - Documentation and More","headline":"404: Page not found","url":"https://technotim.live/404.html"}</script><title>404: Page not found | Techno Tim</title><link rel="apple-touch-icon" sizes="180x180" href="/assets/img/favicons/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicons/favicon-16x16.png"><link rel="shortcut icon" href="/assets/img/favicons/favicon.ico"><meta name="apple-mobile-web-app-title" content="Techno Tim"><meta name="application-name" content="Techno Tim"><meta name="msapplication-TileColor" content="#da532c"><meta name="msapplication-config" content="/assets/img/favicons/browserconfig.xml"><meta name="theme-color" content="#ffffff"><link rel="preconnect" href="https://fonts.googleapis.com" ><link rel="dns-prefetch" href="https://fonts.googleapis.com" ><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link rel="dns-prefetch" href="https://fonts.gstatic.com" crossorigin><link rel="preconnect" href="https://fonts.googleapis.com" ><link rel="dns-prefetch" href="https://fonts.googleapis.com" ><link rel="preconnect" href="https://cdn.jsdelivr.net" ><link rel="dns-prefetch" href="https://cdn.jsdelivr.net" ><link rel="preconnect" href="https://cdnjs.cloudflare.com" ><link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" ><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato&family=Source+Sans+Pro:wght@400;600;700;900&display=swap"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"><link rel="stylesheet" href="/assets/css/jekyll-theme-chirpy.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/loading-attribute-polyfill.min.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/magnific-popup.min.css"> <script type="text/javascript"> class ModeToggle { static get MODE_KEY() { return 'mode'; } static get MODE_ATTR() { return 'data-mode'; } static get DARK_MODE() { return 'dark'; } static get LIGHT_MODE() { return 'light'; } static get ID() { return 'mode-toggle'; } constructor() { if (this.hasMode) { if (this.isDarkMode) { if (!this.isSysDarkPrefer) { this.setDark(); } } else { if (this.isSysDarkPrefer) { this.setLight(); } } } let self = this; /* always follow the system prefers */ this.sysDarkPrefers.addEventListener('change', () => { if (self.hasMode) { if (self.isDarkMode) { if (!self.isSysDarkPrefer) { self.setDark(); } } else { if (self.isSysDarkPrefer) { self.setLight(); } } self.clearMode(); } self.notify(); }); } /* constructor() */ get sysDarkPrefers() { return window.matchMedia('(prefers-color-scheme: dark)'); } get isSysDarkPrefer() { return this.sysDarkPrefers.matches; } get isDarkMode() { return this.mode === ModeToggle.DARK_MODE; } get isLightMode() { return this.mode === ModeToggle.LIGHT_MODE; } get hasMode() { return this.mode != null; } get mode() { return sessionStorage.getItem(ModeToggle.MODE_KEY); } /* get the current mode on screen */ get modeStatus() { if (this.isDarkMode || (!this.hasMode && this.isSysDarkPrefer)) { return ModeToggle.DARK_MODE; } else { return ModeToggle.LIGHT_MODE; } } setDark() { document.documentElement.setAttribute(ModeToggle.MODE_ATTR, ModeToggle.DARK_MODE); sessionStorage.setItem(ModeToggle.MODE_KEY, ModeToggle.DARK_MODE); } setLight() { document.documentElement.setAttribute(ModeToggle.MODE_ATTR, ModeToggle.LIGHT_MODE); sessionStorage.setItem(ModeToggle.MODE_KEY, ModeToggle.LIGHT_MODE); } clearMode() { document.documentElement.removeAttribute(ModeToggle.MODE_ATTR); sessionStorage.removeItem(ModeToggle.MODE_KEY); } /* Notify another plugins that the theme mode has changed */ notify() { window.postMessage( { direction: ModeToggle.ID, message: this.modeStatus }, '*' ); } flipMode() { if (this.hasMode) { if (this.isSysDarkPrefer) { if (this.isLightMode) { this.clearMode(); } else { this.setLight(); } } else { if (this.isDarkMode) { this.clearMode(); } else { this.setDark(); } } } else { if (this.isSysDarkPrefer) { this.setLight(); } else { this.setDark(); } } this.notify(); } /* flipMode() */ } /* ModeToggle */ const modeToggle = new ModeToggle(); </script><body><aside aria-label="Sidebar" id="sidebar" class="d-flex flex-column align-items-end"><header class="profile-wrapper"> <a href="/" id="avatar" class="rounded-circle"><img src="https://avatars.githubusercontent.com/u/1322205?s=400&u=5b4f2219006577dc0426007fe5a02391c4899677&v=4" width="112" height="112" alt="avatar" onerror="this.style.display='none'"></a><h1 class="site-title"> <a href="/">Techno Tim</a></h1><p class="site-subtitle fst-italic mb-0">Software Engineer | Tech Content Creator | HomeLab | 🇺🇸 🇯🇵 | Full Nerd</p></header><nav class="flex-column flex-grow-1 w-100 ps-0"><ul class="nav"><li class="nav-item"> <a href="/" class="nav-link"> <i class="fa-fw fas fa-home"></i> <span>HOME</span> </a><li class="nav-item"> <a href="/all-posts/" class="nav-link"> <i class="fa-fw fas fa-archive"></i> <span>ALL POSTS</span> </a><li class="nav-item"> <a href="/categories/" class="nav-link"> <i class="fa-fw fas fa-stream"></i> <span>CATEGORIES</span> </a><li class="nav-item"> <a href="/tags/" class="nav-link"> <i class="fa-fw fas fa-tag"></i> <span>TAGS</span> </a><li class="nav-item"> <a href="/about/" class="nav-link"> <i class="fa-fw fas fa-info-circle"></i> <span>ABOUT</span> </a><li class="nav-item"> <a href="/shop/" class="nav-link"> <i class="fa-fw fas fa-bag-shopping"></i> <span>TECHNO TIM SHOP</span> </a><li class="nav-item"> <a href="/sponsor/" class="nav-link"> <i class="fa-fw fas fa-handshake"></i> <span>SPONSOR</span> </a></ul></nav><div class="sidebar-bottom d-flex flex-wrap align-items-center w-100"> <button type="button" class="mode-toggle btn" aria-label="Switch Mode"> <i class="fas fa-adjust"></i> </button> <span class="icon-border"></span> <a href="https://l.technotim.live/links" aria-label="links" target="_blank" rel="noopener noreferrer" > <i class="fa-solid fa-link"></i> </a> <a href="https://twitter.com/technotimlive" aria-label="twitter" target="_blank" rel="noopener noreferrer" > <i class="fa-brands fa-x-twitter"></i> </a> <a href="https://l.technotim.live/github" aria-label="github-custom" target="_blank" rel="noopener noreferrer" > <i class="fab fa-github"></i> </a> <a href="/feed.xml" aria-label="rss" > <i class="fas fa-rss"></i> </a></div></aside><div id="main-wrapper" class="d-flex justify-content-center"><div class="container d-flex flex-column px-xxl-5"><header id="topbar-wrapper" aria-label="Top Bar"><div id="topbar" class="d-flex align-items-center justify-content-between px-lg-3 h-100" ><nav id="breadcrumb" aria-label="Breadcrumb"> <span> <a href="/">Home</a> </span> <span>404: Page not found</span></nav><button type="button" id="sidebar-trigger" class="btn btn-link"> <i class="fas fa-bars fa-fw"></i> </button><div id="topbar-title"> 404: Page not found</div><button type="button" id="search-trigger" class="btn btn-link"> <i class="fas fa-search fa-fw"></i> </button> <search class="align-items-center ms-3 ms-lg-0"> <i class="fas fa-search fa-fw"></i> <input class="form-control" id="search-input" type="search" aria-label="search" autocomplete="off" placeholder="Search..." > </search> <button type="button" class="btn btn-link text-decoration-none" id="search-cancel">Cancel</button></div></header><div class="row flex-grow-1"><main aria-label="Main Content" class="col-12 col-lg-11 col-xl-9 px-md-4"><article class="px-1"><h1 class="dynamic-title"> 404: Page not found</h1><div class="content"><p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.</p></div></article></main><aside aria-label="Panel" id="panel-wrapper" class="col-xl-3 ps-2 mb-5 text-muted"><div class="access"><section id="access-lastmod"><h2 class="panel-heading">Recently Updated</h2><ul class="content list-unstyled ps-0 pb-1 ms-1 mt-2"><li class="text-truncate lh-lg"> <a href="/posts/homelab-assistant/">The Best HomeLab Service Dashboard Yet!</a><li class="text-truncate lh-lg"> <a href="/posts/create-your-own-zigbee-hub/">Create Your Own Zigbee Hub & Network</a><li class="text-truncate lh-lg"> <a href="/posts/mini-rack-homelab-stack/">Mini Rack, HomeLab Stack</a><li class="text-truncate lh-lg"> <a href="/posts/ai-stack-tutorial/">How to Self-Host Your Own Private AI Stack</a><li class="text-truncate lh-lg"> <a href="/posts/private-practical-local-ai/">Self-Hosted AI That's Actually Useful</a></ul></section><section><h2 class="panel-heading">Trending Tags</h2><div class="d-flex flex-wrap mt-3 mb-1 me-3"> <a class="post-tag btn btn-outline-primary" href="/tags/homelab/">homelab</a> <a class="post-tag btn btn-outline-primary" href="/tags/hardware/">hardware</a> <a class="post-tag btn btn-outline-primary" href="/tags/kubernetes/">kubernetes</a> <a class="post-tag btn btn-outline-primary" href="/tags/docker/">docker</a> <a class="post-tag btn btn-outline-primary" href="/tags/rancher/">rancher</a> <a class="post-tag btn btn-outline-primary" href="/tags/self-hosted/">self-hosted</a> <a class="post-tag btn btn-outline-primary" href="/tags/portainer/">portainer</a> <a class="post-tag btn btn-outline-primary" href="/tags/proxmox/">proxmox</a> <a class="post-tag btn btn-outline-primary" href="/tags/linux/">linux</a> <a class="post-tag btn btn-outline-primary" href="/tags/k3s/">k3s</a></div></section></div></aside></div><div class="row"><div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 px-md-4"><footer aria-label="Site Info" class=" d-flex flex-column justify-content-center text-muted flex-lg-row justify-content-lg-between align-items-lg-center pb-lg-3 " ><p>© <time>2024</time> <a href="https://l.technotim.live/twitter">Techno Tim</a>. <span data-bs-toggle="tooltip" data-bs-placement="top" title="Except where otherwise noted, the blog posts on this site are licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0) License by the author." >Some rights reserved.</span></p><p><a href="/sponsor/">🤝 Help keep this ad-free!</href> &nbsp; &nbsp;<a href="https://l.technotim.live/shop">🛍️ Check out the new merch shop!</href></p></footer></div></div><div id="search-result-wrapper" class="d-flex justify-content-center unloaded"><div class="col-11 content"><div id="search-hints"><section><h2 class="panel-heading">Trending Tags</h2><div class="d-flex flex-wrap mt-3 mb-1 me-3"> <a class="post-tag btn btn-outline-primary" href="/tags/homelab/">homelab</a> <a class="post-tag btn btn-outline-primary" href="/tags/hardware/">hardware</a> <a class="post-tag btn btn-outline-primary" href="/tags/kubernetes/">kubernetes</a> <a class="post-tag btn btn-outline-primary" href="/tags/docker/">docker</a> <a class="post-tag btn btn-outline-primary" href="/tags/rancher/">rancher</a> <a class="post-tag btn btn-outline-primary" href="/tags/self-hosted/">self-hosted</a> <a class="post-tag btn btn-outline-primary" href="/tags/portainer/">portainer</a> <a class="post-tag btn btn-outline-primary" href="/tags/proxmox/">proxmox</a> <a class="post-tag btn btn-outline-primary" href="/tags/linux/">linux</a> <a class="post-tag btn btn-outline-primary" href="/tags/k3s/">k3s</a></div></section></div><div id="search-results" class="d-flex flex-wrap justify-content-center text-muted mt-3"></div></div></div></div><aside aria-label="Scroll to Top"> <button id="back-to-top" type="button" class="btn btn-lg btn-box-shadow"> <i class="fas fa-angle-up"></i> </button></aside></div><div id="mask"></div><script src="https://cdn.jsdelivr.net/combine/npm/[email protected]/dist/jquery.min.js,npm/[email protected]/dist/js/bootstrap.bundle.min.js,npm/[email protected]/dest/simple-jekyll-search.min.js,npm/[email protected]/dist/loading-attribute-polyfill.umd.min.js,npm/[email protected]/dist/jquery.magnific-popup.min.js,npm/[email protected]/dist/clipboard.min.js"></script> <script defer src="/assets/js/dist/page.min.js"></script> <script> /* Note: dependent library will be loaded in `js-selector.html` */ SimpleJekyllSearch({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('search-results'), json: '/assets/js/data/search.json', searchResultTemplate: '<article class="px-1 px-sm-2 px-lg-4 px-xl-0"><header><h2><a href="{url}">{title}</a></h2><div class="post-meta d-flex flex-column flex-sm-row text-muted mt-1 mb-1"> {categories} {tags}</div></header><p>{snippet}</p></article>', noResultsText: '<p class="mt-5"></p>', templateMiddleware: function(prop, value, template) { if (prop === 'categories') { if (value === '') { return `${value}`; } else { return `<div class="me-sm-4"><i class="far fa-folder fa-fw"></i>${value}</div>`; } } if (prop === 'tags') { if (value === '') { return `${value}`; } else { return `<div><i class="fa fa-tag fa-fw"></i>${value}</div>`; } } } }); </script>
1 change: 1 addition & 0 deletions about/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ads.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google.com, pub-1872619258207885, DIRECT, f08c47fec0942fa0
1 change: 1 addition & 0 deletions all-posts/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/css/jekyll-theme-chirpy.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/css/jekyll-theme-chirpy.css.map

Large diffs are not rendered by default.

Binary file added assets/img/favicons/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-icon-36x36.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/android-icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-114x114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-57x57.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon-precomposed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/img/favicons/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?> <browserconfig> <msapplication> <tile> <square150x150logo src="/assets/img/favicons/mstile-150x150.png" /> <TileColor>#da532c</TileColor> </tile> </msapplication> </browserconfig>
Binary file added assets/img/favicons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/favicon.ico
Binary file not shown.
Binary file added assets/img/favicons/ms-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/ms-icon-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/favicons/ms-icon-310x310.png
Binary file added assets/img/favicons/ms-icon-70x70.png
Binary file added assets/img/favicons/mstile-150x150.png
1 change: 1 addition & 0 deletions assets/img/favicons/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "name": "Techno Tim", "short_name": "Techno Tim", "description": "Techno Tim Home - Documentation and More", "icons": [ { "src": "/assets/img/favicons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "/assets/img/favicons/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" }], "start_url": "/index.html", "theme_color": "#2a1e6b", "background_color": "#ffffff", "display": "fullscreen" }
Binary file added assets/img/headers/100-door.webp
Binary file not shown.
Binary file added assets/img/headers/45-homelab-creator-summit.webp
Binary file not shown.
Binary file added assets/img/headers/45drives-storage-summit.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/age-install.webp
Binary file not shown.
Binary file added assets/img/headers/ai-stack-tutorial.webp
Binary file not shown.
Binary file added assets/img/headers/avocado.webp
Binary file not shown.
Binary file added assets/img/headers/beach-regret.webp
Binary file not shown.
Binary file added assets/img/headers/blackhole-gold.webp
Binary file not shown.
Binary file added assets/img/headers/block-dark.webp
Binary file not shown.
Binary file added assets/img/headers/books-shelf.webp
Binary file not shown.
Binary file added assets/img/headers/box-purple.webp
Binary file not shown.
Binary file added assets/img/headers/brick-door.webp
Binary file not shown.
Binary file added assets/img/headers/bridge-water.webp
Binary file not shown.
Binary file added assets/img/headers/camera-neon.webp
Binary file not shown.
Binary file added assets/img/headers/car-assembly.webp
Binary file not shown.
Binary file added assets/img/headers/card-joker.webp
Binary file not shown.
Binary file added assets/img/headers/certificate-desk.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/charts-paper.webp
Binary file not shown.
Binary file added assets/img/headers/cloud-geese-smoke.webp
Binary file not shown.
Binary file added assets/img/headers/cloud-moon.webp
Binary file not shown.
Binary file added assets/img/headers/code-esc.webp
Binary file not shown.
Binary file added assets/img/headers/color-stacks.webp
Binary file not shown.
Binary file added assets/img/headers/combine-harvest.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/crowd-concert.webp
Binary file not shown.
Binary file added assets/img/headers/custom-pc.webp
Binary file not shown.
Binary file added assets/img/headers/desk-tour-2023-hero.webp
Binary file not shown.
Binary file added assets/img/headers/discord-square.webp
Binary file not shown.
Binary file added assets/img/headers/docker-gold.webp
Binary file not shown.
Binary file added assets/img/headers/duck-head.webp
Binary file not shown.
Binary file added assets/img/headers/electric-city.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/energy-ball.webp
Binary file not shown.
Binary file added assets/img/headers/energy-blue.webp
Binary file not shown.
Binary file added assets/img/headers/engine-start.webp
Binary file not shown.
Binary file added assets/img/headers/fast-lights.webp
Binary file not shown.
Binary file added assets/img/headers/fire-ring.webp
Binary file not shown.
Binary file added assets/img/headers/floppy-black.webp
Binary file not shown.
Binary file added assets/img/headers/floppy-red.webp
Binary file not shown.
Binary file added assets/img/headers/flux-blue.webp
Binary file not shown.
Binary file added assets/img/headers/flux-multi.webp
Binary file not shown.
Binary file added assets/img/headers/flux-streak.webp
Binary file not shown.
Binary file added assets/img/headers/folder-black.webp
Binary file not shown.
Binary file added assets/img/headers/folder-pink.webp
Binary file not shown.
Binary file added assets/img/headers/folders-colorful.webp
Binary file not shown.
Binary file added assets/img/headers/galaxy-cluster.webp
Binary file not shown.
Binary file added assets/img/headers/gatus-uptime-hero.webp
Binary file not shown.
Binary file added assets/img/headers/gears-green.webp
Binary file not shown.
Binary file added assets/img/headers/glass-layers.webp
Binary file not shown.
Binary file added assets/img/headers/glasses-terminal.webp
Binary file not shown.
Binary file added assets/img/headers/gpu-pc.webp
Binary file not shown.
Binary file added assets/img/headers/green-kuma.webp
Binary file not shown.
Binary file added assets/img/headers/hard-drive-close-up.webp
Binary file not shown.
Binary file added assets/img/headers/hard-drive-wood.webp
Binary file not shown.
Binary file added assets/img/headers/hardware-circuit.webp
Binary file not shown.
Binary file added assets/img/headers/hardware-tour-2022.webp
Binary file not shown.
Binary file added assets/img/headers/headset-black.webp
Binary file not shown.
Binary file added assets/img/headers/highway-10gbe.webp
Binary file not shown.
Binary file added assets/img/headers/hl15-review-hero.webp
Binary file not shown.
Binary file added assets/img/headers/home-hill.webp
Binary file not shown.
Binary file added assets/img/headers/home-modern.webp
Binary file not shown.
Binary file added assets/img/headers/homelab-assistant-hero.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/homelab-datacenter-1-hero.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/homelab-rocket-servers.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/homepage-dashboard-hero.webp
Binary file not shown.
Binary file added assets/img/headers/infinity-glass.webp
Binary file not shown.
Binary file added assets/img/headers/iot-circuit.webp
Binary file not shown.
Binary file added assets/img/headers/javascript-terminal.webp
Binary file not shown.
Binary file added assets/img/headers/journal-blue.webp
Binary file not shown.
Binary file added assets/img/headers/k8s-blocks.webp
Binary file not shown.
Binary file added assets/img/headers/kvm-dark-desktop.webp
Binary file not shown.
Binary file added assets/img/headers/laptop-start.webp
Binary file not shown.
Binary file added assets/img/headers/lawn-garden-header.webp
Binary file not shown.
Binary file added assets/img/headers/lego-red.webp
Binary file not shown.
Binary file added assets/img/headers/legos-walk.webp
Binary file not shown.
Binary file added assets/img/headers/library-floors.webp
Binary file not shown.
Binary file added assets/img/headers/life-love.webp
Binary file not shown.
Binary file added assets/img/headers/lightning-island.webp
Binary file not shown.
Binary file added assets/img/headers/localsend-hero.webp
Binary file not shown.
Binary file added assets/img/headers/lock-night.webp
Binary file not shown.
Binary file added assets/img/headers/log-stack.webp
Binary file not shown.
Binary file added assets/img/headers/logs-woods.webp
Binary file not shown.
Binary file added assets/img/headers/longhorn-cattle.webp
Binary file not shown.
Binary file added assets/img/headers/mac-old.webp
Binary file not shown.
Binary file added assets/img/headers/mac-studio-rack-hero.webp
Binary file not shown.
Binary file added assets/img/headers/magnet-screws.webp
Binary file not shown.
Binary file added assets/img/headers/metal-ball.webp
Binary file not shown.
Binary file added assets/img/headers/metal-packer.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/mirror-image-chess.webp
Binary file not shown.
Binary file added assets/img/headers/mobile-vanlife.webp
Binary file not shown.
Binary file added assets/img/headers/monitoring-dashboard.webp
Binary file not shown.
Binary file added assets/img/headers/movie-theater.webp
Binary file not shown.
Binary file added assets/img/headers/museum-hieroglyphics.webp
Binary file not shown.
Binary file added assets/img/headers/neon-city.webp
Binary file not shown.
Binary file added assets/img/headers/neon-handshake.webp
Binary file not shown.
Binary file added assets/img/headers/neon-light.webp
Binary file not shown.
Binary file added assets/img/headers/nested-eggs.webp
Binary file not shown.
Binary file added assets/img/headers/netboot-xyz-hero.webp
Binary file not shown.
Binary file added assets/img/headers/network-fiber.webp
Binary file not shown.
Binary file added assets/img/headers/no-more-microsd-hero.webp
Binary file not shown.
Binary file added assets/img/headers/nut-script.webp
Binary file not shown.
Binary file added assets/img/headers/office-dark.webp
Binary file not shown.
Binary file added assets/img/headers/penguin-looking.webp
Binary file not shown.
Binary file added assets/img/headers/pikvm-v4-tesmart-hero.webp
Binary file not shown.
Binary file added assets/img/headers/pink-purple.webp
Binary file not shown.
Binary file added assets/img/headers/plex-ota-tv-hero.webp
Binary file not shown.
Binary file added assets/img/headers/port-boat.webp
Binary file not shown.
Binary file added assets/img/headers/port-container.webp
Binary file not shown.
Binary file added assets/img/headers/postit-light.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/powertoys.webp
Binary file not shown.
Binary file added assets/img/headers/prism-neon.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/proxmox-8-upgrade.webp
Binary file not shown.
Binary file added assets/img/headers/proxmox-alerts.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/radar-milkyway.webp
Binary file not shown.
Binary file added assets/img/headers/rancher-cattle.webp
Binary file not shown.
Binary file added assets/img/headers/records-pink.webp
Binary file not shown.
Binary file added assets/img/headers/renovate-paint-fence.webp
Binary file not shown.
Binary file added assets/img/headers/retro-gaming.webp
Binary file not shown.
Binary file added assets/img/headers/robot-learning.webp
Binary file not shown.
Binary file added assets/img/headers/robot-toy.webp
Binary file not shown.
Binary file added assets/img/headers/rocket-illustration.webp
Binary file not shown.
Binary file added assets/img/headers/server-lights.webp
Binary file not shown.
Binary file added assets/img/headers/server-rack-build.webp
Binary file not shown.
Binary file added assets/img/headers/services-tour-map.webp
Binary file not shown.
Binary file added assets/img/headers/seven-track.webp
Binary file not shown.
Binary file added assets/img/headers/slack-screen.webp
Binary file not shown.
Binary file added assets/img/headers/small-sun.webp
Binary file not shown.
Binary file added assets/img/headers/smart-home-hub.webp
Binary file not shown.
Binary file added assets/img/headers/sops-install.webp
Binary file not shown.
Binary file added assets/img/headers/sound-board.webp
Binary file not shown.
Binary file added assets/img/headers/sparks-circle.webp
Binary file not shown.
Binary file added assets/img/headers/stream-deck.webp
Binary file not shown.
Binary file added assets/img/headers/stream-room.webp
Binary file not shown.
Binary file added assets/img/headers/stretch-cat.webp
Binary file not shown.
Binary file added assets/img/headers/sysracks-12u-header.webp
Binary file not shown.
Binary file added assets/img/headers/teamwork-table.webp
Binary file not shown.
Binary file added assets/img/headers/techno-tim-shop-hero.webp
Binary file not shown.
Binary file added assets/img/headers/terraform-mars.webp
Binary file not shown.
Binary file added assets/img/headers/terrarium-multiple.webp
Binary file not shown.
Binary file added assets/img/headers/tire-brake.webp
Binary file not shown.
Binary file added assets/img/headers/tools-desk.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/traffic-light.webp
Binary file not shown.
Binary file added assets/img/headers/traffic-streaks.webp
Binary file not shown.
Binary file added assets/img/headers/tree-colorful.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/truenas-vs-unraid.webp
Binary file not shown.
Binary file added assets/img/headers/twitch-mobile.webp
Binary file not shown.
Binary file added assets/img/headers/typewriter-update.webp
Binary file not shown.
Binary file added assets/img/headers/ubuntu-terminal.webp
Binary file not shown.
Binary file added assets/img/headers/udm-pro-max-hero.webp
Binary file not shown.
Binary file added assets/img/headers/ui-drawing.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/headers/unifi-express-hero.webp
Binary file not shown.
Binary file added assets/img/headers/unifi-pro-max-hero.webp
Binary file not shown.
Binary file added assets/img/headers/unraid-first-time-hero.webp
Binary file not shown.
Binary file added assets/img/headers/ups-install.webp
Binary file not shown.
Binary file added assets/img/headers/viking-figure.webp
Binary file not shown.
Binary file added assets/img/headers/virtual-pixels.webp
Binary file not shown.
Binary file added assets/img/headers/we-are-homelab-hero.webp
Binary file not shown.
Binary file added assets/img/headers/whale-water.webp
Binary file not shown.
Binary file added assets/img/headers/windows-surface.webp
Binary file not shown.
Binary file added assets/img/headers/wire-cutters.webp
Binary file not shown.
Binary file added assets/img/headers/zimablade-review-hero.webp
Binary file not shown.
Binary file added assets/img/headers/zimaboard-projects-header.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-alan-nagl.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-homelab-hl15.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-jeff-geerling.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-labs-tour.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-mitch-hall.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-signage.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/45drives-storinator-jr.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/45drives-timothy-stewart.webp
Binary file not shown.
Binary file added assets/img/posts/45drives-tom-lawrence.webp
Binary file not shown.
Binary file added assets/img/posts/ansible-k3s-install.webp
Binary file not shown.
Binary file added assets/img/posts/camera-in-my-server-rack.webp
Binary file not shown.
Binary file added assets/img/posts/desk-tour-2023-1.webp
Binary file not shown.
Binary file added assets/img/posts/desk-tour-2023-2.webp
Binary file not shown.
Binary file added assets/img/posts/desk-tour-2023-3.webp
Binary file not shown.
Binary file added assets/img/posts/desk-tour-2023-4.webp
Binary file not shown.
Binary file added assets/img/posts/device-manager-wol.webp
Binary file not shown.
Binary file added assets/img/posts/ecosystem-meme.webp
Binary file not shown.
Binary file added assets/img/posts/ezcoo-switch-back.webp
Binary file not shown.
Binary file added assets/img/posts/ezcoo-switch-connected-usb.webp
Binary file not shown.
Binary file added assets/img/posts/github-create-repo.webp
Binary file not shown.
Binary file added assets/img/posts/github-marketplace-renovate.webp
Binary file not shown.
Binary file added assets/img/posts/ha-nginx-test.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-1.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-2.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-3.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-4.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-5.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-6.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-7.webp
Binary file not shown.
Binary file added assets/img/posts/hl15-review-8.webp
Binary file not shown.
Binary file added assets/img/posts/homepage-dashboard-mine.webp
Binary file not shown.
Binary file added assets/img/posts/i-use-arch-btw.gif
Binary file added assets/img/posts/intel-nuc-internals.webp
Binary file not shown.
Binary file added assets/img/posts/intel-nuc-power-settings.webp
Binary file not shown.
Binary file added assets/img/posts/intel-nuc-rackmount-system.webp
Binary file not shown.
Binary file added assets/img/posts/intel-nuc-stack.webp
Binary file not shown.
Binary file added assets/img/posts/k8s-stateless-apps.webp
Binary file not shown.
Binary file added assets/img/posts/lawn-garden-4-zones.webp
Binary file not shown.
Binary file added assets/img/posts/lawn-garden-manifold.webp
Binary file not shown.
Binary file added assets/img/posts/lawn-garden-sprinkler.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-10.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-12.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-13.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-2.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-4.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-5.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-6.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-7.webp
Binary file not shown.
Binary file added assets/img/posts/mac-studio-rack-8.webp
Binary file not shown.
Binary file added assets/img/posts/macos-wake-on-lan.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-diagram-lan.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-diagram-wlan.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-lte-modem.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-pi-hole.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-plex.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-portainer.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-power-usage.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-proxmox-vms.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-proxmox.webp
Binary file not shown.
Binary file added assets/img/posts/mobile-homelab-wyze-cam.webp
Binary file not shown.
Binary file added assets/img/posts/my-mobile-homelab.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/nginx-demo-site.webp
Binary file not shown.
Binary file added assets/img/posts/nuc-cluster-power-usage.webp
Binary file not shown.
Binary file added assets/img/posts/old-mobile-homelab.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-interface.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-remote-control-menu.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-tesmart-8-port-switch.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-v3-lcd-hello.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-v4-tesmart-1.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-v4-tesmart-2.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-v4-tesmart-3.webp
Binary file not shown.
Binary file added assets/img/posts/pikvm-v4-tesmart-4.gif
Binary file added assets/img/posts/plex-ota-tv-epg.webp
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-flat-antenna.webp
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-library.webp
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-lte-filter.webp
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-mobile.webp
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-ota.webp
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-priority.webp
Binary file not shown.
Binary file added assets/img/posts/plex-ota-tv-show.webp
Binary file not shown.
Loading

0 comments on commit b56c932

Please sign in to comment.