This commit is contained in:
eddie 2024-09-01 19:07:12 -07:00
commit e8cbaa926b
197 changed files with 6736 additions and 0 deletions

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "themes/hugo-theme-console"]
path = themes/hugo-theme-console
url = https://github.com/mrmierzejewski/hugo-theme-console.git

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

8
content/_index.md Normal file
View file

@ -0,0 +1,8 @@
+++
title = 'A System of Figs'
date = 2024-08-29T11:22:59-07:00
draft = false
+++
Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other tech stuff probably.

6
content/about.md Normal file
View file

@ -0,0 +1,6 @@
---
title: "About"
date: "2019-02-28"
---
Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other things.

18
content/contacting-me.md Normal file
View file

@ -0,0 +1,18 @@
+++
title = "Contacts"
description = "Fig.Systems and stuff"
date = "2019-02-28"
aliases = ["about-us"]
author = "Eduardo Figueroa"
+++
#
***
### E-mail
Eduardo_Figueroa@fig.systems
***
#### Seldom used Socials
[@edfig@mastodon.social](https://mastodon.social/@edfig)
[@edfig.bsky.social](https://bsky.app/profile/edfig.bsky.social)

7
content/photos/_index.md Normal file
View file

@ -0,0 +1,7 @@
+++
title = "Photos"
type = "gallery"
+++

View file

@ -0,0 +1,23 @@
+++
title = 'Fantasy Football Draft Tools'
date = 2024-08-29T11:00:43-07:00
draft = false
tags = ['FantasyFootball','Reference']
categories = ['FantasyFootball', 'Reference']
+++
# Draft Kit
[Beer Sheets](https://footballabsurdity.com/draft-sheet-form/) is a tool I found online and everytime I feel like I've gotten good results off of it and good feed back from people I've recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
### Usage
You can go to their main page and just copy over the settings from your league. For examples here's a [direct link](https://footballabsurdity.com/draft-sheet-form/?teams=14&bn=5&qb=1&rb=2&wr=2&rwt=2&patd=6&rutd=6&retd=6&payd=0.04&ruyd=0.1&reyd=0.1&int=-1.0&rec=0.5&fum=-2.0) to the settings my family league is using.
There doesn't seem to be support for PPFD (point per first down) so I just kept it at 1/2 ppr.

7
content/posts/_index.md Normal file
View file

@ -0,0 +1,7 @@
+++
aliases = ["posts", "articles", "blog", "showcase", "docs"]
title = "Posts"
author = "Hugo Authors"
description = "Example posts demonstrating hugo's markup features"
tags = ["index"]
+++

36
content/posts/stack.md Normal file
View file

@ -0,0 +1,36 @@
+++
title = 'Self Hosting'
date = 2024-08-29T10:57:05-07:00
tags = ['server','selfhosted']
categories = ['server', 'selfhosted', 'unraid']
+++
This is just a general overview of what I'm running. Updated sporadically, only includes things I'm actively using or have deployed.
## Networking ##
### In Production ###
* Unifi
* UDM Pro
* 3 APs
* PoE and non-PoE switches
* A certain number and variety of cameras
## Services ##
Self-hosted:
* NGINX Proxy Manager
* [Immich](https://photos.fig.systems). Photo Backup.
* [Paperless-NGX](https://paperless.fig.systems). Document storage
* [Recipes](https://recipes.fig.systems). Recipes I've saved.
* [DokuWiki](https://wiki.fig.systems). Personal wiki.
* [MicroBin](https://bin.fig.systems). "paste bin" share.
* [FreshRSS](https://feeds.fig.systems). RSS agregator
* [Forgejo](https://git.fig.systems). Git repos.
## Cloud ##
Came from an azure shop years ago, current aws. I've had personal items on Oracle and AWS but pulled it all down to this server.

20
hugo.toml Normal file
View file

@ -0,0 +1,20 @@
baseurl = "https://fig.systems"
title = "eddie@fig.systems"
theme = "hugo-theme-console"
languageCode = "en-us"
[params]
# Cutting off the page title to two chars for mobile (console-demo -> co)
titleCutting = true
# Set the animation style -- https://animate.style/
# To disable animations, please remove or comment animationStyle parameter
animateStyle = "animated zoomIn fast"
[[params.navlinks]]
name = "Posts/"
url = "posts/"
[[params.navlinks]]
name = "Contact/"
url = "contacting-me/"

40
layouts/index.html Normal file
View file

@ -0,0 +1,40 @@
{{ define "main" }}
<h1>Fig.Systems</h1>
<p>
{{ with .Site.GetPage "/about" }}
{{ .Content }}
{{ end }}
</p>
<br/>
<h1>Latest posts</h1>
<div class="posts-list">
{{ with .Site.GetPage "/posts" }}
{{ range first 3 (sort .Data.Pages "Date" "desc" (where .Pages ".Params.private" "!=" true))}}
<div class="post">
<p>
<div class="date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>
<h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
{{ .Summary }}
</p>
</div>
{{ end }}
{{ end }}
</div>
<h1>Tags</h1>
{{range $name, $taxonomy := .Site.Taxonomies.tags}} {{ $cnt := .Count }}
{{ with $.Site.GetPage (printf "/tags/%s" $name) }}
<div class="tagbutton">
<a href={{ .RelPermalink }} title="All pages with tag <i>{{$name}}</i>">{{$name}}</a>
<sup>{{$cnt}}</sup>
</div>
{{end}}
{{end}}
{{ end }}

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,5 @@
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>

View file

@ -0,0 +1 @@
<!-- Keep - override to add code to <header /> tag -->

View file

@ -0,0 +1,49 @@
<meta property="og:title" content="{{ .Title }}" />
<meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" />
<meta property="og:url" content="{{ .Permalink }}" />
{{- with .Params.image }}
{{ $image := $.Resources.GetMatch . }}
{{ with $image }}
{{ $thumb := .Resize "400x" }}
<meta property="og:image" content="{{ $thumb.Permalink }}">
{{ end }}
{{ end }}
{{- $iso8601 := "2006-01-02T15:04:05-07:00" -}}
{{- if .IsPage }}
{{- if not .PublishDate.IsZero }}<meta property="article:published_time" {{ .PublishDate.Format $iso8601 | printf "content=%q" | safeHTMLAttr }} />
{{ else if not .Date.IsZero }}<meta property="article:published_time" {{ .Date.Format $iso8601 | printf "content=%q" | safeHTMLAttr }} />
{{ end }}
{{- end }}{{/* .IsPage */}}
{{- with .Params.audio }}<meta property="og:audio" content="{{ . }}" />{{ end }}
{{- with .Params.locale }}<meta property="og:locale" content="{{ . }}" />{{ end }}
{{- with .Site.Params.title }}<meta property="og:site_name" content="{{ . }}" />{{ end }}
{{- with .Params.videos }}
{{- range . }}
<meta property="og:video" content="{{ . | absURL }}" />
{{ end }}{{ end }}
{{- /* If it is part of a series, link to related articles */}}
{{- $permalink := .Permalink }}
{{- $siteSeries := .Site.Taxonomies.series }}{{ with .Params.series }}
{{- range $name := . }}
{{- $series := index $siteSeries $name }}
{{- range $page := first 6 $series.Pages }}
{{- if ne $page.Permalink $permalink }}<meta property="og:see_also" content="{{ $page.Permalink }}" />{{ end }}
{{- end }}
{{ end }}{{ end }}
{{- if .IsPage }}
{{- range .Site.Authors }}{{ with .Social.facebook }}
<meta property="article:author" content="https://www.facebook.com/{{ . }}" />{{ end }}{{ with .Site.Social.facebook }}
<meta property="article:publisher" content="https://www.facebook.com/{{ . }}" />{{ end }}
<meta property="article:section" content="{{ .Section }}" />
{{- with .Params.tags }}{{ range first 6 . }}
<meta property="article:tag" content="{{ . }}" />{{ end }}{{ end }}
{{- end }}{{ end }}
{{- /* Facebook Page Admin ID for Domain Insights */}}
{{- with .Site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}

View file

@ -0,0 +1,19 @@
{{- with .Params.image }}
{{ $image := $.Resources.GetMatch . }}
{{ with $image }}
{{ $thumb := .Resize "400x" }}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ $thumb.Permalink }}">
{{ end }}
{{ end }}
<meta name="twitter:title" content="{{ .Title }}"/>
<meta name="twitter:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end -}}"/>
{{ with .Site.Social.twitter -}}
<meta name="twitter:site" content="@{{ . }}"/>
{{ end -}}
{{ range .Site.Authors }}
{{ with .twitter -}}
<meta name="twitter:creator" content="@{{ . }}"/>
{{ end -}}
{{ end -}}

66
public/404.html Normal file
View file

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/404.html</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="404 Page not found" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/404.html" />
<meta name="twitter:title" content="404 Page not found"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/404.html'>404.html</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Page not found</h1>
<p><a href="http://10.0.0.51:1313/">Return to the home page</a>.</p>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://10.0.0.51:1313/about/</title>
<link rel="canonical" href="http://10.0.0.51:1313/about/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/about/">
</head>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://10.0.0.51:1313/contacting-me/</title>
<link rel="canonical" href="http://10.0.0.51:1313/contacting-me/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/contacting-me/">
</head>
</html>

68
public/about/index.html Normal file
View file

@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/about/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="About" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/about/" /><meta property="article:published_time" content="2019-02-28T00:00:00+00:00" />
<meta name="twitter:title" content="About"/>
<meta name="twitter:description" content="Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other things."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/about'>about</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>About</h1>
<p>Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other things.</p>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

0
public/admin/config.yml Normal file
View file

0
public/admin/index.html Normal file
View file

View file

@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/archives/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/archives/" /><meta property="article:published_time" content="2019-05-28T00:00:00+00:00" />
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Archives stuff"/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/archives'>archives</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/about/" typeof="ListItem">about/</a></li>
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">posts/</a></li>
<li><a href="http://10.0.0.51:1313/photos/" typeof="ListItem">photos/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1></h1>
<p>Archives stuff</p>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://10.0.0.51:1313/posts/</title>
<link rel="canonical" href="http://10.0.0.51:1313/posts/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/posts/">
</head>
</html>

10
public/blog/index.html Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://10.0.0.51:1313/posts/</title>
<link rel="canonical" href="http://10.0.0.51:1313/posts/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/posts/">
</head>
</html>

View file

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/categories/fantasyfootball/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/categories/fantasyfootball/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="FantasyFootball" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/categories/fantasyfootball/" />
<meta name="twitter:title" content="FantasyFootball"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/categories'>categories</a>/<a href='http://10.0.0.51:1313/categories/fantasyfootball'>fantasyfootball</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>FantasyFootball</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/projects/ffb/" title="Fantasy Football Draft Tools">Fantasy Football Draft Tools</a></h1>
Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
Usage You can go to their main page and just copy over the settings from your league.
</p>
</div>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>FantasyFootball on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/categories/fantasyfootball/</link>
<description>Recent content in FantasyFootball on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 11:00:43 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/categories/fantasyfootball/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Fantasy Football Draft Tools</title>
<link>http://10.0.0.51:1313/posts/projects/ffb/</link>
<pubDate>Thu, 29 Aug 2024 11:00:43 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/projects/ffb/</guid>
<description>Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&amp;rsquo;ve gotten good results off of it and good feed back from people I&amp;rsquo;ve recommneded it to.&#xA;The original creator moved on from the site this year but it was taken over by his team so it should still reliable.&#xA;Usage You can go to their main page and just copy over the settings from your league.</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,124 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/categories/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/categories/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="Categories" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/categories/" />
<meta name="twitter:title" content="Categories"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/categories'>categories</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Categories</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/categories/fantasyfootball/" title="FantasyFootball">FantasyFootball</a></h1>
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/categories/reference/" title="Reference">Reference</a></h1>
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/categories/selfhosted/" title="Selfhosted">Selfhosted</a></h1>
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/categories/server/" title="Server">Server</a></h1>
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/categories/unraid/" title="Unraid">Unraid</a></h1>
</p>
</div>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/categories/</link>
<description>Recent content in Categories on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 11:00:43 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>FantasyFootball</title>
<link>http://10.0.0.51:1313/categories/fantasyfootball/</link>
<pubDate>Thu, 29 Aug 2024 11:00:43 -0700</pubDate>
<guid>http://10.0.0.51:1313/categories/fantasyfootball/</guid>
<description></description>
</item>
<item>
<title>Reference</title>
<link>http://10.0.0.51:1313/categories/reference/</link>
<pubDate>Thu, 29 Aug 2024 11:00:43 -0700</pubDate>
<guid>http://10.0.0.51:1313/categories/reference/</guid>
<description></description>
</item>
<item>
<title>Selfhosted</title>
<link>http://10.0.0.51:1313/categories/selfhosted/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/categories/selfhosted/</guid>
<description></description>
</item>
<item>
<title>Server</title>
<link>http://10.0.0.51:1313/categories/server/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/categories/server/</guid>
<description></description>
</item>
<item>
<title>Unraid</title>
<link>http://10.0.0.51:1313/categories/unraid/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/categories/unraid/</guid>
<description></description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/categories/reference/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/categories/reference/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="Reference" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/categories/reference/" />
<meta name="twitter:title" content="Reference"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/categories'>categories</a>/<a href='http://10.0.0.51:1313/categories/reference'>reference</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Reference</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/projects/ffb/" title="Fantasy Football Draft Tools">Fantasy Football Draft Tools</a></h1>
Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
Usage You can go to their main page and just copy over the settings from your league.
</p>
</div>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Reference on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/categories/reference/</link>
<description>Recent content in Reference on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 11:00:43 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/categories/reference/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Fantasy Football Draft Tools</title>
<link>http://10.0.0.51:1313/posts/projects/ffb/</link>
<pubDate>Thu, 29 Aug 2024 11:00:43 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/projects/ffb/</guid>
<description>Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&amp;rsquo;ve gotten good results off of it and good feed back from people I&amp;rsquo;ve recommneded it to.&#xA;The original creator moved on from the site this year but it was taken over by his team so it should still reliable.&#xA;Usage You can go to their main page and just copy over the settings from your league.</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/categories/selfhosted/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/categories/selfhosted/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="Selfhosted" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/categories/selfhosted/" />
<meta name="twitter:title" content="Selfhosted"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/categories'>categories</a>/<a href='http://10.0.0.51:1313/categories/selfhosted'>selfhosted</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Selfhosted</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/stack/" title="Self Hosting">Self Hosting</a></h1>
This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.
Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:
NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &ldquo;paste bin&rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.
</p>
</div>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Selfhosted on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/categories/selfhosted/</link>
<description>Recent content in Selfhosted on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 10:57:05 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/categories/selfhosted/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Self Hosting</title>
<link>http://10.0.0.51:1313/posts/stack/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/stack/</guid>
<description>This is just a general overview of what I&amp;rsquo;m running. Updated sporadically, only includes things I&amp;rsquo;m actively using or have deployed.&#xA;Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:&#xA;NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&amp;rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &amp;ldquo;paste bin&amp;rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/categories/server/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/categories/server/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="Server" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/categories/server/" />
<meta name="twitter:title" content="Server"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/categories'>categories</a>/<a href='http://10.0.0.51:1313/categories/server'>server</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Server</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/stack/" title="Self Hosting">Self Hosting</a></h1>
This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.
Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:
NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &ldquo;paste bin&rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.
</p>
</div>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Server on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/categories/server/</link>
<description>Recent content in Server on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 10:57:05 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/categories/server/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Self Hosting</title>
<link>http://10.0.0.51:1313/posts/stack/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/stack/</guid>
<description>This is just a general overview of what I&amp;rsquo;m running. Updated sporadically, only includes things I&amp;rsquo;m actively using or have deployed.&#xA;Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:&#xA;NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&amp;rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &amp;ldquo;paste bin&amp;rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/categories/unraid/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/categories/unraid/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="Unraid" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/categories/unraid/" />
<meta name="twitter:title" content="Unraid"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/categories'>categories</a>/<a href='http://10.0.0.51:1313/categories/unraid'>unraid</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Unraid</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/stack/" title="Self Hosting">Self Hosting</a></h1>
This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.
Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:
NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &ldquo;paste bin&rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.
</p>
</div>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Unraid on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/categories/unraid/</link>
<description>Recent content in Unraid on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 10:57:05 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/categories/unraid/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Self Hosting</title>
<link>http://10.0.0.51:1313/posts/stack/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/stack/</guid>
<description>This is just a general overview of what I&amp;rsquo;m running. Updated sporadically, only includes things I&amp;rsquo;m actively using or have deployed.&#xA;Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:&#xA;NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&amp;rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &amp;ldquo;paste bin&amp;rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.</description>
</item>
</channel>
</rss>

10
public/contact/index.html Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://10.0.0.51:1313/about/</title>
<link rel="canonical" href="http://10.0.0.51:1313/about/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/about/">
</head>
</html>

View file

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/contacting-me/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="Contacts" />
<meta property="og:description" content="Fig.Systems and stuff" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/contacting-me/" /><meta property="article:published_time" content="2019-02-28T00:00:00+00:00" />
<meta name="twitter:title" content="Contacts"/>
<meta name="twitter:description" content="Fig.Systems and stuff"/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/contacting-me'>contacting-me</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Contacts</h1>
<h1 id="heading"></h1>
<hr>
<h3 id="e-mail">E-mail</h3>
<p><a href="mailto:Eduardo_Figueroa@fig.systems">Eduardo_Figueroa@fig.systems</a></p>
<hr>
<h4 id="seldom-used-socials">Seldom used Socials</h4>
<p><a href="https://mastodon.social/@edfig">@edfig@mastodon.social</a></p>
<p><a href="https://bsky.app/profile/edfig.bsky.social">@edfig.bsky.social</a></p>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

26
public/css/about.css Normal file
View file

@ -0,0 +1,26 @@
/* About/bio section */
.about__logo {
height: 1.5rem;
}
.about__title {
display: inline;
vertical-align: top;
}
.about__title::before {
content: none;
}
/* Social media links */
.aside__social-links {
padding: 0;
}
.aside__social-links li {
display: inline-block;
}
.aside__social-links li::marker {
content: none;
}

17
public/css/colours.css Normal file
View file

@ -0,0 +1,17 @@
:root {
/* Background */
--bg: var(--base00);
--off-bg: var(--base01);
--inner-bg: var(--base02);
/* Text */
--fg: var(--base05);
--off-fg: var(--base04);
--muted: var(--base03);
--link: var(--base0D);
--hover: var(--base0C);
--highlight: var(--base0A);
/* Logo */
--logo: var(--base0B);
}

1
public/css/custom.css Normal file
View file

@ -0,0 +1 @@
/* Override this file to customise the theme's CSS for your site */

7
public/css/footer.css Normal file
View file

@ -0,0 +1,7 @@
.page__footer {
color: var(--off-fg);
}
.page__footer p {
margin: 0;
}

20
public/css/header.css Normal file
View file

@ -0,0 +1,20 @@
/* Main menu */
.main-nav ul {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
margin: 0;
padding: 0 0 0.25rem 0;
gap: 0rem 1.5rem;
}
.main-nav li {
padding-top: 0.25rem;
margin-left: 1rem;
text-transform: lowercase;
}
.main-nav li::marker {
content: "./";
}

62
public/css/layout.css Normal file
View file

@ -0,0 +1,62 @@
/* 1rem = 16px by default */
.page {
max-width: 64rem;
margin: 1rem auto;
display: grid;
grid-template-areas:
"header"
"body"
"aside"
"footer";
grid-template-columns: minmax(0, 1fr); /* https://css-tricks.com/preventing-a-grid-blowout/ */
grid-row-gap: 2rem;
}
@media (min-width: 45rem) {
.page {
grid-template-areas:
"header header"
"body aside"
"footer footer";
grid-template-columns: minmax(0, 1fr) 15rem;
grid-column-gap: 2rem;
}
}
/* Header */
.page__header {
grid-area: header;
display: flex;
}
.page__logo {
flex-shrink: 0;
}
.page__nav {
flex-grow: 1;
}
/* Body + aside */
.page__body {
grid-area: body;
background-color: var(--off-bg);
box-shadow: 0 0 0 1rem var(--off-bg);
overflow-wrap: break-word;
}
.page__aside {
grid-area: aside;
color: var(--off-fg);
position: sticky;
top: 1rem;
right: 1rem;
overflow-y: auto;
max-height: 95vh;
}
/* Footer */
.page__footer {
grid-area: footer;
}

37
public/css/logo.css Normal file
View file

@ -0,0 +1,37 @@
.page__logo {
padding: 0;
margin: 0;
font-weight: inherit;
color: var(--bg);
}
.page__logo:before {
content: none;
}
.page__logo-inner {
display: block;
background: var(--logo);
opacity: 0.90;
padding: 0.25rem;
}
a.page__logo-inner:link, a.page__logo-inner:visited {
color: inherit;
text-decoration: inherit;
}
a.page__logo-inner:hover,
a.page__logo-inner:active {
opacity: 1;
}
.page__logo-inner:before {
content: "[";
color: var(--bg);
}
.page__logo-inner:after {
content: "] $";
color: var(--bg);
}

View file

@ -0,0 +1,20 @@
/* Apprentice by romainl */
:root {
--base00: #262626;
--base01: #AF5F5F;
--base02: #5F875F;
--base03: #87875F;
--base04: #5F87AF;
--base05: #5F5F87;
--base06: #5F8787;
--base07: #6C6C6C;
--base08: #444444;
--base09: #FF8700;
--base0A: #87AF87;
--base0B: #FFFFAF;
--base0C: #87AFD7;
--base0D: #8787AF;
--base0E: #5FAFAF;
--base0F: #BCBCBC;
}

View file

@ -0,0 +1,22 @@
/* base16 default dark
* https://github.com/chriskempson/base16-default-schemes
*/
:root {
--base00: #181818;
--base01: #282828;
--base02: #383838;
--base03: #585858;
--base04: #b8b8b8;
--base05: #d8d8d8;
--base06: #e8e8e8;
--base07: #f8f8f8;
--base08: #ab4642;
--base09: #dc9656;
--base0A: #f7ca88;
--base0B: #a1b56c;
--base0C: #86c1b9;
--base0D: #7cafc2;
--base0E: #ba8baf;
--base0F: #a16946;
}

View file

@ -0,0 +1,22 @@
/* base16 default light
* https://github.com/chriskempson/base16-default-schemes
*/
:root {
--base00: #f8f8f8;
--base01: #e8e8e8;
--base02: #d8d8d8;
--base03: #b8b8b8;
--base04: #585858;
--base05: #383838;
--base06: #282828;
--base07: #181818;
--base08: #ab4642;
--base09: #dc9656;
--base0A: #f7ca88;
--base0B: #a1b56c;
--base0C: #86c1b9;
--base0D: #7cafc2;
--base0E: #ba8baf;
--base0F: #a16946;
}

View file

@ -0,0 +1,20 @@
/* Dracula by Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) */
:root {
--base00: #282936;
--base01: #3a3c4e;
--base02: #4d4f68;
--base03: #626483;
--base04: #62d6e8;
--base05: #e9e9f4;
--base06: #f1f2f8;
--base07: #f7f7fb;
--base08: #ea51b2;
--base09: #b45bcf;
--base0A: #00f769;
--base0B: #ebff87;
--base0C: #a1efe4;
--base0D: #62d6e8;
--base0E: #b45bcf;
--base0F: #00f769;
}

View file

@ -0,0 +1,23 @@
/* gruvbox dark
* https://github.com/morhetz/gruvbox
* base16: https://github.com/dawikur/base16-gruvbox-scheme
*/
:root {
--base00: #282828;
--base01: #3c3836;
--base02: #504945;
--base03: #665c54;
--base04: #bdae93;
--base05: #d5c4a1;
--base06: #ebdbb2;
--base07: #fbf1c7;
--base08: #fb4934;
--base09: #fe8019;
--base0A: #fabd2f;
--base0B: #b8bb26;
--base0C: #8ec07c;
--base0D: #83a598;
--base0E: #d3869b;
--base0F: #d65d0e;
}

View file

@ -0,0 +1,23 @@
/* gruvbox light
* https://github.com/morhetz/gruvbox
* base16: https://github.com/dawikur/base16-gruvbox-scheme
*/
:root {
--base00: #fbf1c7;
--base01: #ebdbb2;
--base02: #d5c4a1;
--base03: #bdae93;
--base04: #665c54;
--base05: #504945;
--base06: #3c3836;
--base07: #282828;
--base08: #9d0006;
--base09: #af3a03;
--base0A: #b57614;
--base0B: #79740e;
--base0C: #427b58;
--base0D: #076678;
--base0E: #8f3f71;
--base0F: #d65d0e;
}

View file

@ -0,0 +1,20 @@
/* Material by Nate Peterson */
:root {
--base00: #263238;
--base01: #2E3C43;
--base02: #314549;
--base03: #546E7A;
--base04: #B2CCD6;
--base05: #EEFFFF;
--base06: #EEFFFF;
--base07: #FFFFFF;
--base08: #F07178;
--base09: #F78C6C;
--base0A: #FFCB6B;
--base0B: #C3E88D;
--base0C: #89DDFF;
--base0D: #82AAFF;
--base0E: #C792EA;
--base0F: #FF5370;
}

View file

@ -0,0 +1,20 @@
/* PaperColor Dark by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */
:root {
--base00: #1c1c1c;
--base01: #af005f;
--base02: #5faf00;
--base03: #d7af5f;
--base04: #5fafd7;
--base05: #808080;
--base06: #d7875f;
--base07: #d0d0d0;
--base08: #585858;
--base09: #5faf5f;
--base0A: #afd700;
--base0B: #af87d7;
--base0C: #ffaf00;
--base0D: #ff5faf;
--base0E: #00afaf;
--base0F: #5f8787;
}

View file

@ -0,0 +1,20 @@
/* PaperColor Light by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */
:root {
--base00: #eeeeee;
--base01: #af0000;
--base02: #008700;
--base03: #5f8700;
--base04: #0087af;
--base05: #444444;
--base06: #005f87;
--base07: #878787;
--base08: #bcbcbc;
--base09: #d70000;
--base0A: #d70087;
--base0B: #8700af;
--base0C: #d75f00;
--base0D: #d75f00;
--base0E: #005faf;
--base0F: #005f87;
}

View file

@ -0,0 +1,20 @@
/* Solarized Dark by Ethan Schoonover (modified by aramisgithub) */
:root {
--base00: #002b36;
--base01: #073642;
--base02: #586e75;
--base03: #657b83;
--base04: #839496;
--base05: #93a1a1;
--base06: #eee8d5;
--base07: #fdf6e3;
--base08: #dc322f;
--base09: #cb4b16;
--base0A: #b58900;
--base0B: #859900;
--base0C: #2aa198;
--base0D: #268bd2;
--base0E: #6c71c4;
--base0F: #d33682;
}

View file

@ -0,0 +1,20 @@
/* Solarized Light by Ethan Schoonover (modified by aramisgithub) */
:root {
--base00: #fdf6e3;
--base01: #eee8d5;
--base02: #93a1a1;
--base03: #839496;
--base04: #657b83;
--base05: #586e75;
--base06: #073642;
--base07: #002b36;
--base08: #dc322f;
--base09: #cb4b16;
--base0A: #b58900;
--base0B: #859900;
--base0C: #2aa198;
--base0D: #268bd2;
--base0E: #6c71c4;
--base0F: #d33682;
}

View file

@ -0,0 +1,20 @@
/* tender by Jacobo Tabernero (https://github/com/jacoborus/tender.vim) */
:root {
--base00: #282828;
--base01: #383838;
--base02: #484848;
--base03: #4c4c4c;
--base04: #b8b8b8;
--base05: #eeeeee;
--base06: #e8e8e8;
--base07: #feffff;
--base08: #f43753;
--base09: #dc9656;
--base0A: #ffc24b;
--base0B: #c9d05c;
--base0C: #73cef4;
--base0D: #b3deef;
--base0E: #d3b987;
--base0F: #a16946;
}

View file

@ -0,0 +1,20 @@
/* Tokyo Night Dark by Michaël Ball */
:root {
--base00: #1A1B26;
--base01: #16161E;
--base02: #2F3549;
--base03: #444B6A;
--base04: #787C99;
--base05: #A9B1D6;
--base06: #CBCCD1;
--base07: #D5D6DB;
--base08: #C0CAF5;
--base09: #A9B1D6;
--base0A: #0DB9D7;
--base0B: #9ECE6A;
--base0C: #B4F9F8;
--base0D: #2AC3DE;
--base0E: #BB9AF7;
--base0F: #F7768E;
}

View file

@ -0,0 +1,20 @@
/* Tokyo Night Light by Michaël Ball */
:root {
--base00: #D5D6DB;
--base01: #CBCCD1;
--base02: #DFE0E5;
--base03: #9699A3;
--base04: #4C505E;
--base05: #343B59;
--base06: #1A1B26;
--base07: #1A1B26;
--base08: #343B58;
--base09: #965027;
--base0A: #166775;
--base0B: #485E30;
--base0C: #3E6968;
--base0D: #34548A;
--base0E: #5A4A78;
--base0F: #8C4351;
}

View file

@ -0,0 +1,20 @@
/* Windows 95 Light by Fergus Collins (https://github.com/C-Fergus) */
:root {
--base00: #fcfcfc;
--base01: #e0e0e0;
--base02: #c4c4c4;
--base03: #a8a8a8;
--base04: #7e7e7e;
--base05: #545454;
--base06: #2a2a2a;
--base07: #000000;
--base08: #a80000;
--base09: #fcfc54;
--base0A: #a85400;
--base0B: #00a800;
--base0C: #00a8a8;
--base0D: #0000a8;
--base0E: #a800a8;
--base0F: #54fc54;
}

View file

@ -0,0 +1,20 @@
/* Windows 95 by Fergus Collins (https://github.com/C-Fergus) */
:root {
--base00: #000000;
--base01: #1C1C1C;
--base02: #383838;
--base03: #545454;
--base04: #7e7e7e;
--base05: #a8a8a8;
--base06: #d2d2d2;
--base07: #fcfcfc;
--base08: #fc5454;
--base09: #a85400;
--base0A: #fcfc54;
--base0B: #54fc54;
--base0C: #54fcfc;
--base0D: #5454fc;
--base0E: #fc54fc;
--base0F: #00a800;
}

12
public/css/risotto.css Normal file
View file

@ -0,0 +1,12 @@
@import 'colours.css';
@import 'typography.css';
@import 'layout.css';
@import 'header.css';
@import 'logo.css';
@import 'about.css';
@import 'footer.css';
body {
background-color: var(--bg);
color: var(--fg);
}

255
public/css/typography.css Normal file
View file

@ -0,0 +1,255 @@
/* Fonts */
:root {
--font-monospace: "Fira Mono", monospace;
}
body {
font-family: var(--font-monospace);
font-size: 16px;
line-height: 1.5rem;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 1rem;
margin: 1.5rem 0 0 0;
font-weight: 600;
}
h1+h2,
h1+h3,
h1+h4,
h1+h5,
h1+h6,
h2+h3,
h2+h4,
h2+h5,
h2+h6,
h3+h4,
h3+h5,
h3+h6,
h4+h5,
h4+h6,
h5+h6 {
margin: 0;
}
h1:before { content: "# "; }
h2:before { content: "## "; }
h3:before { content: "### "; }
h4:before { content: "#### "; }
h5:before { content: "##### "; }
h6:before { content: "###### "; }
h1:before,
h2:before,
h3:before,
h4:before,
h5:before,
h6:before {
color: var(--muted);
}
h1:first-child {
margin-top: 0;
}
/* Paragraphs */
p {
margin: 0 0 1.5rem 0;
}
/* Links */
a:link, a:visited {
color: var(--link);
}
a:hover, a:active, a.active {
color: var(--hover);
}
/* Lists */
ul {
margin: 0 0 1.5rem 0;
padding-left: 1.25rem;
}
ol {
margin: 0 0 1.5rem 0;
padding-left: 1.75rem;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin: 0;
}
ul li::marker {
content: '\00A0';
color: var(--muted);
}
ol li::marker {
color: var(--muted);
}
dt {
margin: 0;
font-weight: bold;
}
dd {
margin: 0 0 0 1.5rem;
font-style: italic;
}
dd + dt {
margin-top: 1.5rem;
}
dl {
margin: 0 0 1.5rem 0;
}
/* Blockquotes */
blockquote {
position: relative;
margin: 0 0 1.5rem 1.5rem;
}
blockquote::before {
position: absolute;
left: -1.5rem;
content: ">";
color: var(--muted);
}
.twitter-tweet::before {
content: "\f099";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
/* Code */
pre,
code,
kbd,
samp {
background: var(--inner-bg) !important;
font-family: var(--font-monospace);
color: var(--off-fg);
}
pre {
overflow-x: auto;
padding: 1.5rem;
margin: 0 0 1.5rem 0;
}
/* Fix overflow when config markup.highlight.lineNos is true */
/* See https://github.com/joeroe/risotto/issues/41 */
.highlight div {
overflow-x: auto;
}
/* Emphasis */
b,
strong {
font-weight: 600;
}
/* Highlighting */
::selection,
mark {
background-color: var(--highlight);
color: var(--bg);
}
/* Other typographic elements */
hr {
border: 0;
margin-bottom: 1.5rem;
}
hr:after {
content: '---';
color: var(--muted);
}
/* Prevent super/sub from affecting line height */
sup, sub {
vertical-align: baseline;
position: relative;
top: -0.25rem;
font-size: unset;
}
sub {
top: 0.25rem;
}
/* Tables */
table {
border-spacing: 0;
margin: 0 0 1.5rem 0;
overflow-wrap: anywhere;
}
th, td {
padding: 0 .75rem;
vertical-align: top;
}
th:first-child, td:first-child {
padding-left: 0;
}
th {
text-align: inherit;
}
/* Figures */
img {
max-width: 100%;
height: auto;
}
/* Colour classes */
.base00 { color: var(--base00); }
.base01 { color: var(--base01); }
.base02 { color: var(--base02); }
.base03 { color: var(--base03); }
.base04 { color: var(--base04); }
.base05 { color: var(--base05); }
.base06 { color: var(--base06); }
.base07 { color: var(--base07); }
.base08 { color: var(--base08); }
.base09 { color: var(--base09); }
.base0A { color: var(--base0A); }
.base0B { color: var(--base0B); }
.base0C { color: var(--base0C); }
.base0D { color: var(--base0D); }
.base0E { color: var(--base0E); }
.base0F { color: var(--base0F); }
.bg-base00 { background-color: var(--base00); }
.bg-base01 { background-color: var(--base01); }
.bg-base02 { background-color: var(--base02); }
.bg-base03 { background-color: var(--base03); }
.bg-base04 { background-color: var(--base04); }
.bg-base05 { background-color: var(--base05); }
.bg-base06 { background-color: var(--base06); }
.bg-base07 { background-color: var(--base07); }
.bg-base08 { background-color: var(--base08); }
.bg-base09 { background-color: var(--base09); }
.bg-base0A { background-color: var(--base0A); }
.bg-base0B { background-color: var(--base0B); }
.bg-base0C { background-color: var(--base0C); }
.bg-base0D { background-color: var(--base0D); }
.bg-base0E { background-color: var(--base0E); }
.bg-base0F { background-color: var(--base0F); }

10
public/docs/index.html Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>http://10.0.0.51:1313/posts/</title>
<link rel="canonical" href="http://10.0.0.51:1313/posts/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/posts/">
</head>
</html>

10
public/en/index.html Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>http://10.0.0.51:1313/</title>
<link rel="canonical" href="http://10.0.0.51:1313/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://10.0.0.51:1313/">
</head>
</html>

89
public/en/sitemap.xml Normal file
View file

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://10.0.0.51:1313/about/</loc>
<lastmod>2024-08-29T11:22:59-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/</loc>
<lastmod>2024-08-29T11:22:59-07:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="pt-BR"
href="http://10.0.0.51:1313/pt/"
/>
<xhtml:link
rel="alternate"
hreflang="en-US"
href="http://10.0.0.51:1313/"
/>
</url><url>
<loc>http://10.0.0.51:1313/categories/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="pt-BR"
href="http://10.0.0.51:1313/pt/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="en-US"
href="http://10.0.0.51:1313/categories/"
/>
</url><url>
<loc>http://10.0.0.51:1313/tags/fantasyfootball/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/categories/fantasyfootball/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/posts/ffb/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/posts/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/tags/reference/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/categories/reference/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/tags/</loc>
<lastmod>2024-08-29T11:00:43-07:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="pt-BR"
href="http://10.0.0.51:1313/pt/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="en-US"
href="http://10.0.0.51:1313/tags/"
/>
</url><url>
<loc>http://10.0.0.51:1313/posts/first/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/tags/selfhosted/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/categories/selfhosted/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/tags/server/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/categories/server/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/posts/stack/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/posts/test/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url><url>
<loc>http://10.0.0.51:1313/categories/unraid/</loc>
<lastmod>2024-08-29T10:57:05-07:00</lastmod>
</url>
</urlset>

137
public/ffb/index.html Normal file
View file

@ -0,0 +1,137 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><title>FFB &ndash; risotto demo</title>
<meta name="description" content="A [hugo](https://gohugo.io) theme inspired by terminal ricing.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.4/css/academicons.min.css" integrity="sha512-IW0nhlW5MgNydsXJO40En2EoCkTTjZhI3yuODrZIc8cQ4h1XcF53PsqDHa09NqnkXuIe0Oiyyj171BqZFwISBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="http://10.0.0.51:1313/css/palettes/base16-dark.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/css/risotto.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/css/custom.css">
</head>
<body>
<div class="page">
<header class="page__header"><nav class="page__nav main-nav">
<ul>
<h1 class="page__logo"><a href="http://10.0.0.51:1313/" class="page__logo-inner">risotto demo</a></h1>
<li class="main-nav__item"><a class="nav-main-item" href="http://10.0.0.51:1313/about/" title="">About</a></li>
<li class="main-nav__item"><a class="nav-main-item" href="http://10.0.0.51:1313/posts/" title="Posts">Posts</a></li>
</ul>
</nav>
</header>
<section class="page__body">
<header class="content__header">
<h1>FFB</h1>
</header>
<div class="content__body">
<h1 id="draft-kit">Draft Kit</h1>
<p><a href="https://footballabsurdity.com/draft-sheet-form/">Beer Sheets</a> is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.</p>
<p>The original creator moved on from the site this year but it was taken over by his team so it should still reliable.</p>
<h3 id="usage">Usage</h3>
<p>You can go to their main page and just copy over the settings from your league. For examples here&rsquo;s a <a href="https://footballabsurdity.com/draft-sheet-form/?teams=14&amp;bn=5&amp;qb=1&amp;rb=2&amp;wr=2&amp;rwt=2&amp;patd=6&amp;rutd=6&amp;retd=6&amp;payd=0.04&amp;ruyd=0.1&amp;reyd=0.1&amp;int=-1.0&amp;rec=0.5&amp;fum=-2.0">direct link</a> to the settings my family league is using.</p>
<p>There doesn&rsquo;t seem to be support for PPFD (point per first down) so I just kept it at 1/2 ppr.</p>
</div>
<footer class="content__footer"></footer>
</section>
<section class="page__aside">
<div class="aside__about">
<div class="aside__about">
<img class="about__logo" src="http://10.0.0.51:1313/%F0%9F%8D%9A" alt="Logo">
<h1 class="about__title">risotto</h1>
<p class="about__description">A <a href="https://gohugo.io">hugo</a> theme inspired by terminal ricing.</p>
</div>
<ul class="aside__social-links">
<li>
<a href="https://github.com/joeroe/risotto" rel="me" aria-label="GitHub" title="GitHub"><i class="fa-brands fa-github" aria-hidden="true"></i></a>&nbsp;
</li>
<li>
<a href="mailto:example@example.com" rel="me" aria-label="Email" title="Email"><i class="fa-solid fa-envelope" aria-hidden="true"></i></a>&nbsp;
</li>
<li>
<a href="https://orcid.org/0000-0001-2345-6789" rel="me" aria-label="ORCID" title="ORCID"><i class="ai ai-orcid" aria-hidden="true"></i></a>&nbsp;
</li>
</ul>
</div>
<hr>
<div class="aside__content">
<p>
2024-08-29
</p>
</div>
</section>
<footer class="page__footer"><p>
<br/><span class="active">$ echo $LANG<br/><b></b></span><br/>
</p>
<br /><br />
<p class="copyright">© <a href="https://joeroe.io">Joe Roe</a> &amp; <a href="https://github.com/joeroe/risotto/graphs/contributors">risotto contributors</a>.</p>
<p class="advertisement">Powered by <a href="https://gohugo.io/">hugo</a> and <a href="https://github.com/joeroe/risotto">risotto</a>.</p>
</footer>
</div>
</body>
</html>

1
public/herman.min.css vendored Normal file
View file

@ -0,0 +1 @@
:root{font-size:62.5%;--color-dark:#181a20;--color-light:#fafafa;--color-primary:#1a8fe3;--size:1rem;--spacing:calc(var(--size) * 2.4)}body{background:var(--color-dark);color:var(--color-light);padding:4rem;font-family:Avenir,avenir next lt pro,Montserrat,Corbel,urw gothic,source-sans-pro,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-size:calc(var(--size) * 1.8);line-height:1.5;min-height:80vh;max-width:1600px;margin:0 auto;word-wrap:break-word}header,main,footer{max-width:70ch;margin-inline:auto}header{padding-bottom:var(--spacing)}nav a,a.blog-tags{margin-right:calc(var(--spacing)/2)}a.blog-tags{line-height:2}main{padding-bottom:var(--spacing)}footer{text-align:center;padding-top:var(--spacing)}a{color:currentColor;text-decoration-color:var(--color-primary);text-decoration-thickness:.3ex;text-underline-offset:.3ex}a:hover{text-decoration-thickness:.4ex}img{display:block;max-width:100%;height:auto}h1,h2,h3,h4{font-weight:700;line-height:1.3}h1{font-size:calc(var(--size) * 4.2)}h2{font-size:calc(var(--size) * 3.4)}h3{font-size:calc(var(--size) * 2.6)}h4{font-size:calc(var(--size) * 1.8)}ul,ol{padding-inline-start:var(--spacing)}li{margin-block-start:var(--spacing)}blockquote{padding-inline-start:var(--spacing);border-inline-start:.2em solid;font-style:italic;max-width:50ch}:is(h1,h2,h3,h4,blockquote){margin-block-end:calc(var(--spacing)/2)}:is(h1,h2,h3,h4)+*{margin-block-start:calc(var(--spacing)/3)}:is(h1,h2,h3,h4)+:where(h2,h3,h4){margin-block-start:calc(var(--spacing) * 2)}.title{text-decoration:none}.title h1{font-size:calc(var(--size) * 3.4);margin-top:calc(var(--spacing)/2)}ul.blog-posts{list-style-type:none;padding:unset}ul.blog-posts li{display:flex;flex-direction:column}ul.blog-posts li span{min-width:11ch}p.byline{opacity:.5}code{font-family:ui-monospace,cascadia code,source code pro,Menlo,Consolas,dejavu sans mono,monospace;padding:2px calc(var(--spacing)/4);background-color:#282a36;font-size:calc(var(--size) * 1.4)}pre code{display:block;padding:var(--spacing);overflow-x:auto;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}table{width:100%}table,th,td{border:1px solid;border-collapse:collapse;border-color:var(--color-light);padding:calc(var(--spacing)/2)}.disabled{color:currentColor;cursor:not-allowed;opacity:.5}@media screen and (min-width:600px){ul.blog-posts li{flex-direction:row;gap:calc(var(--spacing)/2)}}.skip-link{position:absolute;top:5;transform:translateY(-600%);transition:transform .5s;background-color:#181a20;padding:6px}.skip-link:focus{transform:translateY(0%)}figure{margin-inline-start:0;margin-inline-end:0}figcaption>p{margin-block-start:9px;text-align:center;font-style:italic}

View file

@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><title>risotto demo</title>
<meta name="description" content="A [hugo](https://gohugo.io) theme inspired by terminal ricing.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.4/css/academicons.min.css" integrity="sha512-IW0nhlW5MgNydsXJO40En2EoCkTTjZhI3yuODrZIc8cQ4h1XcF53PsqDHa09NqnkXuIe0Oiyyj171BqZFwISBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="http://10.0.0.51:1313/css/palettes/base16-dark.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/css/risotto.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/css/custom.css">
</head>
<body>
<div class="page">
<header class="page__header"><nav class="page__nav main-nav">
<ul>
<h1 class="page__logo"><a href="http://10.0.0.51:1313/" class="page__logo-inner">risotto demo</a></h1>
<li class="main-nav__item"><a class="nav-main-item" href="http://10.0.0.51:1313/about/" title="">About</a></li>
<li class="main-nav__item"><a class="nav-main-item" href="http://10.0.0.51:1313/post/" title="Posts">Posts</a></li>
</ul>
</nav>
</header>
<section class="page__body">
<header class="content__header">
<h1></h1>
</header>
<div class="content__body">
</div>
<footer class="content__footer"></footer>
</section>
<section class="page__aside">
<div class="aside__about">
<div class="aside__about">
<img class="about__logo" src="http://10.0.0.51:1313/%F0%9F%8D%9A" alt="Logo">
<h1 class="about__title">risotto</h1>
<p class="about__description">A <a href="https://gohugo.io">hugo</a> theme inspired by terminal ricing.</p>
</div>
<ul class="aside__social-links">
<li>
<a href="https://github.com/joeroe/risotto" rel="me" aria-label="GitHub" title="GitHub"><i class="fa-brands fa-github" aria-hidden="true"></i></a>&nbsp;
</li>
<li>
<a href="mailto:example@example.com" rel="me" aria-label="Email" title="Email"><i class="fa-solid fa-envelope" aria-hidden="true"></i></a>&nbsp;
</li>
<li>
<a href="https://orcid.org/0000-0001-2345-6789" rel="me" aria-label="ORCID" title="ORCID"><i class="ai ai-orcid" aria-hidden="true"></i></a>&nbsp;
</li>
</ul>
</div>
<hr>
<div class="aside__content">
</div>
</section>
<footer class="page__footer"><p>
<br/><span class="active">$ echo $LANG<br/><b></b></span><br/>
</p>
<br /><br />
<p class="copyright">© <a href="https://joeroe.io">Joe Roe</a> &amp; <a href="https://github.com/joeroe/risotto/graphs/contributors">risotto contributors</a>.</p>
<p class="advertisement">Powered by <a href="https://gohugo.io/">hugo</a> and <a href="https://github.com/joeroe/risotto">risotto</a>.</p>
</footer>
</div>
</body>
</html>

126
public/homepage/index.html Normal file
View file

@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><title>risotto demo</title>
<meta name="description" content="A [hugo](https://gohugo.io) theme inspired by terminal ricing.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.4/css/academicons.min.css" integrity="sha512-IW0nhlW5MgNydsXJO40En2EoCkTTjZhI3yuODrZIc8cQ4h1XcF53PsqDHa09NqnkXuIe0Oiyyj171BqZFwISBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="http://10.0.0.51:1313/css/palettes/base16-dark.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/css/risotto.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/css/custom.css">
</head>
<body>
<div class="page">
<header class="page__header"><nav class="page__nav main-nav">
<ul>
<h1 class="page__logo"><a href="http://10.0.0.51:1313/" class="page__logo-inner">risotto demo</a></h1>
<li class="main-nav__item"><a class="nav-main-item" href="http://10.0.0.51:1313/about/" title="">About</a></li>
<li class="main-nav__item"><a class="nav-main-item" href="http://10.0.0.51:1313/post/" title="Posts">Posts</a></li>
</ul>
</nav>
</header>
<section class="page__body">
<header class="content__header">
<h1></h1>
</header>
<div class="content__body">
</div>
<footer class="content__footer"></footer>
</section>
<section class="page__aside">
<div class="aside__about">
<div class="aside__about">
<img class="about__logo" src="http://10.0.0.51:1313/%F0%9F%8D%9A" alt="Logo">
<h1 class="about__title">risotto</h1>
<p class="about__description">A <a href="https://gohugo.io">hugo</a> theme inspired by terminal ricing.</p>
</div>
<ul class="aside__social-links">
<li>
<a href="https://github.com/joeroe/risotto" rel="me" aria-label="GitHub" title="GitHub"><i class="fa-brands fa-github" aria-hidden="true"></i></a>&nbsp;
</li>
<li>
<a href="mailto:example@example.com" rel="me" aria-label="Email" title="Email"><i class="fa-solid fa-envelope" aria-hidden="true"></i></a>&nbsp;
</li>
<li>
<a href="https://orcid.org/0000-0001-2345-6789" rel="me" aria-label="ORCID" title="ORCID"><i class="ai ai-orcid" aria-hidden="true"></i></a>&nbsp;
</li>
</ul>
</div>
<hr>
<div class="aside__content">
</div>
</section>
<footer class="page__footer"><p>
<br/><span class="active">$ echo $LANG<br/><b></b></span><br/>
</p>
<br /><br />
<p class="copyright">© <a href="https://joeroe.io">Joe Roe</a> &amp; <a href="https://github.com/joeroe/risotto/graphs/contributors">risotto contributors</a>.</p>
<p class="advertisement">Powered by <a href="https://gohugo.io/">hugo</a> and <a href="https://github.com/joeroe/risotto">risotto</a>.</p>
</footer>
</div>
</body>
</html>

19
public/homepage/index.xml Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Homepages on risotto demo</title>
<link>http://10.0.0.51:1313/homepage/</link>
<description>Recent content in Homepages on risotto demo</description>
<generator>Hugo</generator>
<language>en</language>
<copyright>© [Joe Roe](https://joeroe.io) &amp; [risotto contributors](https://github.com/joeroe/risotto/graphs/contributors).</copyright>
<atom:link href="http://10.0.0.51:1313/homepage/index.xml" rel="self" type="application/rss+xml" />
<item>
<title></title>
<link>http://10.0.0.51:1313/homepage/about/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://10.0.0.51:1313/homepage/about/</guid>
<description></description>
</item>
</channel>
</rss>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,279 @@
@font-face {
font-family: 'Roboto Mono';
src: url('../font/RobotoMono-Regular.ttf') format('truetype');
font-style: normal;
font-weight: 400;
text-rendering: optimizeLegibility;
}
@font-face {
font-family: 'Roboto Mono';
src: url('../font/RobotoMono-Italic.ttf') format('truetype');
font-style: italic;
font-weight: 400;
text-rendering: optimizeLegibility;
}
@font-face {
font-family: 'Roboto Mono';
src: url('../font/RobotoMono-Bold.ttf') format('truetype');
font-style: normal;
font-weight: 700;
text-rendering: optimizeLegibility;
}
@font-face {
font-family: 'Roboto Mono';
src: url('../font/RobotoMono-BoldItalic.ttf') format('truetype');
font-style: italic;
font-weight: 700;
text-rendering: optimizeLegibility;
}
:root {
--global-font-size: 16px;
--global-font-color: #444;
--mono-font-stack: Roboto Mono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
--font-stack: Roboto Mono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
--global-line-height: 1.6em;
--page-width: 70em;
--display-h1-decoration: 1;
--code-bg-color: #fff;
}
@media only screen and (max-width: 850px) {
:root {
--global-font-size: 14px;
--global-font-color: #444;
--global-line-height: 1.6em;
--page-width: 70em;
}
}
.sidebar-heading {
text-transform: none;
letter-spacing: 0;
font-weight: 400;
}
.box-masonry .box-masonry-image {
background: #fff;
}
.box-masonry,
.box-masonry:hover {
box-shadow: none;
}
.label {
font-family: var(--font-stack);
}
body {
font-family: var(--font-stack);
font-size: var(--global-font-size);
background-color: #fff;
margin-bottom: 75px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: var(--font-stack);
clear: both;
}
h1 {
margin-bottom: 150px;
}
.content-column-content p,
.content-column-content li {
color: #666;
}
.btn-ghost {
color: #666;
background-color: transparent;
border-color: #333;
font-weight: 400;
font-family: var(--font-stack);
padding: 6px 12px;
font-size: 18px;
line-height: 1.55;
border-radius: 0;
margin-left: 0;
margin-top: 5px;
}
.content-column-content .command {
color: #aaa;
}
p.social a {
margin: 0 0 10px 0;
color: #fff;
display: inline-block;
width: 30px;
height: 30px;
border: none;
line-height: 30px;
font-size: 25px;
text-align: center;
vertical-align: bottom;
color: #999999;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
.active a {
text-decoration: underline;
}
strong {
font-weight: bold;
}
.logo {
font-weight: normal;
}
.terminal-menu li {
margin-right: 30px;
}
figure {
margin-top: 15px;
margin-bottom: 15px;
margin-left: 60px;
margin-right: 60px;
}
.footer {
clear: both;
margin-top: 100px;
padding-top: 10px;;
border-top: 1px solid var(--secondary-color);
color: var(--global-font-color);
}
.image-grid {
display: grid;
grid-template-rows: auto;
display: grid;
grid-gap: 1em;
grid-template-rows: auto;
grid-template-columns: repeat(auto-fit,
minmax(calc(var(--page-width) / 4), 1fr));
}
.terminal-prompt::after {
-webkit-animation: cursor 1s infinite;
animation: cursor 1s infinite;
width: 10px;
}
.terminal-prompt::before {
content: none;
}
.gallery-image {
margin-top: 10px;
margin-bottom: 10px;
}
.posts-list {
position: relative;
padding-left: 130px;
top: 0;
}
.post h1, .post h2 {
padding-top: 0;
margin: 0;
margin-bottom: 5px;
}
.posts-list .date {
display: inline-block;
position: absolute;
left: 0px;
width: 130px;
z-index: 400;
padding-top: 0;
}
@media only screen and (max-width: 850px) {
.site-name {
width: 2ch;
overflow: hidden;
display: inline-block;
}
.terminal-nav {
align-items: flex-start;
flex-direction: column;
display: flex;
}
.terminal-menu ul {
align-items: flex-start;
display: flex;
flex-direction: row;
justify-content: left;
margin-top: 0;
}
.terminal-menu li {
margin-right: 20px;
}
.logo {
padding: calc(var(--global-space) * 1) 0 calc(var(--global-space) * 1);
}
figure {
margin-top: 5px;
margin-bottom: 5px;
margin-left: 30px;
margin-right: 30px;
}
.posts-list {
position: relative;
padding-left: 0;
top: 0;
}
.post h1, .post h2 {
padding-top: 0;
}
.posts-list .date {
display: inline-block;
position: absolute;
left: 0px;
width: 150px;
z-index: 400;
font-weight: bold;
padding-top: 0;
display: none;
}
.footer {
margin-top: 50px;
padding-top: 5px;;
}
}

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

1
public/images/rice.svg Normal file
View file

@ -0,0 +1 @@
<svg height='100px' width='100px' fill="#000000" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 80.944" enable-background="new 0 0 100 80.944" xml:space="preserve"><path d="M49.674,40.911c-2.018-6.836,8.971-10.963,8.841-4.075c1.016,3.678,1.302,5.808-2.448,6.511 C52.754,43.964,50.684,44.329,49.674,40.911z"></path><path d="M57.63,18.274c-1.094,3.718,4.311,4.251,2.91,8.359c2.819,0,1.999-2.246,3.054-4.095c1.523-2.656,5.052-3.301,4.792-6.96 c0.267,6.726,4.004-0.495,6.523-0.762c0.137-1.256-0.449-2.819-0.586-3.665c-1.237-2.656-1.127-5.248-4.531-3.379 c-2.429,1.321-5.547,3.88-2.507,6.185C64.206,14.407,58.763,14.381,57.63,18.274z"></path><path d="M49.74,8.586c-1.4,0.794-2.129,3.861-2.448,5.312c-0.586,2.689-0.41,11.211,4.108,9.824 c2.558-0.774,2.103-4.674,3.092-6.719c0.671-1.36,1.634-1.139,1.992-2.584c0.261-1.061-0.345-2.721-0.508-3.802 c1.719,4.427,8.366,2.429,6.731-2.031c-1.341-1.224-3.965-1.985-5.696-1.074c-2.52,1.335-0.222,2.793-2.148,2.865 C53.542,10.416,52.487,7.037,49.74,8.586z"></path><path d="M57.012,27.454c-1.843-6.126-12.884,2.767-10.768,6.576c1.543,2.793,4.056-1.959,5.612-2.76 C53.991,30.175,57.474,31.158,57.012,27.454z"></path><path d="M61.179,4.993c1.692,0.697,3.633,0.599,3.053-1.907C61.726,1.061,54.7,0.5,54.929,5.117 C56.888,4.869,59.258,4.192,61.179,4.993z"></path><path d="M65.925,28.938c1.861-1.282,4.961-1.087,4.466-4.192c-3.093-7.058-8.854,6.973-9.343,9.381 C63.269,33.176,63.913,30.312,65.925,28.938z"></path><path d="M79.069,38.092c1.061,2.057,5.67,0.749,7.994-0.41c3.041-1.498,3.75-3.529,3.034-6.934 C88.008,22.115,76.165,32.467,79.069,38.092z"></path><path d="M71.973,41.536c2.571-2.161,1.96-9.167,1.536-12.024c-2.682-0.423-5.924,0.749-7.832,2.682 c-1.38,1.419-5.286,8.08-3.73,10.04C62.995,43.554,71.042,42.331,71.973,41.536z"></path><path d="M86.979,24.596c2.076-0.423,1.295-3.691,0.95-5.586c-0.163-5.026-5.527-0.996-4.577,2.617 C83.73,23.04,85.247,24.947,86.979,24.596z"></path><path d="M72.949,24.622c0.808,1.511,2.864,1.523,3.405,4.193c0.618,3.014-0.71,6.198-0.312,9.264 c1.939-1.582,1.621-7.285,3.326-9.941c0.99-1.556,2.155-1.784,2.188-3.613c0.026-1.276-1.224-2.942-1.861-3.991 c1.973-0.091,3.965-7.135,1.172-6.999c-1.433-2.097-3.054-2.422-3.764-0.137c-0.742,2.396,2.155,4.713,2.891,6.712 C76.556,18.15,70.319,19.674,72.949,24.622z"></path><path d="M31.172,23.834c1.374-0.072,1.152,1.224,2.506,0.651c1.374-0.573,2.331-3.079,3.21-4.225 c1.432-6.348-11.517-5.365-10.404,2.142C26.927,25.383,28.229,24.01,31.172,23.834z"></path><path d="M25.319,16.438c-0.352-2.656-4.29-3.405-5.391-0.833C19.121,17.486,24.844,22.779,25.319,16.438z"></path><path d="M23.945,31.992c-0.866,1.797-1.185,4.017-1.029,6.002c0.28,3.502,0.684,2.715,3.171,3.516 c1.354,0.423,3.613,1.705,5.039,1.484c2.91-0.476,1.569-1.322,1.022-3.354c-0.449-1.686-1.517-3.47-1.498-5.254 c0.026-2.454,2.097-4.127,1.855-6.647C30.586,22.167,25.02,29.726,23.945,31.992z"></path><path d="M13.366,25.019c1.302,0.553,1.784,2.786,3.027,3.105c1.087,0.267,2.312-1.309,4.102-1.022 c1.537,0.254,1.816,3.119,3.418,0.677c0.964-1.484,0.664-3.119,0.104-4.727c-3.281-3.197-7.409-4.844-11.589-2.708 c-0.872,0.449-4.453,1.445-2.799,2.956C11.367,24.882,11.881,24.387,13.366,25.019z"></path><path d="M52.259,2.773C50.13-1.082,39.557-1.368,41.595,4.804C42.91,8.782,52.969,7.675,52.259,2.773z"></path><path d="M12.845,26.803c-2.396,1.348-4.876,3.607-3.503,6.712c2.461,5.54,3.379,2.493,4.902-0.996 c0.417,2.317-0.091,4.739,2.351,5.898c2.649,1.243,3.737-0.078,4.017-2.78c0.189-1.784,1.387-6.289-0.957-6.862 c-1.673-0.397-3.561,2.467-5.137,2.904c0.267-0.794,0.41-1.758,0.833-2.48C14.876,28.04,13.854,27.454,12.845,26.803z"></path><path d="M40.176,17.089c0.508,2.454-2.838,5.963-4.037,7.793c0.97-0.449,0.931-0.098,1.693-0.859 c0.098,1.25,0.195,2.493,0.299,3.743c3.425-0.475,4.316,3.19,6.999-1.159c2.513-4.056-0.072-5.924-4.193-5.377 c0.794-2.331,2.956-0.163,3.49-2.708c0.527-2.494,0.514-5.039,1.028-7.533c-1.048-1.23-3.574-2.891-5.149-2.428 c-1.12,0.345-3.809,3.705-3.659,4.688C36.947,15.195,39.72,14.921,40.176,17.089z"></path><path d="M34.023,34.211c-2.474,3.418,0.912,3.457,2.201,4.916c1.341,1.51,0.866,3.62,2.624,3.939 c1.302,0.228,4.049,1.36,5.326,0.403c2.604-1.946-0.697-7.35-1.953-9.557C40.566,31.542,35.729,31.868,34.023,34.211z"></path><path d="M100,34.075c0-3.613-2.07-6.973-5.605-9.974c-1.491,0.983-3.093,1.842-4.739,2.532c2.291,1.719,3.574,3.613,3.574,5.612 c0,7.806-19.355,14.128-43.229,14.128c-23.874,0-43.229-6.322-43.229-14.128c0-2.201,1.614-4.291,4.388-6.152l-4.492-2.891 C2.455,26.406,0,30.11,0,34.075c0,0.215,0.013,0.437,0.026,0.651H0c0.326,8.444,2.943,17.298,7.259,25.579 c0,0,10.462,20.639,42.741,20.639c32.278,0,42.565-20.814,42.565-20.814c4.303-8.242,7.109-17.174,7.422-25.403h-0.014 C99.987,34.511,100,34.29,100,34.075z"></path><path d="M38.027,7.122c1.68-5.872-12.305-0.124-9.863,5.99C29.948,17.564,36.706,9.205,38.027,7.122z"></path></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

146
public/index.html Normal file
View file

@ -0,0 +1,146 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.133.1"><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="A System of Figs" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/" />
<meta name="twitter:title" content="A System of Figs"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Fig.Systems</h1>
<p>
<p>Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other things.</p>
</p>
<br/>
<h1>Latest posts</h1>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/projects/ffb/" title="Fantasy Football Draft Tools">Fantasy Football Draft Tools</a></h1>
Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
Usage You can go to their main page and just copy over the settings from your league.
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/posts/stack/" title="Self Hosting">Self Hosting</a></h1>
This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.
Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:
NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &ldquo;paste bin&rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.
</p>
</div>
</div>
<h1>Tags</h1>
<div class="tagbutton">
<a href=/tags/fantasyfootball/ title="All pages with tag <i>fantasyfootball</i>">fantasyfootball</a>
<sup>1</sup>
</div>
<div class="tagbutton">
<a href=/tags/index/ title="All pages with tag <i>index</i>">index</a>
<sup>1</sup>
</div>
<div class="tagbutton">
<a href=/tags/reference/ title="All pages with tag <i>reference</i>">reference</a>
<sup>1</sup>
</div>
<div class="tagbutton">
<a href=/tags/selfhosted/ title="All pages with tag <i>selfhosted</i>">selfhosted</a>
<sup>1</sup>
</div>
<div class="tagbutton">
<a href=/tags/server/ title="All pages with tag <i>server</i>">server</a>
<sup>1</sup>
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

40
public/index.xml Normal file
View file

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>A System of Figs on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/</link>
<description>Recent content in A System of Figs on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<lastBuildDate>Thu, 29 Aug 2024 11:00:43 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Fantasy Football Draft Tools</title>
<link>http://10.0.0.51:1313/posts/projects/ffb/</link>
<pubDate>Thu, 29 Aug 2024 11:00:43 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/projects/ffb/</guid>
<description>Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&amp;rsquo;ve gotten good results off of it and good feed back from people I&amp;rsquo;ve recommneded it to.&#xA;The original creator moved on from the site this year but it was taken over by his team so it should still reliable.&#xA;Usage You can go to their main page and just copy over the settings from your league.</description>
</item>
<item>
<title>Self Hosting</title>
<link>http://10.0.0.51:1313/posts/stack/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/posts/stack/</guid>
<description>This is just a general overview of what I&amp;rsquo;m running. Updated sporadically, only includes things I&amp;rsquo;m actively using or have deployed.&#xA;Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:&#xA;NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&amp;rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &amp;ldquo;paste bin&amp;rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos. Cloud Came from an azure shop years ago, current aws.</description>
</item>
<item>
<title>About</title>
<link>http://10.0.0.51:1313/about/</link>
<pubDate>Thu, 28 Feb 2019 00:00:00 +0000</pubDate>
<guid>http://10.0.0.51:1313/about/</guid>
<description>Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other things.</description>
</item>
<item>
<title>Contacts</title>
<link>http://10.0.0.51:1313/contacting-me/</link>
<pubDate>Thu, 28 Feb 2019 00:00:00 +0000</pubDate>
<guid>http://10.0.0.51:1313/contacting-me/</guid>
<description>E-mail Eduardo_Figueroa@fig.systems&#xA;Seldom used Socials @edfig@mastodon.social&#xA;@edfig.bsky.social</description>
</item>
</channel>
</rss>

1
public/original.min.css vendored Normal file
View file

@ -0,0 +1 @@
body{font-family:Verdana,sans-serif;margin:auto;padding:20px;max-width:720px;text-align:left;background-color:#1d1f27;word-wrap:break-word;overflow-wrap:break-word;line-height:1.5;color:#c9d1d9}h1,h2,h3,h4,h5,h6,strong,b{color:#eee}a{color:#8cc2dd}.title{text-decoration:none;border:0}.title h1{font-size:24px;margin:19.92px 0}.title span{font-weight:400}nav a{margin-right:10px}textarea{background-color:#252525;color:#ddd;width:100%;font-size:16px}input{background-color:#252525;color:#ddd;font-size:16px}content{line-height:1.6}table{width:100%}table,th,td{border:1px solid;border-collapse:collapse;border-color:#c9d1d9;padding:5px}img{max-width:100%}code{padding:2px 5px;color:#f8f8f2;background-color:#282a36}pre code{display:block;padding:20px;white-space:pre-wrap;font-size:14px;overflow-x:auto;text-wrap:nowrap}blockquote{border-left:1px solid #999;color:#ccc;padding-left:20px;font-style:italic}footer{padding:25px;text-align:center}.helptext{color:#aaa;font-size:small}.errorlist{color:#eba613;font-size:small}ul.blog-posts{list-style-type:none;padding:unset}ul.blog-posts li{display:flex;margin-bottom:10px}ul.blog-posts li span{flex:0 0 130px}ul.blog-posts li a:visited{color:#8b6fcb}a.blog-tags{line-height:2;margin-right:12px}h3.blog-filter{margin-bottom:0}.disabled{color:currentColor;cursor:not-allowed;opacity:.7}p.byline{font-style:italic}.skip-link{position:absolute;top:5;transform:translateY(-600%);transition:transform .5s;background-color:#1d1f27;padding:6px}.skip-link:focus{transform:translateY(0%)}figure{margin-inline-start:0;margin-inline-end:0}figcaption>p{margin-block-start:0;text-align:center;font-style:italic;color:#ccc}

71
public/photos/index.html Normal file
View file

@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/photos/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/photos/index.xml" rel="alternate" type="application/rss+xml" title="eddie@fig.systems" />
<meta property="og:title" content="Photos" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/photos/" />
<meta name="twitter:title" content="Photos"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/photos'>photos</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">Posts/</a></li>
<li><a href="http://10.0.0.51:1313/contacting-me/" typeof="ListItem">Contact/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Photos</h1>
<div class="image-grid">
</div>
<div class="footer"><small>
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</small>
</div>
</div>
</body>
</html>

11
public/photos/index.xml Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Photos on eddie@fig.systems</title>
<link>http://10.0.0.51:1313/photos/</link>
<description>Recent content in Photos on eddie@fig.systems</description>
<generator>Hugo</generator>
<language>en-us</language>
<atom:link href="http://10.0.0.51:1313/photos/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View file

@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/photos/test/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="Warsaw, Poland" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/photos/test/" />
<meta property="og:image" content="http://10.0.0.51:1313/photos/test/warsaw-poland_hu15239619815426301347.jpg">
<meta property="article:published_time" content="2020-02-09T00:00:00+00:00" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="http://10.0.0.51:1313/photos/test/warsaw-poland_hu15239619815426301347.jpg">
<meta name="twitter:title" content="Warsaw, Poland"/>
<meta name="twitter:description" content="Palace of Culture and Science (Polish: Pałac Kultury i Nauki), is a notable high-rise building in central Warsaw, Poland. With a total height of 237 metres (778 ft) it is the tallest building in Poland, the 5th-tallest building in the European Union (including spire) and one of the tallest on the European continent. Constructed in 1955, it houses various public and cultural institutions such as cinemas, theatres, libraries, sports clubs, university faculties and authorities of the Polish Academy of Sciences."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/photos'>photos</a>/<a href='http://10.0.0.51:1313/photos/test'>test</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/about/" typeof="ListItem">about/</a></li>
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">posts/</a></li>
<li><a href="http://10.0.0.51:1313/photos/" typeof="ListItem">photos/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Warsaw, Poland</h1>
<img src="/photos/test/warsaw-poland_hu15159654962386056758.jpg" alt="warsaw-poland.jpg" class="img-responsive gallery-image">
<p><a href="https://en.wikipedia.org/w/index.php?title=Palace_of_Culture_and_Science&amp;oldid=945815549">Palace of Culture and Science</a> (Polish: Pałac Kultury i Nauki), is a notable high-rise building in central Warsaw, Poland. With a total height of 237 metres (778 ft) it is the tallest building in Poland, the 5th-tallest building in the European Union (including spire) and one of the tallest on the European continent.
Constructed in 1955, it houses various public and cultural institutions such as cinemas, theatres, libraries, sports clubs, university faculties and authorities of the Polish Academy of Sciences.</p>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View file

@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>/post/ffb/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="FFB" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/post/ffb/" /><meta property="article:published_time" content="2024-08-29T11:00:43-07:00" />
<meta name="twitter:title" content="FFB"/>
<meta name="twitter:description" content="Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
Usage You can go to their main page and just copy over the settings from your league."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style "></a>:~#
<a href='http://10.0.0.51:1313/post'>post</a>/<a href='http://10.0.0.51:1313/post/ffb'>ffb</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
</ul>
</nav>
</div>
</div>
<div class="container " >
<h1>FFB</h1>
<h1 id="draft-kit">Draft Kit</h1>
<p><a href="https://footballabsurdity.com/draft-sheet-form/">Beer Sheets</a> is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.</p>
<p>The original creator moved on from the site this year but it was taken over by his team so it should still reliable.</p>
<h3 id="usage">Usage</h3>
<p>You can go to their main page and just copy over the settings from your league. For examples here&rsquo;s a <a href="https://footballabsurdity.com/draft-sheet-form/?teams=14&amp;bn=5&amp;qb=1&amp;rb=2&amp;wr=2&amp;rwt=2&amp;patd=6&amp;rutd=6&amp;retd=6&amp;payd=0.04&amp;ruyd=0.1&amp;reyd=0.1&amp;int=-1.0&amp;rec=0.5&amp;fum=-2.0">direct link</a> to the settings my family league is using.</p>
<p>There doesn&rsquo;t seem to be support for PPFD (point per first down) so I just kept it at 1/2 ppr.</p>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>/post/first/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="First" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/post/first/" /><meta property="article:published_time" content="2024-08-29T10:57:05-07:00" />
<meta name="twitter:title" content="First"/>
<meta name="twitter:description" content="Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other tech stuff probably."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style "></a>:~#
<a href='http://10.0.0.51:1313/post'>post</a>/<a href='http://10.0.0.51:1313/post/first'>first</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
</ul>
</nav>
</div>
</div>
<div class="container " >
<h1>First</h1>
<p>Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other tech stuff probably.</p>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

114
public/post/index.html Normal file
View file

@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>/post/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://10.0.0.51:1313/post/index.xml" rel="alternate" type="application/rss+xml" title="" />
<meta property="og:title" content="Posts" />
<meta property="og:description" content="Example posts demonstrating hugo&#39;s markup features" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://10.0.0.51:1313/post/" />
<meta name="twitter:title" content="Posts"/>
<meta name="twitter:description" content="Example posts demonstrating hugo&#39;s markup features"/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style "></a>:~#
<a href='http://10.0.0.51:1313/post'>post</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
</ul>
</nav>
</div>
</div>
<div class="container " >
<h1>Posts</h1>
<br/>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/post/ffb/" title="FFB">FFB</a></h1>
Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
Usage You can go to their main page and just copy over the settings from your league.
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/post/first/" title="First">First</a></h1>
Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other tech stuff probably.
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/post/stack/" title="Test">Test</a></h1>
Welcome to StackEdit! This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.
Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:
NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &ldquo;paste bin&rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos.
</p>
</div>
<div class="post">
<p>
<div class="date">Aug. 29, 2024</div>
<h1><a href="http://10.0.0.51:1313/post/test/" title="Test">Test</a></h1>
Welcome to StackEdit! Hi! I&rsquo;m your first Markdown file in StackEdit. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the file explorer on the left corner of the navigation bar.
Files StackEdit stores your files in your browser, which means all your files are automatically saved locally and are accessible offline!
</p>
</div>
</div>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

40
public/post/index.xml Normal file
View file

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on </title>
<link>http://10.0.0.51:1313/post/</link>
<description>Recent content in Posts on </description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Thu, 29 Aug 2024 11:00:43 -0700</lastBuildDate>
<atom:link href="http://10.0.0.51:1313/post/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>FFB</title>
<link>http://10.0.0.51:1313/post/ffb/</link>
<pubDate>Thu, 29 Aug 2024 11:00:43 -0700</pubDate>
<guid>http://10.0.0.51:1313/post/ffb/</guid>
<description>Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&amp;rsquo;ve gotten good results off of it and good feed back from people I&amp;rsquo;ve recommneded it to.&#xA;The original creator moved on from the site this year but it was taken over by his team so it should still reliable.&#xA;Usage You can go to their main page and just copy over the settings from your league.</description>
</item>
<item>
<title>First</title>
<link>http://10.0.0.51:1313/post/first/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/post/first/</guid>
<description>Self hosted blog for Eduardo Figueroa. Subjects include DIY projects, linux, and other tech stuff probably.</description>
</item>
<item>
<title>Test</title>
<link>http://10.0.0.51:1313/post/stack/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/post/stack/</guid>
<description>Welcome to StackEdit! This is just a general overview of what I&amp;rsquo;m running. Updated sporadically, only includes things I&amp;rsquo;m actively using or have deployed.&#xA;Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:&#xA;NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&amp;rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &amp;ldquo;paste bin&amp;rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos.</description>
</item>
<item>
<title>Test</title>
<link>http://10.0.0.51:1313/post/test/</link>
<pubDate>Thu, 29 Aug 2024 10:57:05 -0700</pubDate>
<guid>http://10.0.0.51:1313/post/test/</guid>
<description>Welcome to StackEdit! Hi! I&amp;rsquo;m your first Markdown file in StackEdit. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the file explorer on the left corner of the navigation bar.&#xA;Files StackEdit stores your files in your browser, which means all your files are automatically saved locally and are accessible offline!</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,92 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>/post/stack/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="Test" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/post/stack/" /><meta property="article:published_time" content="2024-08-29T10:57:05-07:00" />
<meta name="twitter:title" content="Test"/>
<meta name="twitter:description" content="Welcome to StackEdit! This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.
Networking In Production Unifi UDM Pro 3 APs PoE and non-PoE switches A certain number and variety of cameras Services Self-hosted:
NGINX Proxy Manager Immich. Photo Backup. Paperless-NGX. Document storage Recipes. Recipes I&rsquo;ve saved. DokuWiki. Personal wiki. MicroBin. &ldquo;paste bin&rdquo; share. FreshRSS. RSS agregator Forgejo. Git repos."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style "></a>:~#
<a href='http://10.0.0.51:1313/post'>post</a>/<a href='http://10.0.0.51:1313/post/stack'>stack</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
</ul>
</nav>
</div>
</div>
<div class="container " >
<h1>Test</h1>
<h1 id="welcome-to-stackedit">Welcome to StackEdit!</h1>
<p>This is just a general overview of what I&rsquo;m running. Updated sporadically, only includes things I&rsquo;m actively using or have deployed.</p>
<h2 id="networking">Networking</h2>
<h3 id="in-production">In Production</h3>
<ul>
<li>Unifi
<ul>
<li>UDM Pro</li>
<li>3 APs</li>
<li>PoE and non-PoE switches</li>
<li>A certain number and variety of cameras</li>
</ul>
</li>
</ul>
<h2 id="services">Services</h2>
<p>Self-hosted:</p>
<ul>
<li>NGINX Proxy Manager</li>
<li><a href="https://photos.fig.systems">Immich</a>. Photo Backup.</li>
<li><a href="https://paperless.fig.systems">Paperless-NGX</a>. Document storage</li>
<li><a href="https://recipes.fig.systems">Recipes</a>. Recipes I&rsquo;ve saved.</li>
<li><a href="https://wiki.fig.systems">DokuWiki</a>. Personal wiki.</li>
<li><a href="https://bin.fig.systems">MicroBin</a>. &ldquo;paste bin&rdquo; share.</li>
<li><a href="https://feeds.fig.systems">FreshRSS</a>. RSS agregator</li>
<li><a href="https://git.fig.systems">Forgejo</a>. Git repos.</li>
</ul>
<h2 id="cloud">Cloud</h2>
<p>Came from an azure shop years ago, current aws. I&rsquo;ve had personal items on Oracle and AWS but pulled it all down to this server.</p>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

183
public/post/test/index.html Normal file
View file

@ -0,0 +1,183 @@
<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>/post/test/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="Test" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/post/test/" /><meta property="article:published_time" content="2024-08-29T10:57:05-07:00" />
<meta name="twitter:title" content="Test"/>
<meta name="twitter:description" content="Welcome to StackEdit! Hi! I&rsquo;m your first Markdown file in StackEdit. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the file explorer on the left corner of the navigation bar.
Files StackEdit stores your files in your browser, which means all your files are automatically saved locally and are accessible offline!"/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style "></a>:~#
<a href='http://10.0.0.51:1313/post'>post</a>/<a href='http://10.0.0.51:1313/post/test'>test</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
</ul>
</nav>
</div>
</div>
<div class="container " >
<h1>Test</h1>
<h1 id="welcome-to-stackedit">Welcome to StackEdit!</h1>
<p>Hi! I&rsquo;m your first Markdown file in <strong>StackEdit</strong>. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the <strong>file explorer</strong> on the left corner of the navigation bar.</p>
<h1 id="files">Files</h1>
<p>StackEdit stores your files in your browser, which means all your files are automatically saved locally and are accessible <strong>offline!</strong></p>
<h2 id="create-files-and-folders">Create files and folders</h2>
<p>The file explorer is accessible using the button in left corner of the navigation bar. You can create a new file by clicking the <strong>New file</strong> button in the file explorer. You can also create folders by clicking the <strong>New folder</strong> button.</p>
<h2 id="switch-to-another-file">Switch to another file</h2>
<p>All your files and folders are presented as a tree in the file explorer. You can switch from one to another by clicking a file in the tree.</p>
<h2 id="rename-a-file">Rename a file</h2>
<p>You can rename the current file by clicking the file name in the navigation bar or by clicking the <strong>Rename</strong> button in the file explorer.</p>
<h2 id="delete-a-file">Delete a file</h2>
<p>You can delete the current file by clicking the <strong>Remove</strong> button in the file explorer. The file will be moved into the <strong>Trash</strong> folder and automatically deleted after 7 days of inactivity.</p>
<h2 id="export-a-file">Export a file</h2>
<p>You can export the current file by clicking <strong>Export to disk</strong> in the menu. You can choose to export the file as plain Markdown, as HTML using a Handlebars template or as a PDF.</p>
<h1 id="synchronization">Synchronization</h1>
<p>Synchronization is one of the biggest features of StackEdit. It enables you to synchronize any file in your workspace with other files stored in your <strong>Google Drive</strong>, your <strong>Dropbox</strong> and your <strong>GitHub</strong> accounts. This allows you to keep writing on other devices, collaborate with people you share the file with, integrate easily into your workflow&hellip; The synchronization mechanism takes place every minute in the background, downloading, merging, and uploading file modifications.</p>
<p>There are two types of synchronization and they can complement each other:</p>
<ul>
<li>
<p>The workspace synchronization will sync all your files, folders and settings automatically. This will allow you to fetch your workspace on any other device.</p>
<blockquote>
<p>To start syncing your workspace, just sign in with Google in the menu.</p>
</blockquote>
</li>
<li>
<p>The file synchronization will keep one file of the workspace synced with one or multiple files in <strong>Google Drive</strong>, <strong>Dropbox</strong> or <strong>GitHub</strong>.</p>
<blockquote>
<p>Before starting to sync files, you must link an account in the <strong>Synchronize</strong> sub-menu.</p>
</blockquote>
</li>
</ul>
<h2 id="open-a-file">Open a file</h2>
<p>You can open a file from <strong>Google Drive</strong>, <strong>Dropbox</strong> or <strong>GitHub</strong> by opening the <strong>Synchronize</strong> sub-menu and clicking <strong>Open from</strong>. Once opened in the workspace, any modification in the file will be automatically synced.</p>
<h2 id="save-a-file">Save a file</h2>
<p>You can save any file of the workspace to <strong>Google Drive</strong>, <strong>Dropbox</strong> or <strong>GitHub</strong> by opening the <strong>Synchronize</strong> sub-menu and clicking <strong>Save on</strong>. Even if a file in the workspace is already synced, you can save it to another location. StackEdit can sync one file with multiple locations and accounts.</p>
<h2 id="synchronize-a-file">Synchronize a file</h2>
<p>Once your file is linked to a synchronized location, StackEdit will periodically synchronize it by downloading/uploading any modification. A merge will be performed if necessary and conflicts will be resolved.</p>
<p>If you just have modified your file and you want to force syncing, click the <strong>Synchronize now</strong> button in the navigation bar.</p>
<blockquote>
<p><strong>Note:</strong> The <strong>Synchronize now</strong> button is disabled if you have no file to synchronize.</p>
</blockquote>
<h2 id="manage-file-synchronization">Manage file synchronization</h2>
<p>Since one file can be synced with multiple locations, you can list and manage synchronized locations by clicking <strong>File synchronization</strong> in the <strong>Synchronize</strong> sub-menu. This allows you to list and remove synchronized locations that are linked to your file.</p>
<h1 id="publication">Publication</h1>
<p>Publishing in StackEdit makes it simple for you to publish online your files. Once you&rsquo;re happy with a file, you can publish it to different hosting platforms like <strong>Blogger</strong>, <strong>Dropbox</strong>, <strong>Gist</strong>, <strong>GitHub</strong>, <strong>Google Drive</strong>, <strong>WordPress</strong> and <strong>Zendesk</strong>. With <a href="http://handlebarsjs.com/">Handlebars templates</a>, you have full control over what you export.</p>
<blockquote>
<p>Before starting to publish, you must link an account in the <strong>Publish</strong> sub-menu.</p>
</blockquote>
<h2 id="publish-a-file">Publish a File</h2>
<p>You can publish your file by opening the <strong>Publish</strong> sub-menu and by clicking <strong>Publish to</strong>. For some locations, you can choose between the following formats:</p>
<ul>
<li>Markdown: publish the Markdown text on a website that can interpret it (<strong>GitHub</strong> for instance),</li>
<li>HTML: publish the file converted to HTML via a Handlebars template (on a blog for example).</li>
</ul>
<h2 id="update-a-publication">Update a publication</h2>
<p>After publishing, StackEdit keeps your file linked to that publication which makes it easy for you to re-publish it. Once you have modified your file and you want to update your publication, click on the <strong>Publish now</strong> button in the navigation bar.</p>
<blockquote>
<p><strong>Note:</strong> The <strong>Publish now</strong> button is disabled if your file has not been published yet.</p>
</blockquote>
<h2 id="manage-file-publication">Manage file publication</h2>
<p>Since one file can be published to multiple locations, you can list and manage publish locations by clicking <strong>File publication</strong> in the <strong>Publish</strong> sub-menu. This allows you to list and remove publication locations that are linked to your file.</p>
<h1 id="markdown-extensions">Markdown extensions</h1>
<p>StackEdit extends the standard Markdown syntax by adding extra <strong>Markdown extensions</strong>, providing you with some nice features.</p>
<blockquote>
<p><strong>ProTip:</strong> You can disable any <strong>Markdown extension</strong> in the <strong>File properties</strong> dialog.</p>
</blockquote>
<h2 id="smartypants">SmartyPants</h2>
<p>SmartyPants converts ASCII punctuation characters into &ldquo;smart&rdquo; typographic punctuation HTML entities. For example:</p>
<table>
<thead>
<tr>
<th></th>
<th>ASCII</th>
<th>HTML</th>
</tr>
</thead>
<tbody>
<tr>
<td>Single backticks</td>
<td><code>'Isn't this fun?'</code></td>
<td>&lsquo;Isn&rsquo;t this fun?&rsquo;</td>
</tr>
<tr>
<td>Quotes</td>
<td><code>&quot;Isn't this fun?&quot;</code></td>
<td>&ldquo;Isn&rsquo;t this fun?&rdquo;</td>
</tr>
<tr>
<td>Dashes</td>
<td><code>-- is en-dash, --- is em-dash</code></td>
<td>&ndash; is en-dash, &mdash; is em-dash</td>
</tr>
</tbody>
</table>
<h2 id="katex">KaTeX</h2>
<p>You can render LaTeX mathematical expressions using <a href="https://khan.github.io/KaTeX/">KaTeX</a>:</p>
<p>The <em>Gamma function</em> satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via the Euler integral</p>
<p>$$
\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt,.
$$</p>
<blockquote>
<p>You can find more information about <strong>LaTeX</strong> mathematical expressions <a href="http://meta.math.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference">here</a>.</p>
</blockquote>
<h2 id="uml-diagrams">UML diagrams</h2>
<p>You can render UML diagrams using <a href="https://mermaidjs.github.io/">Mermaid</a>. For example, this will produce a sequence diagram:</p>
<pre tabindex="0"><code class="language-mermaid" data-lang="mermaid">sequenceDiagram
Alice -&gt;&gt; Bob: Hello Bob, how are you?
Bob--&gt;&gt;John: How about you John?
Bob--x Alice: I am good thanks!
Bob-x John: I am good thanks!
Note right of John: Bob thinks a long&lt;br/&gt;long time, so long&lt;br/&gt;that the text does&lt;br/&gt;not fit on a row.
Bob--&gt;Alice: Checking with John...
Alice-&gt;John: Yes... John, how are you?
</code></pre><p>And this will produce a flow chart:</p>
<pre tabindex="0"><code class="language-mermaid" data-lang="mermaid">graph LR
A[Square Rect] -- Link text --&gt; B((Circle))
A --&gt; C(Round Rect)
B --&gt; D{Rhombus}
C --&gt; D
</code></pre>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en-us">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eddie@fig.systems/posts/ffb/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/terminal-0.7.2.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://10.0.0.51:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="FFB" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://10.0.0.51:1313/posts/ffb/" /><meta property="article:published_time" content="2024-08-29T11:00:43-07:00" />
<meta name="twitter:title" content="FFB"/>
<meta name="twitter:description" content="Draft Kit Beer Sheets is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.
The original creator moved on from the site this year but it was taken over by his team so it should still reliable.
Usage You can go to their main page and just copy over the settings from your league."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://10.0.0.51:1313/" class="no-style site-name">eddie@fig.systems</a>:~#
<a href='http://10.0.0.51:1313/posts'>posts</a>/<a href='http://10.0.0.51:1313/posts/ffb'>ffb</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://10.0.0.51:1313/about/" typeof="ListItem">about/</a></li>
<li><a href="http://10.0.0.51:1313/posts/" typeof="ListItem">posts/</a></li>
<li><a href="http://10.0.0.51:1313/photos/" typeof="ListItem">photos/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>FFB</h1>
Aug. 29, 2024
<br/><br/>
<h1 id="draft-kit">Draft Kit</h1>
<p><a href="https://footballabsurdity.com/draft-sheet-form/">Beer Sheets</a> is a tool I found online and everytime I feel like I&rsquo;ve gotten good results off of it and good feed back from people I&rsquo;ve recommneded it to.</p>
<p>The original creator moved on from the site this year but it was taken over by his team so it should still reliable.</p>
<h3 id="usage">Usage</h3>
<p>You can go to their main page and just copy over the settings from your league. For examples here&rsquo;s a <a href="https://footballabsurdity.com/draft-sheet-form/?teams=14&amp;bn=5&amp;qb=1&amp;rb=2&amp;wr=2&amp;rwt=2&amp;patd=6&amp;rutd=6&amp;retd=6&amp;payd=0.04&amp;ruyd=0.1&amp;reyd=0.1&amp;int=-1.0&amp;rec=0.5&amp;fum=-2.0">direct link</a> to the settings my family league is using.</p>
<p>There doesn&rsquo;t seem to be support for PPFD (point per first down) so I just kept it at 1/2 ppr.</p>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show more