Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions advice/aria-shirzadi-advice.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../css/aria-shirzadi.css">
<!-- replace Skillcrush with your name here -->
<title>Aria's Advice For Newbies</title>
</head>

<!-- replace skillcrush with your name here -->

<body class="aria-advice">
<header>
<a href="../index.html">Back to Main Page</a>
<h1>Hi, my name is Aria and I have some advice for you!</h1>
</header>

<section>
<div class="advice">
<h2>Discipline, Patience, and Effort</h2>
<p>These things sound cliche, but you can pretty much achieve whatever you want with these qualities. Like the
rest of this advice page suggests, there will be challenges and moments of doubt. That is completely normal
whenever you are learning something new and trying to grow as a person. It is a good thing and should be
embraced. The best thing I can do when I encounter some kind of conflict is to just keep going and chipping
away, it will all
make sense eventually. The answers will come to you and any concerns will be addressed as you get more
experience under your belt.</p>

<p>So be excited and stay positive as you continue to challenge yourslef. Have the discipline to force yourself
forward even when you don't want to or it is uncomfortable to do so. Have the patience to know that struggle is
a part of the process and it will eventually be worth it. Remember that effort wins every time and just keep
forging ahead.</p>

<h2>Confusion is your friend!</h2>
<p>When you start programming your first web app you are doing something that you have never done
before. It's a new challenge, a new opportunity, and in the case of software development, something
so specific that it's probably never been done before.</p>

<p>Confusion, therefore, is a sign that you are heading in the right direction. It's a signal that you
have engaged in the problem solving pursuit that is math and technology and that it's time for you
to dig deeper and keep going because clarity awaits.</p>

<h2>Suspended disbelief plays an important role.</h2>
<p>When you are learning a new technology, whether you are learning to write your first programming
language, or just the latest framework, you go through this uncomfortable phase where you know that
the code you are looking at is doing this THING but you don't understand HOW exactly it's happening.
</p>

<p>This is a normal part of the process of learning a new technology, and in fact, it's a critical part
of the process.</p>

<p>You see when you encounter a new programming language part of your learning process includes learning
to train your eye. The way to train your eye is to read a good deal of code even when you don't
totally understand what it's doing.</p>
</div>
</section>

<footer>
<!-- replace Skillcrush with your name here -->
<p>&copy; Copyright Aria 2021.</p>
</footer>
</body>

</html>
45 changes: 45 additions & 0 deletions css/aria-shirzadi.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/***** BASE STYLES *****/

body {
font-size: 16px;
font-family: sans-serif;
color: white;
margin: 0 auto;
background: #0f3108;
max-width: 800px;
}

h1 {
font-size: 2.25em;
color: blanchedalmond;
margin-top: 1em;
text-align: center;
padding-bottom: 10px;
}

h2 {
font-size: 1.5em;
font-weight: bold;
color: whitesmoke;
text-align: center;
padding: 10px 0;
border-bottom: 1px solid blanchedalmond;
border-top: 1px solid blanchedalmond;
margin-top: 30px;
}

p {
line-height: 19px;
}

a {
text-decoration: none;
color: rgb(203, 5, 5);
line-height: 2;
}

footer {
text-align: center;
padding-top: 1em;
color: antiquewhite;
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ <h2>Skillcrusher's Advice for Newbies!</h2>
<a href="advice/Bismah-Hassan-advice.html">Bismah H's Advice</a><br>
<a href="advice/carmen-olmsted-advice.html">Carmen's Advice</a><br>
<a href="advice/annie-heath-advice.html"> Annie's Advice</a><br>
<a href="advice/aria-shirzadi-advice.html">Aria's Advice</a><br>
</section>
</section>
</body>
Expand Down