comparison 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
comparison
equal deleted inserted replaced
40:ebab99118e19 41:fbf2a8deee98
13 title = "Introduction" 13 title = "Introduction"
14 content = function() 14 content = function()
15 %> 15 %>
16 <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> 16 <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>
17 17
18 <p>The next 3 lessons are basic computer literacy. Even if you are not interested in programming, these would be useful skills.</p>
19
18 <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> 20 <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>
19 21
20 <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> 22 <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>
21 23
22 <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 <a href="https://discord.gg/Qdcgvm3aAq">on Discord</a>.</p> 24 <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>
23 25
24 <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> 26 <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>
27
28 <p>If you have any questions, you can <a href="https://discord.gg/Qdcgvm3aAq">ask me on Discord</a>.</p>
25 <% 29 <%
26 end 30 end
27 } 31 }
28 editor = { 32 editor = {
29 title = "Text Editor and JSON" 33 title = "Text Editor and JSON"
34 content = function()
35 %>
36 <p>later</p>
37 <%
38 end
39 }
40 bash = {
41 title = "Bash - Command Line Shell"
42 content = function()
43 %>
44 <p>later</p>
45 <%
46 end
47 }
48 hg = {
49 title = "Mercurial - Source Control"
50 content = function()
51 %>
52 <p>later</p>
53 <%
54 end
55 }
56 html = {
57 title = "HTML and CSS"
58 content = function()
59 %>
60 <p>later</p>
61 <%
62 end
63 }
64 js = {
65 title = "JavaScript"
66 content = function()
67 %>
68 <p>later</p>
69 <%
70 end
71 }
72 luan = {
73 title = "Luan"
74 content = function()
75 %>
76 <p>later</p>
77 <%
78 end
79 }
80 http = {
81 title = "HTTP"
82 content = function()
83 %>
84 <p>later</p>
85 <%
86 end
87 }
88 java = {
89 title = "Java 8"
30 content = function() 90 content = function()
31 %> 91 %>
32 <p>later</p> 92 <p>later</p>
33 <% 93 <%
34 end 94 end