Skip to content

Commit 7085538

Browse files
committed
osage orange
1 parent bfa1425 commit 7085538

File tree

10 files changed

+51
-11
lines changed

10 files changed

+51
-11
lines changed

.github/workflows/hugo.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
HUGO_ENV: production
5858
run: |
5959
hugo \
60+
--buildFuture \
6061
--gc \
6162
--minify \
6263
--baseURL "${{ steps.pages.outputs.base_url }}/"

config.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ languageCode = "en-us"
44
# Remove it if you use the theme as a remote Hugo Module.
55
theme = "terminal"
66
paginate = 5
7-
title = "things, about stuff"
7+
title = ""
88
subtitle = ""
99
owner = ""
1010
keywords = ""
1111
copyright = ""
1212

13+
enableGitInfo = true
14+
timeZone = "America/Chicago"
15+
1316
[params]
1417
menuMore = "Show more"
1518
readMore = "Read more"
@@ -46,7 +49,7 @@ copyright = ""
4649

4750
# set post to show the last updated
4851
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
49-
showLastUpdated = false
52+
showLastUpdated = true
5053

5154
# set a custom favicon (default is a `themeColor` square)
5255
# favicon = "favicon.ico"
@@ -68,7 +71,7 @@ copyright = ""
6871
# can be overridden in a page's front-matter
6972
TocTitle = "Shortcuts"
7073

71-
logoText = "things, about stuff"
74+
logoText = ":: | home | ::"
7275
logoHomeLink = "/"
7376

7477
[menu]

content/about.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
2-
title: what even is this place
2+
title: But why?
33
---
44

5-
Welcome.
5+
A place to share, and push against the poison of social media.
66

7-
This, my friend, is the beginning.
8-
9-
[Shall we?]( {{< ref "/" >}} )
7+
Inspired by such places as https://herman.bearblog.dev/ and https://david.reviews/.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "New milling rig and Osage Orange first cut"
3+
date: 2025-10-19
4+
description: "Ripping off someone else's idea, plus pretty wood"
5+
series: "Adventures in Chainsaw Milling"
6+
tags: ["woodworking"]
7+
---
8+
9+
I happened across some older Izzy Swan videos[^1] that inspired me to make some changes to how I was milling. I realized that it's not too hard to set up a platform and a parallel rail that the aluminum "Alaskan mill" can ride along. I really liked the intersection of cost, effort, and usefulness of the materials after this project[^2]. I started with a quick sketchup.
10+
11+
![Sketchup Mill Diagram](sketchup_mill.png)
12+
13+
I assembled the frame just with screws on my garage floor. I'm not interested in perfect for this build, so using the concrete as a guide was plenty accurate.
14+
15+
The only real hitch came when I realized that the way I had set up the supports for the upper rails took away 4-6 inches of length capacity. Again, I decided to take on the mindset of "good enough is good enough" with this one. I'm reminded of [the Cult of Done](https://medium.com/@bre/the-cult-of-done-manifesto-724ca1c2ff13), which is something that I've been partially inspired by a couple of times, but never engaged with enough to fully embrace. Anyway, I figured 6-ish feet of length capacity was good enough for a casual milling setup anyway, and if I really needed to adjust the construction, I could add back in some of that by moving where the upper rail supports are attached.
16+
17+
I have been especially struggling with the first cut of a log, where I needed to attach something to top to give the Alaskan mill something flat to reference. I had been using a long board, but it wasn't rigid enough and ended up bending at the extremes. This setup solves that problem nicely, since no part of the rails are actually indexing off the log itself and the Alaskan mill rides along the upper rails with solid contact. I didn't set the mill quite "deep" enough on the first cut (so the lowest section of the log, at the very end, did not get cut), but I'm still extremely pleased with the setup.
18+
19+
Most exciting is how the Osage Orange looks after this first cut. It's even more vibrant than I expected and I'm really looking forward to using it!
20+
21+
![Close look at the Osage](osage_1st_cut_closeup.jpg)
22+
23+
![Wide view with milling rig](osage_1st_cut_mill.jpg)
24+
25+
Fun fact, I had to enhance the saturation on these images just to make them look like real life. The photos, as they originally came out of my phone, were *much* flatter, but after edits the color is quite true-to-life.
26+
27+
I know that these slabs will lose some of their color as they dry, but I'd be surprised if they still didn't end up being some of the prettiest wood I've ever used.
28+
29+
(But tbh I haven't used a lot of wood)
30+
31+
[^1]: https://youtu.be/wydrpqTvwqs, https://youtu.be/09ixWGEvlAI, https://youtu.be/bzjZ0qla_to, https://youtu.be/ykeQMSUc0wk
32+
[^2]: Particularly when it comes to the first cut, common alternatives include a straight metal ladder (which I don't have, or have another use for) and unistrut ($$$!). After this project, I can disassemble the frame and be left with generally useful materials.
3.25 MB
Loading
5.87 MB
Loading
31.2 KB
Loading
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# Override title here if you wish
3+
# title: Adventures in Chainsaw Milling
4+
---
5+
In which an overzealot bites off more than he can chew.

layouts/_default/single.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ <h1 class="post-title">
44
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
55
</h1>
66
<div class="post-meta">
7+
78
{{- if .Date -}}
89
<time class="post-date">
910
{{- .Date.Format "2006-01-02" -}}
10-
{{- if $.Site.Params.showLastUpdated -}}
11-
[{{- or $.Site.Params.updatedDatePrefix "Updated" -}} :: {{- .Lastmod.Format "2006-01-02" -}}]
11+
{{- if and $.Site.Params.showLastUpdated (.Lastmod.After .Date) (ne (time.Format "2006-01-02" .Lastmod) (time.Format "2006-01-02" .Date)) -}}
12+
{{- or $.Site.Params.updatedDatePrefix " [Updated" -}} :: {{- .Lastmod.Format "2006-01-02" -}}]
1213
{{- end -}}
1314
</time>
1415
{{- end -}}

layouts/series/terms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1>{{ .Title }}</h1>
1313
{{ $count := .Count }}
1414
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
1515
<li>
16-
<a class="terms-title" href="{{ .Permalink }}">{{ .Name | default (index .Pages 0).Params.Series }} [{{ $count }}]</a>
16+
<a class="terms-title" href="{{ .Permalink }}">{{ .Title | default (index .Pages 0).Params.Series }} [{{ $count }}]</a>
1717
</li>
1818
{{ end }}
1919
{{ end }}

0 commit comments

Comments
 (0)