This commit is contained in:
parent
b16ee643db
commit
560e9200bb
8
archetypes/til.md
Normal file
8
archetypes/til.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: "{{ replace .File.ContentBaseName "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
tags: []
|
||||
categories: []
|
||||
draft: true
|
||||
---
|
||||
|
6
content/about/_index.md
Normal file
6
content/about/_index.md
Normal 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.
|
5
content/certifications/_index.md
Normal file
5
content/certifications/_index.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
title: "Certifications"
|
||||
description: "Industry credentials, labs, conferences, etc"
|
||||
---
|
||||
|
BIN
content/images/cml.png
Normal file
BIN
content/images/cml.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 511 KiB |
10
content/til/2025-05-31-budget-cml.md
Normal file
10
content/til/2025-05-31-budget-cml.md
Normal 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"]
|
||||
---
|
||||
|
||||

|
||||
|
||||
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
6
content/til/_index.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "Today I Learned"
|
||||
description: "Quick notes and discoveries"
|
||||
---
|
||||
|
||||
A collection of small things I learn daily.
|
10
hugo.toml
10
hugo.toml
@ -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
22
layouts/til/single.html
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user