-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
314 lines (197 loc) · 6.79 KB
/
README
File metadata and controls
314 lines (197 loc) · 6.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# Dev Learning Library
This repository is my personal learning library for web development and programming.
It contains examples, notes, experiments, and rebuilt exercises while studying different technologies through structured learning paths and personal practice.
The goal of this repository is to build a **personal reference library**, track my learning progress, and develop a deeper understanding of programming concepts.
---
# Current Focus
Currently studying:
- HTML fundamentals
- CSS layout and styling
- JavaScript basics
This section will evolve over time as new technologies are explored.
---
# Purpose
This repository exists to support my learning process by:
- rebuilding exercises from learning platforms (such as Mimo)
- creating small examples for concepts I learn
- building a personal syntax and concept reference library
- experimenting with new ideas and technologies
- tracking my growth as a developer over time
The goal is **not to memorize every syntax rule**, but to:
- understand the underlying concepts
- recognize patterns in code
- learn when and why certain techniques are used
- reproduce solutions using documentation, personal examples, Google, or AI tools
---
# Learning Path
This repository will grow over time as I study the following technologies.
### Web Fundamentals
- HTML
- CSS
- JavaScript
### Frontend Development
- React
- TypeScript
### Backend Development
- Node.js
- Express
### Databases
- SQL
### Additional Languages (Exploration)
Some languages will be explored outside of structured courses to broaden my understanding of programming concepts and scripting environments.
- Python
- Swift
- Lua
Lua in particular will be studied independently because it is commonly used as a **lightweight scripting language** in many systems such as game engines, embedded environments, and automation tools.
---
# Repository Structure
The structure of this repository will expand as I progress through new technologies.
dev-learning-library/
│
├─ html/ → HTML examples and exercises
├─ css/ → CSS examples and styling concepts
├─ javascript/ → JavaScript learning exercises
│
├─ projects/ → small standalone projects
├─ experiments/ → quick concept tests and playground code
├─ notes/ → personal learning notes and explanations
├─ project-structure/ → examples of common project folder structures
│
├─ react/ → future React learning examples
├─ node/ → Node.js backend experiments
├─ express/ → Express.js server examples
├─ sql/ → database query exercises
├─ typescript/ → typed JavaScript experiments
│
├─ python/ → Python learning examples
├─ swift/ → Swift experiments
└─ lua/ → Lua scripting experiments
---
# Folder Overview
## html/
Contains HTML examples used to understand document structure and markup.
Examples include:
- basic HTML structure
- headings and paragraphs
- links and images
- lists
- forms
- semantic HTML
- tables
- media elements
---
## css/
Contains CSS examples related to styling and layout concepts.
Examples include:
- colors and backgrounds
- typography
- margins and padding
- borders and shadows
- flexbox layouts
- grid layouts
- positioning
- responsive design basics
---
## javascript/
Contains JavaScript examples and exercises focused on programming fundamentals.
Examples include:
- variables
- strings and numbers
- comparisons
- conditional statements and logical operators
- functions
- arrays
- objects
- loops
- DOM manipulation
- event listeners
- fetch requests
- basic API interaction
These examples help demonstrate how JavaScript interacts with the browser and external data sources.
---
## projects/
Contains small standalone projects created while learning programming.
Projects usually combine multiple concepts such as HTML, CSS, and JavaScript.
Examples include:
- rebuilding real websites
- mini web applications
- practice projects from learning platforms (such as Mimo)
- personal project ideas
Each project typically contains its own:
- HTML
- CSS
- JavaScript
- assets
- project documentation (README)
---
## experiments/
Contains small experiments and isolated tests of programming concepts.
This folder is used for:
- testing specific language features
- small code snippets
- quick concept demonstrations
- trying out new techniques
Experiments are usually smaller than full projects and may consist of only a few files.
---
## notes/
Contains personal notes explaining concepts learned during the learning process.
These notes help reinforce understanding and provide quick reference material.
---
## project-structure/
Contains examples of common folder structures used in real development projects.
Examples may include:
- basic static website structure
- JavaScript project structure
- Node.js backend structure
- React application structure
- full-stack project structure
Understanding project structure is an important part of learning how real-world applications are organized.
---
## react/
Will contain examples and experiments related to React components and frontend architecture.
---
## node/
Will contain examples and experiments related to Node.js backend development.
---
## express/
Will contain examples related to Express.js server frameworks and API building.
---
## sql/
Contains SQL examples for learning database queries and data structures.
---
## typescript/
Future examples related to typed JavaScript development.
---
## python/
Future examples and experiments while learning Python.
---
## swift/
Future examples related to Swift development.
---
## lua/
Contains experiments and examples while learning the Lua programming language.
Lua is a lightweight scripting language often used in:
- game development
- embedded systems
- scripting environments
- automation tools
This folder will contain small examples exploring Lua syntax, scripting patterns, and practical use cases.
---
# Learning Philosophy
My approach to learning programming focuses on:
- understanding concepts instead of memorizing syntax
- practicing by rebuilding examples
- experimenting with small pieces of code
- organizing knowledge into a structured reference library
By collecting examples, notes, and experiments in this repository, I aim to gradually improve my ability to read, understand, reproduce, and apply code in real-world projects.
---
# Progress Tracking
This repository also serves as a timeline of my learning journey.
Through commits and new examples, it becomes possible to track how my knowledge and coding style evolve over time.
---
# Disclaimer
This repository contains **learning examples and experiments**.
The code may not always follow production-level best practices, as the primary goal is education, exploration, and skill development.
---
# Author
Created as part of my web development learning journey.