diff --git a/archetypes/til.md b/archetypes/til.md new file mode 100644 index 0000000..2a2a2ff --- /dev/null +++ b/archetypes/til.md @@ -0,0 +1,8 @@ +--- +title: "{{ replace .File.ContentBaseName "-" " " | title }}" +date: {{ .Date }} +tags: [] +categories: [] +draft: true +--- + diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..d6a137b --- /dev/null +++ b/content/about/_index.md @@ -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. diff --git a/content/certifications/_index.md b/content/certifications/_index.md new file mode 100644 index 0000000..dad0a6d --- /dev/null +++ b/content/certifications/_index.md @@ -0,0 +1,5 @@ +--- +title: "Certifications" +description: "Industry credentials, labs, conferences, etc" +--- + diff --git a/content/images/cml.png b/content/images/cml.png new file mode 100644 index 0000000..90704f0 Binary files /dev/null and b/content/images/cml.png differ diff --git a/content/til/2025-05-31-budget-cml.md b/content/til/2025-05-31-budget-cml.md new file mode 100644 index 0000000..14aee5b --- /dev/null +++ b/content/til/2025-05-31-budget-cml.md @@ -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. diff --git a/content/til/_index.md b/content/til/_index.md new file mode 100644 index 0000000..9c02238 --- /dev/null +++ b/content/til/_index.md @@ -0,0 +1,6 @@ +--- +title: "Today I Learned" +description: "Quick notes and discoveries" +--- + +A collection of small things I learn daily. diff --git a/hugo.toml b/hugo.toml index 260049f..a298bef 100644 --- a/hugo.toml +++ b/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] diff --git a/layouts/til/single.html b/layouts/til/single.html new file mode 100644 index 0000000..07cf6be --- /dev/null +++ b/layouts/til/single.html @@ -0,0 +1,22 @@ +{{ define "main" }} +
+
+

{{ .Title }}

+ +
+ +
+ {{ .Content }} +
+ + {{ if .Params.tags }} +
+ {{ range .Params.tags }} + #{{ . }} + {{ end }} +
+ {{ end }} +
+{{ end }} \ No newline at end of file