-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
62 lines (58 loc) · 2.3 KB
/
about.html
File metadata and controls
62 lines (58 loc) · 2.3 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
---
layout: page
title: "About"
description: "Learn more about the Scrawlon's purpose, and the author, Scott McGrath"
tags: []
heading: "About Scrawlon. Who's the author? What's the point?"
header_image:
file: blue-blast.jpg
caption:
credit:
name: Eric Sonstroem
url: https://www.flickr.com/photos/sonstroem/
license:
type: Creative Commons
url: https://creativecommons.org/licenses/by/2.0/
source: Flickr
title: Blue blast
url: https://flic.kr/p/Kgfvw5
---
<h2>About Scrawlon</h2>
<p>
My name is Scott McGrath. I'm an experienced software/web developer that has contributed to many coding projects
-- from simple informational webpages to complex interactive web applications.
</p>
<p>
I wasn't always a developer though. I once had a long career in an unrelated field.
I stumbled into programming. I don't remember when, but I came a across a free online course and enrolled.
It was definitely a struggle in the beginning. In some ways, it still is.
</p>
<p>
Sometimes I learn just enough to get the job done. Other times, I'm obessed, spending every
free moment reading blogs, watching videos,
examining source code, and working on example projects to solidify this new knowledge with experience.
</p>
<p>
Learning is the core. There will always be stumbling blocks. There will always be too much to remember.
When I'm first getting started, I take notes. When I struggle with something, and can't find the answer
online, I try to make a note of it. If and when I find the time, I'll write about it here -- for my own
sake, and for those that might stumble here searching for an answer.
</p>
<h2>AKA Scrawlon</h2>
<p>
On the Internet, I often go by Scrawlon. It's short, memorable and has that cool "hacker"
vibe -- like Neo, Count Zero or Mr. Robot -- Hey. I loved sci-fi long before I loved programming.
</p>
<ul class="social-networks">
{% assign social_networks = site.owner.social_networks %}
{% for social_network in social_networks %}
<li>
<a class="bg-primary text-white p-2 rounded text-decoration-none"
href="{{social_network.url}}"
title="{{social_network.name}}"
target="_blank" rel="noopener noreferrer">
<i class="fa {{social_network.icon}}"></i> scrawlon
</a>
</li>
{% endfor %}
</ul>