Skip to content

Commit 6fc3f25

Browse files
author
Paul Adams
committed
Updated about and home pages, and styled live coding page
1 parent 4bec1f3 commit 6fc3f25

3 files changed

Lines changed: 78 additions & 8 deletions

File tree

pages/about.html

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,60 @@
11
<h1>About</h1>
2-
<p>This is the about page.</p>
2+
<p>
3+
Software Engineer with wide range of experience from hobbyist to professional.
4+
Extensively used the following languages and skill sets since the journey
5+
began in 1993:
6+
</p>
7+
8+
<ul>
9+
<li>C</li>
10+
<li>C++</li>
11+
<li>C#</li>
12+
<li>Java</li>
13+
<li>JavaScript</li>
14+
<li>x86 (16bit real-mode, 32bit protected mode)</li>
15+
<li>z80 Assembler</li>
16+
<li>Ruby</li>
17+
<li>Tcl</li>
18+
</ul>
19+
20+
<h3>Various disciplines include:</h3>
21+
22+
<h4>In vogue:</h4>
23+
<ul>
24+
<li>AWS Cloud Services</li>
25+
<li>Chef</li>
26+
<li>Custom tooling for automation platform</li>
27+
<li>SCRUM, Agile development (Jira,GIT,Stash,Accurev,Confluence)</li>
28+
<li>OData</li>
29+
</ul>
30+
31+
<h4>Not forgetting:</h4>
32+
<ul>
33+
<li>Large scale cross-platform application development (C++)</li>
34+
<li>
35+
Software 3D Graphics engines (all parts of the pipeline from rasterizers,
36+
keyframing and lighting models)
37+
</li>
38+
<li>Compression techniques</li>
39+
<li>Low-level/System level (MS-DOS Extenders PMODE, real-mode x86)</li>
40+
<li>Procedural and real-time graphics</li>
41+
<li>UI (win32 & winforms)</li>
42+
<li>Multi-threading</li>
43+
<li>Web technologies (HTML, CSS, Javascript, AJAX, .NET, .JSP)</li>
44+
<li>Parsers/VMs (custom scripting engines)</li>
45+
<li>Algorithms & Data structures</li>
46+
<li>Optimization techniques (Algorithmic to low level assembly)</li>
47+
<li>
48+
Software protection (keydisks, cryptography, dongles, VMs, anti-debugging
49+
tricks)
50+
</li>
51+
<li>Reverse engineering</li>
52+
</ul>
53+
54+
<h3>Environments:</h3>
55+
<p>Visual Studio, Eclipse, XCODE, A86, Tasm, Masm, Watcom C</p>
56+
57+
<p>
58+
Anything I am able to publish I do so at GitHub:
59+
<a href="https://github.com/majiccode">https://github.com/majiccode</a>
60+
</p>

pages/home.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1-
<h1>Home</h1>
2-
<p>Welcome to the home page!</p>
1+
<h1>Welcome</h1>
2+
<p>Hey, I'm Paul.</p>
3+
<p>
4+
This is my little corner of the internet, a digital playground where I'll be
5+
sharing things that I find interesting.
6+
</p>
7+
<p>
8+
Over time, I hope to fill this space with a collection of projects,
9+
experiments, and thoughts. Thanks for stopping by!
10+
</p>

style.css

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ header {
5757
padding: 2rem;
5858
gap: 2rem;
5959
flex-grow: 1;
60-
overflow: hidden; /* prevent content from overflowing */
60+
/* overflow: hidden; */ /* prevent content from overflowing */
6161
}
6262

6363
.left-panel {
@@ -89,6 +89,10 @@ header {
8989
text-shadow: 0 0 5px #0f0;
9090
}
9191

92+
main {
93+
overflow-y: auto;
94+
}
95+
9296
main a {
9397
color: #0f0;
9498
text-decoration: none;
@@ -139,10 +143,10 @@ main a:hover {
139143
position: fixed;
140144
top: 16px;
141145
right: 16px;
142-
background: rgba(0, 255, 0, 0.1);
146+
background: rgba(0, 0, 0, 0.5);
143147
backdrop-filter: blur(10px);
144148
-webkit-backdrop-filter: blur(10px);
145-
border: 1px solid rgba(0, 255, 0, 0.2);
149+
border: 1px solid rgba(255, 255, 255, 0.2);
146150
border-radius: 15px;
147151
padding: 1rem;
148152
display: flex;
@@ -160,8 +164,8 @@ main a:hover {
160164
}
161165

162166
#run-button {
163-
padding: 10px 30px;
164-
font-size: 1.5em;
167+
padding: 8px 20px;
168+
font-size: 1.2em;
165169
background-color: rgba(0, 255, 0, 0.2);
166170
border: 1px solid rgba(0, 255, 0, 0.5);
167171
color: #0f0;

0 commit comments

Comments
 (0)