Inital commit
All checks were successful
Deploy site / Deploy-Site (push) Successful in 0s

This commit is contained in:
2026-06-26 15:04:03 -04:00
commit 6f6772fa8d
3 changed files with 47 additions and 0 deletions

21
www/index.lua Normal file
View File

@@ -0,0 +1,21 @@
local fes = require("fes")
local std = fes.std
local u = fes.util
local site = fes.fes()
site.title = "Notes"
site.favicon = ""
site.copyright = u.copyright("https://fsdproject.org/people/vxclutch", "vxclutch")
site:banner(std.h1("Notes of vxclutch"))
local notes = {}
for _, value in pairs(u.ls("www/notes")) do
table.insert(notes, std.a("/notes/" .. value, value))
end
site:note(std.ul(notes))
return site

View File

@@ -0,0 +1,15 @@
The fSD project is my libre software organization which I use for all of my
"serious" software. I define "serious" software as the following:
i. it most provide general use within its purpose not just for personal use.
ii. code quality and documentation must be a focus of the project. iii. it
must be free software for the betterment of all. iv. the software should do
what it says it does. v. performance, performance, performance.
Software that is not "serious" is things like Hjem, my local homepage tool which
I use as part of my rice. Hjem is very specific to my needs and not to a level
of quality that I take with my fSD projects. You can tell this because it breaks
rules i and ii.
So, the fSD project just marks those projects as serious and affords a guarantee
to users of that software.