-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patht5-problem-solving.html
More file actions
112 lines (89 loc) · 3.44 KB
/
t5-problem-solving.html
File metadata and controls
112 lines (89 loc) · 3.44 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
<!DOCTYPE html>
<html>
<head>
<title>ruthbai blog</title>
<meta charset="UTF-8">
<link href="style/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<div style="text-align: center"><img src="website logo.png" height="150" width="150" /></div>
</header>
<nav>
<ul >
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="CARD SLIDER.html">contact</a></li>
</ul>
</nav>
<div class="box">
<h3>
Tell your non-tech friend a story about a time you:
</h3>
<ol>
<li>Got blocked on a simple problem</li>
<li>Solved a problem in an elegant way</li>
</ol>
<h4>
What was the problem?
</h4>
<p>
The problem that I had while I was working on Javascript was that JS was completely new thing
for me (and I still don't know fully how to use JS at this point). For instance I knew there
was if else statement, for statement to use but I didn't know how.
</p>
<h4>
What problem solving techniques did you use?
</h4>
<p>
First of all I tried to solve questions myself but because I had no idea how to solve the
question myself I looked up on google, sometimes the answer it self so I know how JS works
and then I trace back so I understand what the question is rather than just copy and pasting.
I asked Harrison at the end because I really could not understand how JS work. It was hard but
as Harrison adviced drawing how the Javascript might look like in the end visually helped me more.
</p>
<h4>
How did you feel throughout the process?
</h4>
<p>
It was like learning math (but not math) all from the beginning. You just need to get used
to how JS works and because JS is more mechanical than visual.
</p>
<h4>
What did you learn?
</h4>
<p>
Instead of trying to work on small contents first I need to know what JS function is needed
to be used in order to make things work, for instance I need for function for some but in other
JS I need if else function.
</p>
<h3>
Elegant solution?
</h3>
<p>
Not really.. JS is not like CSS I can't really see it visually before I make JS working beforehand.
Although in order to count something I know I need to use for and in order to list something out and
make things stop when the result has been given I need to use if else statement.
</p>
<h3>
Reflect..
</h3>
<p>
I am good at trying something but also breaking something as well. I am learning how to do
console logging and I read error messages but I don't think I fully understand how to solve this yet.
I am good at googling but I can spend ages doing this because I need extra
explanantion. I think I am fairly confident asking coaches for help but I try not to because
I have to try first before I reach out to them they are my last option. Asking peers and
improving my process with reflection would be the weakness for me because I tend to have
break if nothing works out for me but I know there are friendly and intelligent peers out there.
</p>
<p> <I>problem solving</I> technical blog </p>
</div>
</div>
</ul>
</header>
<footer>
<div style="text-align: center"> Devs academy</div>
</footer>
</body>
</html>