This commit is contained in:
21
www/index.lua
Normal file
21
www/index.lua
Normal 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
|
||||
15
www/notes/An explantion of the fSD project
Normal file
15
www/notes/An explantion of the fSD project
Normal 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.
|
||||
Reference in New Issue
Block a user