From 004ab03b53861d1da05ebfba607dec2c04d9c654 Mon Sep 17 00:00:00 2001 From: smallsolar Date: Sun, 1 Dec 2024 19:52:48 +0000 Subject: [PATCH] first commit --- README.md | 1 + categories/default/index.html | 2 ++ categories/default/index.xml | 2 ++ categories/default/page/1/index.html | 2 ++ categories/index.html | 2 ++ categories/index.xml | 1 + categories/page/1/index.html | 2 ++ css/style.css | 12 ++++++++++++ index.html | 3 +++ index.xml | 2 ++ page/1/index.html | 2 ++ posts/2024-12-01-my-first-post/index.html | 3 +++ posts/index.html | 2 ++ posts/index.xml | 2 ++ posts/page/1/index.html | 2 ++ sitemap.xml | 1 + tags/default/index.html | 2 ++ tags/default/index.xml | 2 ++ tags/default/page/1/index.html | 2 ++ tags/index.html | 2 ++ tags/index.xml | 1 + tags/page/1/index.html | 2 ++ 22 files changed, 52 insertions(+) create mode 100644 README.md create mode 100755 categories/default/index.html create mode 100755 categories/default/index.xml create mode 100755 categories/default/page/1/index.html create mode 100755 categories/index.html create mode 100755 categories/index.xml create mode 100755 categories/page/1/index.html create mode 100755 css/style.css create mode 100755 index.html create mode 100755 index.xml create mode 100755 page/1/index.html create mode 100755 posts/2024-12-01-my-first-post/index.html create mode 100755 posts/index.html create mode 100755 posts/index.xml create mode 100755 posts/page/1/index.html create mode 100755 sitemap.xml create mode 100755 tags/default/index.html create mode 100755 tags/default/index.xml create mode 100755 tags/default/page/1/index.html create mode 100755 tags/index.html create mode 100755 tags/index.xml create mode 100755 tags/page/1/index.html diff --git a/README.md b/README.md new file mode 100644 index 0000000..f6d35ca --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# December Adventure Website diff --git a/categories/default/index.html b/categories/default/index.html new file mode 100755 index 0000000..84dbde0 --- /dev/null +++ b/categories/default/index.html @@ -0,0 +1,2 @@ +Default +
====================================
== SmallSolar December Adventures ==
====================================

Default

1 of 1
\ No newline at end of file diff --git a/categories/default/index.xml b/categories/default/index.xml new file mode 100755 index 0000000..7150240 --- /dev/null +++ b/categories/default/index.xml @@ -0,0 +1,2 @@ +Default on SmallSolar December Adventureshttps://blog.solarcene.community/categories/default/Recent content in Default on SmallSolar December AdventuresHugoen-usSun, 01 Dec 2024 07:18:36 +0000My First Posthttps://blog.solarcene.community/posts/2024-12-01-my-first-post/Sun, 01 Dec 2024 07:18:36 +0000https://blog.solarcene.community/posts/2024-12-01-my-first-post/<h2 id="starting-december-adventure">Starting December Adventure</h2> +<p>I found about the low key coding challenge through the <a href="https://discord.gg/8ZkKKkA">Psion User Discord</a> and it was cool to see that a number of people I follow on mastodon took part previously. In a slight variation I&rsquo;ve decided to focus on documentation as I&rsquo;ve been promising to write up all the projects particularly the solar setup of solarcene.community. I&rsquo;ll use a combination of this blog site and the gitea server I have at <a href="https://git.solarcene.community">https://git.solarcene.community</a></p> \ No newline at end of file diff --git a/categories/default/page/1/index.html b/categories/default/page/1/index.html new file mode 100755 index 0000000..a8ce8c9 --- /dev/null +++ b/categories/default/page/1/index.html @@ -0,0 +1,2 @@ +https://blog.solarcene.community/categories/default/ + \ No newline at end of file diff --git a/categories/index.html b/categories/index.html new file mode 100755 index 0000000..d342caa --- /dev/null +++ b/categories/index.html @@ -0,0 +1,2 @@ +Categories +
====================================
== SmallSolar December Adventures ==
====================================

Categories

1 of 1
\ No newline at end of file diff --git a/categories/index.xml b/categories/index.xml new file mode 100755 index 0000000..4dd3964 --- /dev/null +++ b/categories/index.xml @@ -0,0 +1 @@ +Categories on SmallSolar December Adventureshttps://blog.solarcene.community/categories/Recent content in Categories on SmallSolar December AdventuresHugoen-usSun, 01 Dec 2024 07:18:36 +0000Defaulthttps://blog.solarcene.community/categories/default/Sun, 01 Dec 2024 07:18:36 +0000https://blog.solarcene.community/categories/default/ \ No newline at end of file diff --git a/categories/page/1/index.html b/categories/page/1/index.html new file mode 100755 index 0000000..26c54f7 --- /dev/null +++ b/categories/page/1/index.html @@ -0,0 +1,2 @@ +https://blog.solarcene.community/categories/ + \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100755 index 0000000..585aaac --- /dev/null +++ b/css/style.css @@ -0,0 +1,12 @@ +html {overflow-y: scroll} +:root { --bgcolor: white; --fontcolor: #444; --linkcolor: #00e; --visitedcolor: #551a8b; --precolor: #fff; --prebgcolor: #000;} +@media (prefers-color-scheme: dark) { :root { --bgcolor: black; --fontcolor: white; --linkcolor: #5bf; --visitedcolor: #ae5ee0; --precolor: #fff; --prebgcolor: #383838;}} +body{max-width:800px;margin:40px auto;padding:0 10px;font:14px/1.5 monospace;color:var(--fontcolor); background: var(--bgcolor)}a:link{color: var(--linkcolor)}a:visited{color: var(--visitedcolor)}a:active{color: var(--visitedcolor)}h1,h2,h3{line-height:1.2} +p > code{color: var(--precolor); background: var(--prebgcolor); padding:2px} +code{color: var(--precolor); background: var(--prebgcolor); padding:2px} +pre{color: var(--precolor); background: var(--prebgcolor); padding:24px; overflow-x: auto} +article{padding:24px 0} +.center {display: block;margin-left: auto;margin-right: auto;width: 100%;} +figcaption {color: #888; font: 12px/1.5 monospace; text-align: center;} +figure {margin: auto} +img {display: block; max-width: 100%; height: auto; margin: auto} diff --git a/index.html b/index.html new file mode 100755 index 0000000..ce84b72 --- /dev/null +++ b/index.html @@ -0,0 +1,3 @@ +SmallSolar December Adventures +
====================================
== SmallSolar December Adventures ==
====================================

My First Post

+default

Starting December Adventure

I found about the low key coding challenge through the Psion User Discord and it was cool to see that a number of people I follow on mastodon took part previously. In a slight variation I’ve decided to focus on documentation as I’ve been promising to write up all the projects particularly the solar setup of solarcene.community. I’ll use a combination of this blog site and the gitea server I have at https://git.solarcene.community

Read more...
1 of 1
\ No newline at end of file diff --git a/index.xml b/index.xml new file mode 100755 index 0000000..8ec8cb6 --- /dev/null +++ b/index.xml @@ -0,0 +1,2 @@ +SmallSolar December Adventureshttps://blog.solarcene.community/Recent content on SmallSolar December AdventuresHugoen-usSun, 01 Dec 2024 07:18:36 +0000My First Posthttps://blog.solarcene.community/posts/2024-12-01-my-first-post/Sun, 01 Dec 2024 07:18:36 +0000https://blog.solarcene.community/posts/2024-12-01-my-first-post/<h2 id="starting-december-adventure">Starting December Adventure</h2> +<p>I found about the low key coding challenge through the <a href="https://discord.gg/8ZkKKkA">Psion User Discord</a> and it was cool to see that a number of people I follow on mastodon took part previously. In a slight variation I&rsquo;ve decided to focus on documentation as I&rsquo;ve been promising to write up all the projects particularly the solar setup of solarcene.community. I&rsquo;ll use a combination of this blog site and the gitea server I have at <a href="https://git.solarcene.community">https://git.solarcene.community</a></p> \ No newline at end of file diff --git a/page/1/index.html b/page/1/index.html new file mode 100755 index 0000000..82098a4 --- /dev/null +++ b/page/1/index.html @@ -0,0 +1,2 @@ +https://blog.solarcene.community/ + \ No newline at end of file diff --git a/posts/2024-12-01-my-first-post/index.html b/posts/2024-12-01-my-first-post/index.html new file mode 100755 index 0000000..a979e63 --- /dev/null +++ b/posts/2024-12-01-my-first-post/index.html @@ -0,0 +1,3 @@ +My First Post +
====================================
== SmallSolar December Adventures ==
====================================

My First Post

+default

Starting December Adventure

I found about the low key coding challenge through the Psion User Discord and it was cool to see that a number of people I follow on mastodon took part previously. In a slight variation I’ve decided to focus on documentation as I’ve been promising to write up all the projects particularly the solar setup of solarcene.community. I’ll use a combination of this blog site and the gitea server I have at https://git.solarcene.community

First job was to setup a blog, I’ve gone with Hugo to create a static site, I’ve set it up on the NanoPi Neo which acts as the nginx router (my system layout will be a future topic). I ended up using the pre-built binaries for go and hugo as building from source would never work succeed (only having 256Mb of RAM - and yes I did try but after 10hrs it just got silly), I bascially followed the quickstart guide and installed the smol theme. Finally setup nginx to point to server.

Projects I plan to document include:

  • Solar Hardware (with diagrams)
  • Solarcene Mastodon Power code/setup
  • Solarcene grayscale/dithering code
  • My basic/simple hacks for Grafana
  • Summer hydroponics setup (hardware/code and results)
  • Plans for 2025

Visit the December Adventure website to learn more!

\ No newline at end of file diff --git a/posts/index.html b/posts/index.html new file mode 100755 index 0000000..0b8e5d5 --- /dev/null +++ b/posts/index.html @@ -0,0 +1,2 @@ +Posts +
====================================
== SmallSolar December Adventures ==
====================================

Posts

1 of 1
\ No newline at end of file diff --git a/posts/index.xml b/posts/index.xml new file mode 100755 index 0000000..45baacb --- /dev/null +++ b/posts/index.xml @@ -0,0 +1,2 @@ +Posts on SmallSolar December Adventureshttps://blog.solarcene.community/posts/Recent content in Posts on SmallSolar December AdventuresHugoen-usSun, 01 Dec 2024 07:18:36 +0000My First Posthttps://blog.solarcene.community/posts/2024-12-01-my-first-post/Sun, 01 Dec 2024 07:18:36 +0000https://blog.solarcene.community/posts/2024-12-01-my-first-post/<h2 id="starting-december-adventure">Starting December Adventure</h2> +<p>I found about the low key coding challenge through the <a href="https://discord.gg/8ZkKKkA">Psion User Discord</a> and it was cool to see that a number of people I follow on mastodon took part previously. In a slight variation I&rsquo;ve decided to focus on documentation as I&rsquo;ve been promising to write up all the projects particularly the solar setup of solarcene.community. I&rsquo;ll use a combination of this blog site and the gitea server I have at <a href="https://git.solarcene.community">https://git.solarcene.community</a></p> \ No newline at end of file diff --git a/posts/page/1/index.html b/posts/page/1/index.html new file mode 100755 index 0000000..6642aef --- /dev/null +++ b/posts/page/1/index.html @@ -0,0 +1,2 @@ +https://blog.solarcene.community/posts/ + \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml new file mode 100755 index 0000000..604b6ab --- /dev/null +++ b/sitemap.xml @@ -0,0 +1 @@ +https://blog.solarcene.community/categories/2024-12-01T07:18:36+00:00https://blog.solarcene.community/tags/default/2024-12-01T07:18:36+00:00https://blog.solarcene.community/categories/default/2024-12-01T07:18:36+00:00https://blog.solarcene.community/posts/2024-12-01-my-first-post/2024-12-01T07:18:36+00:00https://blog.solarcene.community/posts/2024-12-01T07:18:36+00:00https://blog.solarcene.community/2024-12-01T07:18:36+00:00https://blog.solarcene.community/tags/2024-12-01T07:18:36+00:00 \ No newline at end of file diff --git a/tags/default/index.html b/tags/default/index.html new file mode 100755 index 0000000..fc22b81 --- /dev/null +++ b/tags/default/index.html @@ -0,0 +1,2 @@ +Default +
====================================
== SmallSolar December Adventures ==
====================================

Default

1 of 1
\ No newline at end of file diff --git a/tags/default/index.xml b/tags/default/index.xml new file mode 100755 index 0000000..0fff23e --- /dev/null +++ b/tags/default/index.xml @@ -0,0 +1,2 @@ +Default on SmallSolar December Adventureshttps://blog.solarcene.community/tags/default/Recent content in Default on SmallSolar December AdventuresHugoen-usSun, 01 Dec 2024 07:18:36 +0000My First Posthttps://blog.solarcene.community/posts/2024-12-01-my-first-post/Sun, 01 Dec 2024 07:18:36 +0000https://blog.solarcene.community/posts/2024-12-01-my-first-post/<h2 id="starting-december-adventure">Starting December Adventure</h2> +<p>I found about the low key coding challenge through the <a href="https://discord.gg/8ZkKKkA">Psion User Discord</a> and it was cool to see that a number of people I follow on mastodon took part previously. In a slight variation I&rsquo;ve decided to focus on documentation as I&rsquo;ve been promising to write up all the projects particularly the solar setup of solarcene.community. I&rsquo;ll use a combination of this blog site and the gitea server I have at <a href="https://git.solarcene.community">https://git.solarcene.community</a></p> \ No newline at end of file diff --git a/tags/default/page/1/index.html b/tags/default/page/1/index.html new file mode 100755 index 0000000..470252b --- /dev/null +++ b/tags/default/page/1/index.html @@ -0,0 +1,2 @@ +https://blog.solarcene.community/tags/default/ + \ No newline at end of file diff --git a/tags/index.html b/tags/index.html new file mode 100755 index 0000000..3d34e1f --- /dev/null +++ b/tags/index.html @@ -0,0 +1,2 @@ +Tags +
====================================
== SmallSolar December Adventures ==
====================================

Tags

1 of 1
\ No newline at end of file diff --git a/tags/index.xml b/tags/index.xml new file mode 100755 index 0000000..fa7afa6 --- /dev/null +++ b/tags/index.xml @@ -0,0 +1 @@ +Tags on SmallSolar December Adventureshttps://blog.solarcene.community/tags/Recent content in Tags on SmallSolar December AdventuresHugoen-usSun, 01 Dec 2024 07:18:36 +0000Defaulthttps://blog.solarcene.community/tags/default/Sun, 01 Dec 2024 07:18:36 +0000https://blog.solarcene.community/tags/default/ \ No newline at end of file diff --git a/tags/page/1/index.html b/tags/page/1/index.html new file mode 100755 index 0000000..bb38a80 --- /dev/null +++ b/tags/page/1/index.html @@ -0,0 +1,2 @@ +https://blog.solarcene.community/tags/ + \ No newline at end of file