Skip to content

Commit 04f26c8

Browse files
committed
new blog
0 parents  commit 04f26c8

9 files changed

+114
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor
6+
Gemfile.lock

404.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vemek.co

Gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source "https://rubygems.org"
2+
3+
gem "github-pages", group: :jekyll_plugins
4+
gem "minima", "~> 2.5"
5+
6+
group :jekyll_plugins do
7+
gem "jekyll-feed", "~> 0.12"
8+
end

_config.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
title: vemek.co
2+
author: Mark King
3+
email: mark at vemek dot co
4+
description: >-
5+
A blog about technical things.
6+
baseurl: "" # the subpath of your site, e.g. /blog
7+
url: "https://vemek.co" # the base hostname & protocol for your site, e.g. http://example.com
8+
github_username: vemek
9+
10+
# Build settings
11+
theme: minima
12+
plugins:
13+
- jekyll-feed
14+
15+
# Exclude from processing.
16+
# The following items will not be processed, by default.
17+
# Any item listed under the `exclude:` key here will be automatically added to
18+
# the internal "default list".
19+
#
20+
# Excluded items can be processed by explicitly listing the directories or
21+
# their entries' file path in the `include:` list.
22+
#
23+
# exclude:
24+
# - .sass-cache/
25+
# - .jekyll-cache/
26+
# - gemfiles/
27+
# - Gemfile
28+
# - Gemfile.lock
29+
# - node_modules/
30+
# - vendor/bundle/
31+
# - vendor/cache/
32+
# - vendor/gems/
33+
# - vendor/ruby/

_layouts/tag.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: page
3+
---
4+
{% assign tag = page.name | replace: ".md", "" %}
5+
{% assign posts = site.posts | where_exp: "post", "post.tags contains tag" %}
6+
<h1 class="post-title">Posts tagged with {{ tag }}</h1>
7+
<ul>
8+
{% for post in posts %}
9+
<li><a href="{{post.url}}">{{ post.title }}</a></li>
10+
{% endfor %}
11+
</ul>
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Debian Asahi Linux on ZFS Root
3+
tags: debian asahi linux m1
4+
---
5+
6+
intro: i have an m1 mac. it is nice. but i want linux. i tried debian. it was
7+
nice. i want zfs. here is how to zfs.
8+
9+
- do an asahi (uefi)
10+
- do a live usb
11+
- do a zfs build
12+
- do a partitioning
13+
- do an install
14+
- do a configure
15+
16+
## Sources
17+
* [Thomas Glanzmann's excellent Debian Asahi integration](https://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian)
18+
* [OpenZFS build and packaging docs](https://openzfs.github.io/openzfs-docs/Developer%20Resources/Custom%20Packages.html)
19+
* [OpenZFS Debian ZFS root documentation]()

about.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
This is a blog about technical things. I'm writing them down so I don't need to
8+
discover them again.

index.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
layout: home
3+
---

0 commit comments

Comments
 (0)