-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 3.64 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 3.64 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
<!DOCTYPE html>
<head>
<title>Dan's GitHub Page</title>
<script src="https://kit.fontawesome.com/d6cc444946.js" crossorigin="anonymous"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1>Welcome to my GitHub Page</h1>
<div id="leftcontent">
<div class="card">
<h2>Social Media Profiles</h2>
<p><a href="https://github.com/DTLudlow" target="_blank"><i class="fa-brands fa-github fa-2xl icons"></i></a>GitHub</p>
<p><a href="https://www.linkedin.com/in/dan-ludlow-987936a1" target="_blank"><i class="fa-brands fa-linkedin-in fa-2xl icons"></i></a>LinkedIn</p>
<p><a rel="me" href="https://mas.to/@ninthplanet" target="_blank"><i class="fa-brands fa-mastodon fa-2xl icons"></i></a>Mastodon</p>
<p><a href="https://twitter.com/nptweetings" target="_blank"><i class="fa-brands fa-x-twitter fa-2xl icons"></i></a>X</p>
</div>
</div>
<div id="maincontent">
<div class="card">
<h2>About Me</h2>
<p>
I'm currently training to be a better programmer. I was previously a systems/database administrator,
mostly administrating MS SQL databases hosted on Windows Server platforms.
</p>
<p>
I've most recently worked with the following technologies:
<ul>
<li>C++</li>
<li>Docker</li>
<li>Java (including Spring Boot and Spring Security)</li>
<li>Linux (Ubuntu and Red Hat/AlmaLinux)</li>
<li>MS SQL (T-SQL)</li>
<li>Perl</li>
<li>PowerShell</li>
<li>Python</li>
</ul>
</p>
</div>
<div class="card">
<h2>My GitHub Projects</h2>
<ul>
<li>
<a href="https://github.com/DTLudlow/eprints-3.4.4-docker" target="_blank">EPrints 3.4.4 Docker Image</a> – a slight re-working of the official
EPrints Docker image, available at <a href="https://wiki.eprints.org/w/Installing_EPrints_using_Docker" target="_blank">https://wiki.eprints.org/w/Installing_EPrints_using_Docker</a>,
that utilises EPrints v3.4.4. Now updated to use AlmaLinux v8.
</li>
<li>
<a href="https://github.com/DTLudlow/CiviCRM" target="_blank">CiviCRM Wordpress Docker Image</a> – a Docker Compose configuration for installing CiviCRM
as a Wordpress plugin. Uses the current version of the Wordpress Docker image. A mixture of manual and bash script setup.
</li>
</ul>
</div>
<div class="card">
<h2>Some Useful Resources</h2>
<h3>Perl</h3>
<ul>
<li>Programming Perl, 4th Edition book: <a href="https://www.oreilly.com/library/view/programming-perl-4th/9781449321451/" target="_blank">https://www.oreilly.com/library/view/programming-perl-4th/9781449321451/</a></li>
</ul>
<h3>PowerShell</h3>
<ul>
<li>Automating Administration with PowerShell, Microsoft Learn Course: <a href="https://learn.microsoft.com/en-gb/training/courses/az-040t00" target="_blank">https://learn.microsoft.com/en-gb/training/courses/az-040t00</a></li>
<li>Microsoft Learn PowerShell content: <a href="https://learn.microsoft.com/en-gb/training/browse/?terms=PowerShell" target="_blank">https://learn.microsoft.com/en-gb/training/browse/?terms=PowerShell</a></li>
</ul>
</div>
</div>
</body>