view src/learn.html.luan @ 41:fbf2a8deee98

learn minor
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 27 Dec 2023 12:04:40 -0700
parents ebab99118e19
children 84b97e86f4db
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local pairs = Luan.pairs or error()
local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"
local Shared = require "site:/lib/Shared.luan"
local head = Shared.head or error()
local header = Shared.header or error()


local content = {
	intro = {
		title = "Introduction"
		content = function()
%>
<p>Learning reactionary programming will give you a deep understanding of programming and will enable to you to write your own programs and websites.  However this is not enough to get a job with modern scum (members of depraved modern culture).  Modern scum will expect you to use tools popular with them, so you would have to learn one of those.  Probably the least horrible programming tool used by modern scum is <a href="python.html">Python</a>, so I would recommend learning that if you want a job.</p>

<p>The next 3 lessons are basic computer literacy.  Even if you are not interested in programming, these would be useful skills.</p>

<p>I will develop this course incrementally based on demand.  Whenever anyone completes the content here, I will add another lesson/section.  This way I won't waste my time writing content that no one will use.</p>

<p>This course will be designed for you to learn reactionary programming in a logical sequence.  I will focus on finding relevant resources, and I will only write explanations when nothing else is available on the subject.  I will focus on web development since that is what I know best.</p>

<p>I will often say "Do X" without saying how to do X.  A big part of programming is figuring out how to do things.  Your two main resources are Google and ChatGPT.  If you get stuck, you can ask me.</p>

<p>ChatGPT has become an essential programming tool.  So the only task for this lesson is to play with ChatGPT.  Later you can ask it technical questions.</p>

<p>If you have any questions, you can <a href="https://discord.gg/Qdcgvm3aAq">ask me on Discord</a>.</p>
<%
		end
	}
	editor = {
		title = "Text Editor and JSON"
		content = function()
%>
<p>later</p>
<%
		end
	}
	bash = {
		title = "Bash - Command Line Shell"
		content = function()
%>
<p>later</p>
<%
		end
	}
	hg = {
		title = "Mercurial - Source Control"
		content = function()
%>
<p>later</p>
<%
		end
	}
	html = {
		title = "HTML and CSS"
		content = function()
%>
<p>later</p>
<%
		end
	}
	js = {
		title = "JavaScript"
		content = function()
%>
<p>later</p>
<%
		end
	}
	luan = {
		title = "Luan"
		content = function()
%>
<p>later</p>
<%
		end
	}
	http = {
		title = "HTTP"
		content = function()
%>
<p>later</p>
<%
		end
	}
	java = {
		title = "Java 8"
		content = function()
%>
<p>later</p>
<%
		end
	}
}


local function show_toc(content)
%>
			<ul>
<%
	for id, info in pairs(content) do
%>
				<li><a id="c_<%=id%>" href="#<%=id%>"><%=info.title%></a></li>
<%
	end
%>
			</ul>
<%
end

local function show_content(content,h)
	for id, info in pairs(content) do
%>
			<div heading>
				<h<%=h%>><a id="<%=id%>" href="#<%=id%>"><%=info.title%></a></h<%=h%>>
				<a href="#c_<%=id%>">contents</a>
			</div>
<%
		info.content()
	end
end

return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
<%		head() %>
		<title>Learn Reactionary Programming</title>
		<style>
			div[toc] ul {
				list-style-type: none;
			}
			div[toc] > ul {
				padding-left: 0;
			}
			div[toc] > ul > li {
				margin-bottom: 16px;
			}
			div[heading] {
				display: flex;
				justify-content: space-between;
				margin-top: 36px;
			}
			div[heading] > * {
				margin: 0;
			}
			div[heading] > a {
				font-size: 14px;
			}
		</style>
	</head>
	<body>
<%		header() %>
		<div content>
			<h1><a href="learn.html">Learn Reactionary Programming</a></h1>
			<hr>
			<h2>Contents</h2>
			<div toc>
<%			show_toc(content) %>
			</div>
			<hr>
<%			show_content(content,2) %>
		</div>
	</body>
</html>
<%
end