-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 2.52 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<title>Koop Codes</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108896951-2"></script>
<script>window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-108896951-2');
</script>
<meta charset="utf-8">
<!--<link rel="stylesheet" href="./styles.css">-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<style>
body {
font-family: 'Inconsolata', serif;
text-shadow: 1px 1px 1px #aaa;
}
</style>
</head>
<header>
<h1>Koop Codes</h1>
</header>
<section id="Intro">
<h2>
<p>I know, I know. It doesn’t look like much. Yet</p>
<p></p>
</h2>
<p>But on my own code learning journey this webpage represents a bit of technical milestone for me as I put the whole thing together with a command line and a keyboard, no windows, no menus, no mouse :-)</p>
<p></p>
<p></p>
</section>
<section id="deets">
<p>I installed Ubuntu LTS 16.04 then complied Node and Express from source, and that’s what I'm using to serve this page to you now</p>
<p>The page itself will be evolving quickly as I progress through <a href="https://bloc.io" target="_blank">Bloc’s</a> Full Stack Web Dev curriculum, and will eventually turn into my personal blog and a portfolio of my completed projects and freelance work. But for the time being you may see some odd features that make no sense for a page like this, but that's just me playing with new tools and concepts while I hone my skills</p>
</section>
<p></p>
<section id="resources">
<p>I thought this article was helpful to me as a Windows user to help ease me back in to the Linux/CLI I learned many years ago: <a href="https://char.gd/blog/2017/how-to-set-up-the-perfect-modern-dev-environment-on-windows" target="_blank">How to set up the perfect modern dev environment on Windows</a></p>
<p>This was also very helpful in helping me get my HTTP server running, though it is a bit out of date when it comes to using Upstart instead of systemd to run it as a service: <a href="http://seanvbaker.com/setting-up-a-node-website" target="_blank">The Node Den - Setting Up a Node.js Website</a></p>
</section>
<a href='#Intro'>Go back up to the first section</a>
<script src='./index.js'></script>
</body>
</html>