Update content
All checks were successful
Build Hugo Site / build (push) Successful in 10s

This commit is contained in:
Benjamin Hays 2025-05-31 14:21:25 -04:00
parent b16ee643db
commit 560e9200bb
Signed by: BenHays42
GPG Key ID: CE14B8B296ABEFB1
8 changed files with 64 additions and 3 deletions

8
archetypes/til.md Normal file
View File

@ -0,0 +1,8 @@
---
title: "{{ replace .File.ContentBaseName "-" " " | title }}"
date: {{ .Date }}
tags: []
categories: []
draft: true
---

6
content/about/_index.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "About Me"
description: ""
---
Hello, I'm Benjamin Hays. I'm currently a high school student in New Hampshire, and I have a passion for cybersecurity and signals intelligence. Ever since I was very young, I knew I wanted to use my interest in computing to help others; since then, I've taken and passed three certification exams, built up my own homelab, and worked for multiple small businesses with various IT matters. I look forward to studying computer science or intelligence studies in college, then hopefully applying it to good use to help my community and country. My side-passions and hobbies include Torah and Talmud study, involvement in my synagogue, and recreational mathematics.

View File

@ -0,0 +1,5 @@
---
title: "Certifications"
description: "Industry credentials, labs, conferences, etc"
---

BIN
content/images/cml.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 511 KiB

View File

@ -0,0 +1,10 @@
---
title: "TIL: 8 hours of free CML on Cisco DevNet"
date: 2025-05-31
tags: ["cisco","DevNet","networking"]
categories: ["CCIE Security"]
---
![Cisco Modeling Labs](/images/cml.png)
Don't want to pay upwards of $300 dollars per year on CML licenses? Try using [Cisco's CML lab](https://devnetsandbox.cisco.com/DevNet/catalog/cml-sandbox_cml#instructions) on their free [DevNet site](https://developer.cisco.com/). I'm currently in the process of studying for the security automation exam, so this site has been *massively* useful recently. All you need to connect to the lab is the AnyConnect client; just make sure to export (or better yet, automate) your lab configurations before your time expires.

6
content/til/_index.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "Today I Learned"
description: "Quick notes and discoveries"
---
A collection of small things I learn daily.

View File

@ -57,13 +57,17 @@ enabled = true
name = "home"
url = "/"
[[params.menu]]
name = "about"
url = "/about"
[[params.menu]]
name = "posts"
url = "/posts"
#[[params.menu]]
#name = "about"
#url = "/about"
[[params.menu]]
name = "til"
url = "/til"
# Syntax highlight on code blocks
[markup]

22
layouts/til/single.html Normal file
View File

@ -0,0 +1,22 @@
{{ define "main" }}
<article class="til-post">
<header>
<h1>{{ .Title }}</h1>
<time datetime="{{ .Date.Format "2006-01-02" }}">
{{ .Date.Format "January 2, 2006" }}
</time>
</header>
<div class="content">
{{ .Content }}
</div>
{{ if .Params.tags }}
<div class="tags">
{{ range .Params.tags }}
<span class="tag">#{{ . }}</span>
{{ end }}
</div>
{{ end }}
</article>
{{ end }}