-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blog.html
72 lines (70 loc) · 3.92 KB
/
Blog.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="icon" type="image/x-icon" href="image/favicon.ico">
<link rel="stylesheet" href="Blog.css">
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="index.html">Home</a>
<a href="Blog.html">Blog</a>
<a href="about.html">About Me</a>
<a href="Holden_Weber_Resume.html">Resume</a>
</div>
<!-- Use any element to open the sidenav -->
<span onclick="openNav()">
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</span>
<div class="content">
<h1>Blog Posts</h1>
<section>
<h2><a href="SQL.html">SQL Database Management for a Medical System</a></h2>
<p1><em>10/11/2024</em></p1>
<p>This SQL project outlines the creation of a relational database designed to manage critical data for a medical practice. It includes tables for physicians, patients, visits, and payments, along with automated procedures for adding, updating, and tracking data. This system is built to improve data accessibility and streamline medical practice management by automating tasks like balance updates and salary tracking.</p>
</section>
<section>
<h2><a href="WirelessLinux.html">Wireless Linux LAN</a></h2>
<p1><em>09/13/2024</em></p1>
<p>This project examines wireless monitoring tools for Linux, including Aircrack-ng, Fern WiFi Cracker, Kismet, and DOSBox. The guide covers installation and implementation for each tool to audit, monitor, and secure wireless networks effectively.</p>
</section>
<section>
<h2><a href="VPN_Essay.html">VPN Essay</a></h2>
<p1><em>04/29/2024</em></p1>
<p> How VPNs (Virtual Private Networks) work, reasons to use a VPN, compare & contrast hardware versus software VPNs, different types of VPNs, and VPN protocols.</p>
</section>
<section>
<h2><a href="ZabbixSNMP.html">Zabbix SNMP Project</a></h2>
<p1><em>03/20/2024</em></p1>
<p>This project explores setting up SNMP monitoring with Zabbix. It covers SNMP protocol basics, a comparison of monitoring tools, and step-by-step instructions for installing Zabbix on a virtual machine, focusing on network management and secure monitoring through SNMP v3.</p>
</section>
<section>
<h2><a href="Movie_API_Blog.html">Movie Ranker</a></h2>
<p1><em>03/14/2024</em></p1>
<p>Discover and rank movies effortlessly with Movie Ranker. Explore handpicked films, get key details, and enjoy AI-generated summaries. Dark theme for a cinematic experience.</p>
</section>
<section>
<h2><a href="Bash_Blog.html">My First Bash Script</a></h2>
<p1><em>02/25/2024</em></p1>
<p>A bash-based CLI tool that allows users to quickly upload files to an Azure cloud storage solution, providing a simple and seamless upload experience similar to popular storage services.</p>
</section>
<section>
<h2><a href="AnswerFileBlog.html">Automating Windows Installation with Answer Files</a></h2>
<p1><em>02/19/2024</em></p1>
<p>This guide covers the creation of answer files to automate Windows installation and imaging processes. It includes step-by-step instructions for automating a basic Windows 10 installation as well as advanced disk partitioning and image deployment for cloning setups.</p>
</section>
<section>
<h2><a href="BuildLAN.html">Build LAN Project</a></h2>
<p1><em>10/24/2023</em></p1>
<p>This project involves designing and implementing a local area network (LAN) for the 10th floor financial department. It includes network architecture, switch selection, fiber patch panels, power solutions, and the necessary rack and equipment recommendations to ensure a stable, redundant, and secure network setup.</p>
</section>
<script src="myscripts.js"></script>
</div>
</body>
</html>