<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
	<title>Outman&#39;s Blog</title>
	<link>https://blog.outmanos.com/</link>
	<description>Recent content in Welcome to Outman&#39;s Blog on Outman&#39;s Blog</description>
	<generator>Hugo -- gohugo.io</generator>
	<language>en-us</language>
	<lastBuildDate>Wed, 11 Dec 2024 13:14:26 +0000</lastBuildDate>
    
        <atom:link href="https://blog.outmanos.com/index.xml" rel="self" type="application/rss+xml" />
	
	
	<item>
		<title>ESNs</title>
		<link>https://blog.outmanos.com/posts/esns/</link>
		<pubDate>Wed, 11 Dec 2024 13:14:26 +0000</pubDate>
		
		<guid>https://blog.outmanos.com/posts/esns/</guid>
		<description>&lt;p&gt;Test publish&lt;/p&gt;
</description>
	</item>
	
	<item>
		<title>How this blog was created</title>
		<link>https://blog.outmanos.com/posts/how-this-blog-was-created/</link>
		<pubDate>Sun, 26 May 2024 17:54:56 +0000</pubDate>
		
		<guid>https://blog.outmanos.com/posts/how-this-blog-was-created/</guid>
		<description>&lt;p&gt;&lt;img src=&#34;banner.jpg&#34; alt=&#34;targets&#34;&gt;
&lt;em&gt;An image of Parisian railtracks to make this post more aesthetic, because why not.&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;
&lt;p&gt;This is intended to be a guide on how to host your own &lt;a href=&#34;https://gohugo.io/&#34;&gt;HUGO&lt;/a&gt; blog on Netlify for free.&lt;/p&gt;
&lt;p&gt;First, you need to set up HUGO for local development. I&amp;rsquo;ll be providing Windows-specific steps but you can find alternatives for macOS and Linux under the source for each step/command.&lt;/p&gt;
&lt;p&gt;You can simply follow the steps provided here:
&lt;a href=&#34;https://gohugo.io/installation/&#34;&gt;https://gohugo.io/installation/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But if you&amp;rsquo;re on Windows 11 with WinGet and Chocolatey already installed, you can simply follow the steps below. If not, you need to first check if &lt;a href=&#34;https://learn.microsoft.com/en-us/windows/package-manager/winget/&#34;&gt;WinGet&lt;/a&gt; and &lt;a href=&#34;https://docs.chocolatey.org/en-us/choco/setup/&#34;&gt;Chocolatey&lt;/a&gt; are installed.&lt;/p&gt;
&lt;h2 id=&#34;prerequisites&#34;&gt;Prerequisites&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;Note: make sure to run PowerShell as administrator&lt;/em&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://git-scm.com/&#34;&gt;Git&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;winget install --id Git.Git -e --source winget&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://go.dev/&#34;&gt;Go&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Installer: &lt;a href=&#34;https://go.dev/doc/install&#34;&gt;Download page&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Go is also available on WinGet through the following command:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;winget install -e --id GoLang.Go.1.20&lt;/code&gt; (Latest version as of the writing of this article)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://gohugo.io/hugo-pipes/transpile-sass-to-css/#dart-sass&#34;&gt;Dart Sass&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;choco install sass&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;exploring-hugo&#34;&gt;Exploring HUGO&lt;/h2&gt;
&lt;h3 id=&#34;themes&#34;&gt;Themes&lt;/h3&gt;
&lt;p&gt;I built my HUGO theme on &lt;a href=&#34;https://github.com/ericmurphyxyz/hugo-starter-netlify-cms&#34;&gt;Hugo Starter with Netlify CMS&lt;/a&gt; and adapted the tagging system and RSS Feed integration from &lt;a href=&#34;https://github.com/lukesmithxyz/lugo&#34;&gt;LUGO&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I made sure to update the CMS dashboard package from using an old version of Netlify CMS (&lt;a href=&#34;https://unpkg.com/netlify-cms@%5E2.0.0/dist/netlify-cms.js&#34;&gt;https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js&lt;/a&gt;) to the latest version of Decap CMS (&lt;a href=&#34;https://unpkg.com/decap-cms@%5E3.1.2/dist/decap-cms.js&#34;&gt;https://unpkg.com/decap-cms@^3.1.2/dist/decap-cms.js&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;I will provide a template on my GitHub soon and update this post with a link. I need to implement a tag page and search first.&lt;/p&gt;
&lt;h3 id=&#34;development&#34;&gt;Development&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Clone this HUGO theme:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;git clone https://github.com/ericmurphyxyz/hugo-starter-netlify-cms.git&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(Will soon replace this with my theme)&lt;/em&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Navigate to the project folder&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run the following command:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;hugo server&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This will deploy your website to localhost blazingly fast. You can navigate it by following the link with the exact port that should appear on the terminal.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Open in your favorite text editor, like Vim or VSCode&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Now to editing:&lt;/p&gt;
&lt;p&gt;HUGO is as simple as it gets, I&amp;rsquo;m still learning to script the different pages with Go and interested in exploring shortcodes in the future but for now all you need to know is some Markdown and writing your first post under the &lt;code&gt;/content&lt;/code&gt; directory. I&amp;rsquo;ll leave a sample blog post as a starting example.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;deployment&#34;&gt;Deployment&lt;/h3&gt;
&lt;p&gt;First you need to create a free Netlify account and a GitHub account if you don&amp;rsquo;t have one already. Then follow these steps:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Push your blog to a GitHub repository of your choosing.&lt;/li&gt;
&lt;li&gt;Click the following link: &lt;a href=&#34;https://app.netlify.com/start/deploy?repository=https://github.com/ericmurphyxyz/hugo-starter-netlify-cms&amp;amp;stack=cms&#34;&gt;https://app.netlify.com/start/deploy?repository=https://github.com/ericmurphyxyz/hugo-starter-netlify-cms&amp;amp;stack=cms&lt;/a&gt; &lt;em&gt;(Will soon replace this with my theme)&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Choose the branch you want to deploy&lt;/li&gt;
&lt;li&gt;You can now add your own registered domain or keep hosting your blog as &lt;a href=&#34;https://your-website.netlify.app&#34;&gt;https://your-website.netlify.app&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h1 id=&#34;notes&#34;&gt;Notes&lt;/h1&gt;
&lt;p&gt;I will thouroughly expand on this post soon™.&lt;/p&gt;
</description>
	</item>
	
	<item>
		<title>Testing HUGO</title>
		<link>https://blog.outmanos.com/posts/testing-hugo/</link>
		<pubDate>Sat, 25 May 2024 18:54:56 +0000</pubDate>
		
		<guid>https://blog.outmanos.com/posts/testing-hugo/</guid>
		<description>&lt;p&gt;Just testing for now!&lt;/p&gt;
</description>
	</item>
	
	<item>
		<title>About</title>
		<link>https://blog.outmanos.com/about/</link>
		<pubDate>Sat, 25 May 2024 17:54:56 +0000</pubDate>
		
		<guid>https://blog.outmanos.com/about/</guid>
		<description>&lt;p&gt;Check out my &lt;a href=&#34;https://outmanos.com/&#34;&gt;portfolio&lt;/a&gt; for more information.&lt;/p&gt;
</description>
	</item>
	
	</channel>
</rss>
