Commit 04f26c8 0 parents commit 04f26c8 Copy full SHA for 04f26c8
File tree 9 files changed +114
-0
lines changed
9 files changed +114
-0
lines changed Original file line number Diff line number Diff line change
1
+ _site
2
+ .sass-cache
3
+ .jekyll-cache
4
+ .jekyll-metadata
5
+ vendor
6
+ Gemfile.lock
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
1
+ vemek.co
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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/
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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] ( )
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : home
3
+ ---
You can’t perform that action at this time.
0 commit comments