Skip to content

Commit

Permalink
2024-07-28/01: add "Quick bits: automate everything" in draft
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Jul 28, 2024
1 parent 060c8ac commit dcc5475
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 2024-07-28/.01-quick-bits-automate-everything.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Quick bits: automate everything

If everything works as expected this blog post should appear in [in my
blog](https://kokada.capivaras.dev/) without I ever touching the
<capivaras.dev> website. I rewrote my [previous Python
script](/2024-07-26/02-using-github-as-a-bad-blog-platform.md) to Go
([permalink](https://github.com/thiagokokada/blog/blob/3c39e0f7cd58b1af885f69871490b05bf6fc7d99/blog.go))
since my attempt to generate proper description to the RSS feed resulted in
slow startup times (not because of Python, but because of my usage of
`nix-shell` since I didn't want to deal with
[venv](https://docs.python.org/3/library/venv.html) or anything to manage my
Python dependencies).

4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ rss.xml: blog $(MARKDOWN)
publish: blog
./blog -publish

.PHONY: today
today:
mkdir $(shell date '+%Y-%m-%d')

.PHONY: clean
clean:
rm -rf blog

0 comments on commit dcc5475

Please sign in to comment.