From 6e4176c498a113b0e6522ce91d56b0bc98f49e70 Mon Sep 17 00:00:00 2001 From: Ben Kutil Date: Thu, 30 Jan 2020 22:21:08 -0500 Subject: [PATCH] add post stubs --- _posts/2020-01-29-welcome-to-jekyll.markdown | 29 -------------------- source/_posts/2020-01-20-day-1-of-30.md | 27 ++++++++++++++++++ source/_posts/2020-01-21-day-2-of-30.md | 28 +++++++++++++++++++ source/_posts/2020-01-27-day-8-of-30.md | 25 +++++++++++++++++ source/_posts/2020-01-28-day-9-of-30.md | 25 +++++++++++++++++ 5 files changed, 105 insertions(+), 29 deletions(-) delete mode 100644 _posts/2020-01-29-welcome-to-jekyll.markdown create mode 100644 source/_posts/2020-01-20-day-1-of-30.md create mode 100644 source/_posts/2020-01-21-day-2-of-30.md create mode 100644 source/_posts/2020-01-27-day-8-of-30.md create mode 100644 source/_posts/2020-01-28-day-9-of-30.md diff --git a/_posts/2020-01-29-welcome-to-jekyll.markdown b/_posts/2020-01-29-welcome-to-jekyll.markdown deleted file mode 100644 index fd31650..0000000 --- a/_posts/2020-01-29-welcome-to-jekyll.markdown +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: post -title: "Welcome to Jekyll!" -date: 2020-01-29 20:58:23 -0500 -categories: jekyll update ---- -You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. - -Jekyll requires blog post files to be named according to the following format: - -`YEAR-MONTH-DAY-title.MARKUP` - -Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works. - -Jekyll also offers powerful support for code snippets: - -{% highlight ruby %} -def print_hi(name) - puts "Hi, #{name}" -end -print_hi('Tom') -#=> prints 'Hi, Tom' to STDOUT. -{% endhighlight %} - -Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. - -[jekyll-docs]: https://jekyllrb.com/docs/home -[jekyll-gh]: https://github.com/jekyll/jekyll -[jekyll-talk]: https://talk.jekyllrb.com/ diff --git a/source/_posts/2020-01-20-day-1-of-30.md b/source/_posts/2020-01-20-day-1-of-30.md new file mode 100644 index 0000000..cf9b5ce --- /dev/null +++ b/source/_posts/2020-01-20-day-1-of-30.md @@ -0,0 +1,27 @@ +--- +title: "Day 1 - 30 days of websiting" +tagline: > + Unraveling dependencies: easier than unraveling headphone cords. +intro: > + I expected installing dependencies, especially on Mac OS Catalina, to represent a real roadblock in getting the old website up and running. I was wrong. +published: true +date: 2020-01-20 +categories: website +--- + +Things I looked up +- https://nano-editor.org/dist/v2.2/nano.html#Editor-Basics +- http://osxdaily.com/2013/02/01/use-option-as-meta-key-in-mac-os-x-terminal/ +- https://www.hostingadvice.com/how-to/update-npm-packages/ +- https://github.com/nodejs/node-gyp/blob/master/macOS_Catalina.md +- https://gitmoji.carloscuesta.me +- https://docs.npmjs.com/files/package-lock.json + +Things I did +- updated and installed npm dependencies +- updated nginx configs + +Next +- update ssl certificates +- update deploy dependencies +- run site locally \ No newline at end of file diff --git a/source/_posts/2020-01-21-day-2-of-30.md b/source/_posts/2020-01-21-day-2-of-30.md new file mode 100644 index 0000000..a251c54 --- /dev/null +++ b/source/_posts/2020-01-21-day-2-of-30.md @@ -0,0 +1,28 @@ +--- +title: "Day 2 - 30 days of websiting" +tagline: > + Cleaning up a mess of a development environment. +intro: > + I haven’t done any “development” since 2016. Since that time, I’ve started and abandoned multiple dotfile projects. Today, I started cleaning that up. +published: true +date: 2020-01-21 +categories: website +--- + +Things I looked up +- https://babeljs.io/docs/en/env/ +- https://github.com/fluffywaffles/gulp-load-subtasks +- https://askubuntu.com/questions/363200/e-unable-to-correct-problems-you-have-held-broken-packages/451078#451078 +- https://certbot.eff.org/lets-encrypt/ubuntuxenial-nginx +- https://github.com/pstadler/keybase-gpg-github + +Things I did +- successfully updated npm dependencies +- fixed bad nginx configs, which may have taken down my website. +- added back in gpg signed commits. +- + +Next +- update ssl certificates +- update deploy dependencies +- run site locally \ No newline at end of file diff --git a/source/_posts/2020-01-27-day-8-of-30.md b/source/_posts/2020-01-27-day-8-of-30.md new file mode 100644 index 0000000..4f017eb --- /dev/null +++ b/source/_posts/2020-01-27-day-8-of-30.md @@ -0,0 +1,25 @@ +--- +title: "Day 8 - 30 days of websiting" +tagline: > + Captain Underscores to the rescue. +intro: > + Successfully `jekyll build` after noticing that a dependency had shifted from `-` to `_`. **It’s the little things in life that matter.** +published: true +date: 2020-01-27 +categories: website +--- + +Things I looked up +- https://rubygems.org/gems/jekyll_picture_tag +- https://rbuchberger.github.io/jekyll_picture_tag/presets + +Things I did +- banged my head against a wall for a while +- moved & updated picture config to new location/format +- removed gemfile.lock +- updated gemfile & jekyll config with new plugin +- built the site + +Next +- update security vulnerabilities +- work on jekyll build \ No newline at end of file diff --git a/source/_posts/2020-01-28-day-9-of-30.md b/source/_posts/2020-01-28-day-9-of-30.md new file mode 100644 index 0000000..e884565 --- /dev/null +++ b/source/_posts/2020-01-28-day-9-of-30.md @@ -0,0 +1,25 @@ +--- +title: "Day 9 - 30 days of websiting" +tagline: > + NPM dependencies dragging me down. +intro: > + Pretty sure I'll jettison the NPM dependencies and build tooling and start over from scratch. +published: true +date: 2020-01-28 +categories: website +--- + +Things I looked up +- gatsby +- webpack critical css +- jekyll and webpack +- https://www.maxwellantonucci.com/2019/12/27/killing-webpack.html + +Things I did +- deleted `node_modules` twice +- picked through `package.json` and gulpfiles. + +Next +- strip out javascript dependencies +- use built versions of css and optimized images +- try building site. \ No newline at end of file