<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>colinblackman.com</title>
    <link>https://colinblackman.com/</link>
    <description>Recent content on colinblackman.com</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 29 Oct 2025 10:38:40 -0700</lastBuildDate>
    <atom:link href="https://colinblackman.com/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>About</title>
      <link>https://colinblackman.com/old_index/</link>
      <pubDate>Wed, 29 Oct 2025 10:38:40 -0700</pubDate>
      <guid>https://colinblackman.com/old_index/</guid>
      <description>&lt;p&gt;Hi, I’m &lt;strong&gt;Colin Blackman&lt;/strong&gt; — I work in corporate cybersecurity at &lt;strong&gt;Dell Technologies&lt;/strong&gt;, where I lead engineering efforts for our security platform teams.&lt;/p&gt;&#xA;&lt;p&gt;Over the years I’ve spent a lot of time on the operational side of enterprise security: building scalable detection and response platforms, automating controls coverage, and aligning engineering outcomes with risk reduction.&lt;/p&gt;&#xA;&lt;p&gt;This blog is my personal space to document what I’m learning as I dig deeper into &lt;strong&gt;Cribl&lt;/strong&gt; and &lt;strong&gt;Elastic&lt;/strong&gt; — two platforms that are transforming how we move, enrich, and analyze security and observability data.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ChatGPT &#43; Hugo &#43; Cloudflare Pages: Speedrun</title>
      <link>https://colinblackman.com/posts/chatgpt-cloudflare-pages/</link>
      <pubDate>Wed, 29 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://colinblackman.com/posts/chatgpt-cloudflare-pages/</guid>
      <description>&lt;p&gt;Here’s a speedy workflow for shipping posts with minimal friction:&lt;/p&gt;&#xA;&lt;h2 id=&#34;1-outline-with-chatgpt&#34;&gt;1) Outline with ChatGPT&lt;/h2&gt;&#xA;&lt;p&gt;Ask ChatGPT to draft an outline for your post. Example prompt:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;Draft a concise outline for a blog post about migrating from WordPress to Hugo. Include an intro, 5 key steps, a short code sample, and an FAQ.&amp;rdquo;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Copy the outline into a new Markdown file:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;hugo new posts/migrating-from-wordpress.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Set &lt;code&gt;draft: true&lt;/code&gt; until you’re ready to publish.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hugo Basics You’ll Use Every Week</title>
      <link>https://colinblackman.com/posts/hugo-basics/</link>
      <pubDate>Wed, 29 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://colinblackman.com/posts/hugo-basics/</guid>
      <description>&lt;p&gt;A quick reference you’ll use constantly:&lt;/p&gt;&#xA;&lt;h2 id=&#34;new-content&#34;&gt;New content&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;hugo new posts/my-next-post.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;Edit the file under &lt;code&gt;content/posts/…&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Set &lt;code&gt;draft: false&lt;/code&gt; to publish.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;local-preview&#34;&gt;Local preview&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;hugo server -D&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;-D&lt;/code&gt; shows drafts.&lt;/li&gt;&#xA;&lt;li&gt;Live-reload updates as you edit.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;front-matter-fields&#34;&gt;Front matter fields&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;title&lt;/code&gt;, &lt;code&gt;date&lt;/code&gt;, &lt;code&gt;draft&lt;/code&gt;, &lt;code&gt;description&lt;/code&gt;, &lt;code&gt;tags&lt;/code&gt;, &lt;code&gt;categories&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Add &lt;code&gt;slug&lt;/code&gt; to customize the URL.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;static-files&#34;&gt;Static files&lt;/h2&gt;&#xA;&lt;p&gt;Anything in &lt;code&gt;/static&lt;/code&gt; is served at the site root. Put images, favicons, etc. there.&lt;/p&gt;&#xA;&lt;h2 id=&#34;shortcodes&#34;&gt;Shortcodes&lt;/h2&gt;&#xA;&lt;p&gt;Hugo shortcodes let you embed components inside Markdown. For example:&lt;/p&gt;</description>
    </item>
    <item>
      <title>About</title>
      <link>https://colinblackman.com/about/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://colinblackman.com/about/</guid>
      <description>&lt;p&gt;Hi, I’m &lt;strong&gt;Colin Blackman&lt;/strong&gt; — I work in corporate cybersecurity at &lt;strong&gt;Dell Technologies&lt;/strong&gt;, where I lead engineering efforts for our security platform teams.&lt;/p&gt;&#xA;&lt;p&gt;Over the years I’ve spent a lot of time on the operational side of enterprise security: building scalable detection and response platforms, automating controls coverage, and aligning engineering outcomes with risk reduction.&lt;/p&gt;&#xA;&lt;p&gt;This blog is my personal space to document what I’m learning as I dig deeper into &lt;strong&gt;Cribl&lt;/strong&gt; and &lt;strong&gt;Elastic&lt;/strong&gt; — two platforms that are transforming how we move, enrich, and analyze security and observability data.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
