This is a blogging website where I post technical information for myself, Sam Gleske. If others find it useful then more power to 'em. If you'd like to learn more about me then check out my first post.
_config.yml
._posts
and _drafts
._config.yml
with your own information.LICENSE.txt
and make it your own.# Step 1
git clone https://github.com/samrocketman/blog
# Step 2
rm _posts/*.md* _drafts/*.md
# Step 3
vim _config.yml
# Step 4
vim LICENSE.txt
# Step 5
git remote add myblog git@github.com:<your_username>/<your_blog>.git
git push myblog 'refs/heads/main:refs/heads/gh-pages'
Note:
gh-pages
branch automatically gets published to GitHub pages. However, if you'd rather be more like this blog publishing frommain
, then you can customize the branch to main from the repository settings.
Legal note: the 3rd_party/
directory must remain intact in order to satisfy
license requirements of both work provided by myself and authors in which I
built upon. It contains all notices and licenses for using other peoples'
source code.
If you're using a Mac, then building the blog won't work. It's due to differences in the BSD toolset vs the GNU toolset.
The blog requires Ruby 2.4 to be installed. It's best to use rvm for Ruby.
Set up with rvm
.
rvm install 2.4
#optionally install within a "blog" gemset
rvm use 2.4@blog --create
If you encounter an error about not being in a login shell then use bash -l
to
create one. Now when you open a new terminal be sure to execute the following
commands before modifying the blog.
rvm use 2.4@blog --create
Install dependencies.
make deps
There a "make" commands which make developing this blog easier and performing more complex tasks.
make
- Starts the website removing all distractions (development mode).make prod
- Starts a local copy of the website like it is meant to be viewed
in production (simulated production mode).make test
- Performs automated peer review and generates the live site in
the _site/
directory (production mode).Other make commands:
make history
- will generate data for your site which will be used for the
"last updated" links in blog posts. This automatically gets run with make test
as well.make sign
- will GPG sign blog posts which have changed using your default
GPG private key.What is it? It performs common and repeatable tasks a person would normally do when checking this blog. Rather than having to do it you're able to rely on computers to check it for you.
What sort of tasks are performed in automated peer review for this blog?
Automated peer review is useful to run before you even publish the website for readers to see. I use GitHub pull requests and Travis CI for automated peer review when publishing my new blog posts.
Note: Grammar and spell checking isn't perfect due to the technical nature of my blog. I have added
grammar_ignore.dict
for skipping keywords andgrammar_skip.sentences
for skipping whole sentences when I'm writing. It doesn't always get it right but it still forces me to double check the sentences it calls out.
Sign any changed blog posts:
make sign
Force re-signing all blog posts:
make sign FILES="$(echo _posts/*.md)"
Force re-signing a specific blog post:
make sign FILES="_posts/somepost.md"
Sign a commit:
git commit -S
All source code is MIT Licensed by LICENSE.txt with exception for:
_drafts/
, _posts/
, and images/
is licensed under
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
and is governed by the contents of LICENSE.txt.3rd_party/
folder.