Welcome to the New Site Design

I’ve switched to the Hugo Diary theme for a cleaner, more focused site. WordPress was becoming too bloated and difficult to maintain. I was never fully happy with the styling I had for it. I also wanted a blog that natively supported Markdown, So I could automate it with my knowledge base. As a plus, Hugo is written in Golang, one of my favourite languages – It’s the perfect front-end site for back-end devs.

Features I Love

  • Clean, minimal design that puts content first
  • Typography focused - excellent for reading
  • Fast loading times
  • Easy navigation with categories and tags

What’s Coming

I’ll be migrating selected content from my previous WordPress site and creating new posts about:

  1. Analysis tutorials and walkthroughs, leveraging AI based tools
  2. Security Research findings and insights
  3. Homelab Projects and infrastructure guides

Credits

This site is built with Hugo and uses a modified version of the Diary theme:

Code Highlighting

The theme supports excellent code highlighting:

1
2
3
4
5
6
7
def analyze_pcap(filename):
    """Analyze a PCAP file for suspicious activity"""
    packets = rdpcap(filename)
    
    for packet in packets:
        if packet.haslayer(TCP):
            print(f"TCP: {packet[IP].src} -> {packet[IP].dst}")

Last modified on 2025-06-25