diff src/learn.html.luan @ 72:8bd99d5f468e

remove scum
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 24 Mar 2025 18:50:48 -0600
parents c934772a6c2e
children
line wrap: on
line diff
--- a/src/learn.html.luan	Wed Jan 22 02:13:39 2025 -0700
+++ b/src/learn.html.luan	Mon Mar 24 18:50:48 2025 -0600
@@ -13,7 +13,7 @@
 		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>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 in depraved modern culture.  Modern culture 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 culture is <a href="python.html">Python</a>, so I would recommend learning that if you want a job.</p>
 
 <p>The next 4 lessons are basic computer literacy.  Even if you are not interested in programming, these would be useful skills.</p>
 
@@ -33,7 +33,7 @@
 		title = [[Text Editor and JSON]]
 		content = function()
 %>
-<p>A text editor is a basic tool for reactionary programmers.  We use simple flexible tools.  Modern scum use an <a href="https://en.wikipedia.org/wiki/Integrated_development_environment">IDE</a> which is big, <a href="https://mikraite.arkian.net/Changed-my-mind-about-IDE-s-tp2769.html">complicated</a>, and inflexible.  We don't use such tools.</p>
+<p>A text editor is a basic tool for reactionary programmers.  We use simple flexible tools.  Modern culture uses an <a href="https://en.wikipedia.org/wiki/Integrated_development_environment">IDE</a> which is big, <a href="https://mikraite.arkian.net/Changed-my-mind-about-IDE-s-tp2769.html">complicated</a>, and inflexible.  We don't use such tools.</p>
 
 <p>I reviewed the available text editors and I think <a href="https://www.sublimetext.com/">Sublime Text</a> is the best one available.  So please download it and learn how it works.</p>
 
@@ -189,7 +189,7 @@
 %>
 <p>Google Chrome is the standard client-side web development tool.  So the first step is to make sure that you have Chrome installed and running.</p>
 
-<p>Using Chrome, on any page you can right-click in an empty area and from the menu select "View Page Source".  This will show you the HTML for the webpage.  If you try this on different websites, you will probably notice that my webpages are fairly short and well organized while the webpages of modern scum are unreadable.  Another thing to try is to right-click anywhere in a page and select "Inspect".  This should open the developer tools with the tab "Elements" selected.  In this tab, you get the HTML organized as a tree that can be expanded to collapsed.  The "Elements" tab of Chrome developer tools will be your core tool when you work with HTML and CSS.  You should play with it and do your own research on it to learn how it works.</p>
+<p>Using Chrome, on any page you can right-click in an empty area and from the menu select "View Page Source".  This will show you the HTML for the webpage.  If you try this on different websites, you will probably notice that my webpages are fairly short and well organized while the webpages of modern culture are unreadable.  Another thing to try is to right-click anywhere in a page and select "Inspect".  This should open the developer tools with the tab "Elements" selected.  In this tab, you get the HTML organized as a tree that can be expanded to collapsed.  The "Elements" tab of Chrome developer tools will be your core tool when you work with HTML and CSS.  You should play with it and do your own research on it to learn how it works.</p>
 
 <p>The next step is to download this website like this:</p>
 
@@ -216,9 +216,9 @@
 
 <p>I left out resources for HTML itself.  You should just look up HTML tags with Google or ChatGPT as you encounter them.  That is good enough to learn HTML.</p>
 
-<p>Ideally one should be able to look at web pages around the internet to learn.  But unfortunately they are mostly overcomplicated crap that is very difficult to understand.  You can try.  My personal websites are like this one - very simple, so they don't look professional to modern scum.  I can't link to my best commercial website because that would ruin its reputation (because I am infamous).  But I can link to some of my old commercial websites <a href="http://test.tleggings.com/">here</a> and <a href="http://test.super-resume.com/">here</a>.  These have reasonable HTML and CSS.</p>
+<p>Ideally one should be able to look at web pages around the internet to learn.  But unfortunately they are mostly overcomplicated crap that is very difficult to understand.  You can try.  My personal websites are like this one - very simple, so they don't look professional to modern culture.  I can't link to my best commercial website because that would ruin its reputation (because I am infamous).  But I can link to some of my old commercial websites <a href="http://test.tleggings.com/">here</a> and <a href="http://test.super-resume.com/">here</a>.  These have reasonable HTML and CSS.</p>
 
-<p>I have a few general principles for working with HTML and CSS.  First, modern scum claim that HTML is for content and CSS is for styling.  This is nonsense.  Both HTML and CSS are for layout, don't think of them as being conceptually different.  Just use both in the simplest possible way to get the results you want.  Don't bother with the useless new HTML5 content tags like <code>header</code>.  Just use <code>div</code> and <code>span</code> for most things.  Also I use HTML attributes as selectors, not HTML classes.  This is just simpler.  HTML classes are useless, leave them for modern scum.</p>
+<p>I have a few general principles for working with HTML and CSS.  First, modern culture claims that HTML is for content and CSS is for styling.  This is nonsense.  Both HTML and CSS are for layout, don't think of them as being conceptually different.  Just use both in the simplest possible way to get the results you want.  Don't bother with the useless new HTML5 content tags like <code>header</code>.  Just use <code>div</code> and <code>span</code> for most things.  Also I use HTML attributes as selectors, not HTML classes.  This is just simpler.  HTML classes are useless, leave them for modern culture.</p>
 
 <p>You will need HTML, CSS, Javascript, and Luan to make a website.  So I suggest that you get a basic understanding of each of these and then go back later to study them in greater depth.</p>
 <%