New blog
I found it highly inappropriate that as a professional web devleoper my personal site was garbage. Granted it was written 7 years ago when I was just learning what I was doing. Now since I do this professionally I do’nt wnt to have to deal with the same frustrations I do all day and end up figuring out some other cloud provider so I discovered that github pages works with this jekyll thing and I’m rolling with that for now. Its cheap and seems pretty easy so far although my first attempt at this post got steamrolled into another Welcome to Jekyll! post. I’m leaving that one there just for my own reference because this site is for me anyway I do what I want.
For future me (or someone unlucky):
Some notes from my install
- Ruby comes with
bundle
already so no need to install it on your own. - Make sure to get Ruby with the dev kit. The winget package name was wrong in the Ruby docs. I used
RubyInstallerTeam.RubyWithDevKit.3.2
- Make sure you’re doing your
jekyll new
in either the root of the repo or in/docs
because this is what github pages looks at to serve your site. - Still not sure what to put in config.yml for
baseurl
- I needed to add
gem webrick
to the gemfile. Idk if its a windows thing or what.