-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
executable file
·88 lines (88 loc) · 3.09 KB
/
intro.html
File metadata and controls
executable file
·88 lines (88 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SyntaxSimplify: Intro @syntaxsimplify, Code, Coding, Development</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/syntax.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
<header>
<h1 class="visually-hidden">Syntax Simplify</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="intro.html">Intro</a></li>
<li><a href="syntax.html">Syntax</a></li>
<li><a href="newsletter.html">News</a></li>
</ul>
</nav>
<main>
<div>
<h2>Taking a more critical look at coding.</h2>
<img src="images/thinking-man.png" alt="Thinking man in the sunset"
class="floatright" width="323" height="311">
<p>To borrow a phrase, let's talk about The Good, The Bad and The Ugly.</P>
<p class="bold">The Good.</p>
<ul>
<li>
Coding is amazing in both its depth of creativity and satisfaction for
building a solution that solves a problem.
</li>
<li>
The barrier for entry is low. All you need is a text editor and there are
more resources to learn coding from now than have ever been available before.
</li>
<li>
Programming has a false sterotype of being boring. It's a great fit if you
share the traits of a good engineer, like curiosity, logical thinking,
attention to detail and most impotantly creativity.
</li>
</ul>
<p class="italic_bold">The Bad.</p>
<ul>
<li>This is not a race to win in one sprint. Our area of study is
constantly growing. You must mentally prepare yourself for long term
goals when pursuing this as a career, skill, and outlet for your creativity.
</li>
</ul>
<p class="bold_underline">The Ugly.</p>
<ul>
<li>When we think about coding, developers, or systems engineers, we
think of an ace that types out line after line of code and makes amazing
things happen with little effort given. It sounds like magic. The saying
too good to be true comes to mind. The vast majority of Coders spend a
disproportionate amount of time staring at the screen trying to understand
why something won’t work versus writing shiny new code.
</li>
</ul>
<p>Well this just sounds negative you say?! Not really. The challenges are
just <span class="bold_underline">opportunities</span> for us to find a better
way. The first step is understanding what some of our challenges are. Once
we’re honest in our self-assessment we can make plans to
<span class="bold">minimize the impact of negative risks and amplify the
reward of positive goals.</span>
</p>
<a class="readmore" href="intro2.html">read how</a>
<br class="clear">
<br>
</div>
</main>
<footer>
<nav class="visually-hidden">
<a href="index.html">Home</a>
<a href="intro.html">Intro</a>
<a href="syntax.html">Syntax</a>
<a href="newsletter.html">News</a>
<a href="intro2.html">read how</a>
</nav>
For more information contact:
<a href="mailto:robertkellythompson@gmail.com">
robertkellythompson@gmail.com</a><br>
Copyright © 2020 SyntaxSimplify, LLC<br>
</footer>
</div>
</body>
</html>