Compare commits

...

5 Commits

6 changed files with 281 additions and 63 deletions

View File

@@ -1,30 +1,54 @@
--- ---
draft: yes pinned: true
title: "Is Chad Alive???" title: "Is Chad Alive??"
date: TBD subtitle:
author:
date: "2025-11-21T09:00:00-07:00"
toc: true
tags: tags:
- blog - blog
series: series:
- solitude - solitude
categories: categories:
- blogposts - blogposts
toc: yes aliases:
- /is-chad-alive
--- ---
**This page has yet to be completed. Please check back later.** **This page has yet to be completed. Please check back later.**
## Most Likely If you've been sent here because you asked if I'm doing alright, please bookmark this page so that you don't need to ask again. :)
### Code Changes ## Where to find Signs of Life
Here are a few ways to confirm that I'm alive and have been online recently.
### Most Likely
## Somewhat Likely #### Code Changes
### Odysee Videos I love working on my projects. The longest I'd likely go without changing something is a week. Don't worry about the technical details, just check the timestamps.
- {{< external-link "https://git.hyperling.com/me?tab=activity" >}}
#### Written Posts
## Least Likely This website is new (at least compared to when this article is being posted) and I'm enjoying adding things every few days. Eventually it may just be weekly or biweekly though.
### Recent Photos - {{< external-link "https://works.hyperling.com/posts" "/posts" >}}
### Somewhat Likely
#### Odysee Videos
There's not much rhyme or reason as to when I make videos. Someties there are a few ina week, sometimes only one every quarter or half year. It's a better proof of life than just code and written changes though, I suppose.
- {{< external-link "https://odysee.com/@HyperVegan:2" >}}
### Least Likely
#### Recent Photos
As of this article I'm well over a year late on posting photos. I've worked on organizing them but it's just not much of a priority. I'll get to them eventually, probably.
- {{< external-link "https://hyperling.com/photos/" >}}

View File

@@ -38,7 +38,7 @@ This article assumes that your system has had the wireless card working on Debia
I have a Macbook Air 7,2 (early 2015, i5) with a BCM4360 [14e4:43a0] and use the `wl` driver. I have a Macbook Air 7,2 (early 2015, i5) with a BCM4360 [14e4:43a0] and use the `wl` driver.
``` ``` console
$ sudo apt list broadcom* $ sudo apt list broadcom*
broadcom-sta-common/stable 6.30.223.271-26 amd64 broadcom-sta-common/stable 6.30.223.271-26 amd64
broadcom-sta-dkms/stable,now 6.30.223.271-26 amd64 [installed] broadcom-sta-dkms/stable,now 6.30.223.271-26 amd64 [installed]
@@ -56,7 +56,7 @@ I'm not sure why this happened, but it was when the kernel version jumped from `
Later versions such as `6.12.48` and `6.12.57` continued to get pulled and I'd try them before having to reboot back to `6.12.41`. While booted into the newer kernel versions `/sbin/iwconfig` would show no wireless network and GNOME didn't have a Wi-Fi button listed in the Settings app nor its system menu. Then I tried this: Later versions such as `6.12.48` and `6.12.57` continued to get pulled and I'd try them before having to reboot back to `6.12.41`. While booted into the newer kernel versions `/sbin/iwconfig` would show no wireless network and GNOME didn't have a Wi-Fi button listed in the Settings app nor its system menu. Then I tried this:
``` ``` console
$ sudo modprobe wl $ sudo modprobe wl
modprobe: FATAL: Module wl not found in directory /lib/modules/6.12.57+deb13-amd64 modprobe: FATAL: Module wl not found in directory /lib/modules/6.12.57+deb13-amd64
``` ```
@@ -67,7 +67,7 @@ After realizing that the `wl` module wasn't being loaded I thought maybe there w
Ubuntu provides the packages `linux-image-generic` and `linux headers-generic`. Debian names them slightly different. Ubuntu provides the packages `linux-image-generic` and `linux headers-generic`. Debian names them slightly different.
``` ``` bash
sudo apt install linux-image-amd64 linux-headers-amd64 --reinstall sudo apt install linux-image-amd64 linux-headers-amd64 --reinstall
``` ```
@@ -90,19 +90,18 @@ Some good troubleshooting commands are below, as well as examples of when I was
### Example -- Missing Kernel Headers (6.12.57) ### Example -- Missing Kernel Headers (6.12.57)
``` ``` console
[user@hostname ~]$ uname -a [user@hostname ~]$ uname -a
Linux debian 6.12.57+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.57-1 (2025-11-05) x86_64 GNU/Linux Linux debian 6.12.57+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.57-1 (2025-11-05) x86_64 GNU/Linux
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ lspci -vnn | grep -i net [user@hostname ~]$ lspci -vnn | grep -i net
03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter [14e4:43a0] (rev 03) 03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter [14e4:43a0] (rev 03)
[user@hostname ~]$ [user@hostname ~]$
``` ```
--- ``` console
```
[user@hostname ~]$ /sbin/iwconfig [user@hostname ~]$ /sbin/iwconfig
lo no wireless extensions. lo no wireless extensions.
@@ -110,19 +109,19 @@ docker0 no wireless extensions.
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ lsmod | grep wl [user@hostname ~]$ lsmod | grep wl
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ sudo modprobe wl [user@hostname ~]$ sudo modprobe wl
modprobe: FATAL: Module wl not found in directory /lib/modules/6.12.57+deb13-amd64 modprobe: FATAL: Module wl not found in directory /lib/modules/6.12.57+deb13-amd64
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ sudo apt list broadcom* [user@hostname ~]$ sudo apt list broadcom*
broadcom-sta-common/stable 6.30.223.271-26 amd64 broadcom-sta-common/stable 6.30.223.271-26 amd64
broadcom-sta-dkms/stable,now 6.30.223.271-26 amd64 [installed] broadcom-sta-dkms/stable,now 6.30.223.271-26 amd64 [installed]
@@ -132,19 +131,19 @@ broadcom-sta-source/stable 6.30.223.271-26 amd64
### Example -- Wireless Working Correctly (6.12.41) ### Example -- Wireless Working Correctly (6.12.41)
``` ``` console
[user@hostname ~]$ uname -a [user@hostname ~]$ uname -a
Linux debian 6.12.41+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.41-1 (2025-08-12) x86_64 GNU/Linux Linux debian 6.12.41+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.41-1 (2025-08-12) x86_64 GNU/Linux
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ lspci -vnn | grep -i net [user@hostname ~]$ lspci -vnn | grep -i net
03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter [14e4:43a0] (rev 03) 03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter [14e4:43a0] (rev 03)
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ /sbin/iwconfig [user@hostname ~]$ /sbin/iwconfig
lo no wireless extensions. lo no wireless extensions.
@@ -159,15 +158,15 @@ docker0 no wireless extensions.
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ lsmod | grep wl | sort [user@hostname ~]$ lsmod | grep wl | sort
cfg80211 1392640 1 wl cfg80211 1392640 1 wl
wl 6459392 0 wl 6459392 0
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ sudo modprobe wl [user@hostname ~]$ sudo modprobe wl
[user@hostname ~]$ [user@hostname ~]$
``` ```
@@ -175,19 +174,19 @@ wl 6459392 0
### Example -- Wireless Working Correctly (6.12.57) ### Example -- Wireless Working Correctly (6.12.57)
``` ``` console
[user@hostname ~]$ uname -a [user@hostname ~]$ uname -a
Linux debian 6.12.57+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.57-1 (2025-11-05) x86_64 GNU/Linux Linux debian 6.12.57+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.57-1 (2025-11-05) x86_64 GNU/Linux
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ lspci -vnn | grep -i net [user@hostname ~]$ lspci -vnn | grep -i net
03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter [14e4:43a0] (rev 03) 03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter [14e4:43a0] (rev 03)
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ /sbin/iwconfig [user@hostname ~]$ /sbin/iwconfig
lo no wireless extensions. lo no wireless extensions.
@@ -202,15 +201,15 @@ docker0 no wireless extensions.
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ lsmod | grep wl | sort [user@hostname ~]$ lsmod | grep wl | sort
cfg80211 1392640 1 wl cfg80211 1392640 1 wl
wl 6459392 0 wl 6459392 0
[user@hostname ~]$ [user@hostname ~]$
``` ```
---
``` ``` console
[user@hostname ~]$ sudo modprobe wl [user@hostname ~]$ sudo modprobe wl
[user@hostname ~]$ [user@hostname ~]$
``` ```

186
hugo.yaml Normal file
View File

@@ -0,0 +1,186 @@
# 2025-11-21 Changed to be YAML rather than TOML. Much easier to understand.
### My Params ###
baseURL: '/'
languageCode: 'en-us'
title: "Hyperling's Works"
subtitle: "My recipes, blogposts, musings, and more."
#paginate = 25
paginate: 99999
markup:
goldmark:
# Allow direct HTML.
renderer:
unsafe: true
# Prevent URLs from becoming links which open in the same tab.
extensions:
linkify: false
tableOfContents:
endLevel: 4
ordered: false
startLevel: 2
### End My Params ###
### Theme ###
# Seems pretty good, just need to add more config params so it acts better.
theme: "hello-friend-ng"
# Main Documentation
# https://github.com/rhazdon/hugo-theme-hello-friend-ng/blob/master/docs/config.md
# Favicon documentation for this theme.
# https://github.com/rhazdon/hugo-theme-hello-friend-ng/blob/master/docs/favicons.md
# Generator
# https://realfavicongenerator.net/your-favicon-is-ready
## Theme Suggested Params ##
# The parameters below were copied, modified, or inspired from:
# https://github.com/rhazdon/hugo-theme-hello-friend-ng?tab=readme-ov-file#how-to-configure
params:
dateform : "Jan 2, 2006"
dateformShort : "Jan 2"
dateformNum : "2006-01-02"
dateformNumTime : "2006-01-02 15:04"
# Subtitle for home
homeSubtitle: "Blogposts, recipes, musings, and more."
# Set disableReadOtherPosts to true in order to hide the links to other posts.
disableReadOtherPosts: false
# Enable sharing buttons, if you like
enableSharingButtons: false
# Show a global language switcher in the navigation bar
enableGlobalLanguageMenu: false
# Metadata mostly used in document's head
description: "Written works by Hyperling."
keywords: "homepage, blog, recipes, crafts, food, seasonings, woodworking, poetry, poems"
images: [""]
# My Custom Params #
authorBug: "Chad Michael \"Bug\" Greenwood"
authorHyperling: "Chad Michael \"Hyperling\" Greenwood"
authorHyperVegan: "Chad Michael \"HyperVegan\" Greenwood"
authorDefault: "Chad Michael Greenwood"
# End My Custom Params #
taxonomies:
categories : "categories"
tags : "tags"
series : "series"
languages:
en:
title: "Hyperling's Written Works"
keywords: ""
copyright: '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
readOtherPosts: "Read other posts"
params:
#subtitle = "Blogposts, recipes, musings, and more."
logo:
logoText: "Hyperling's Works"
logoHomeLink: "/"
# or
#
# path = "/img/your-example-logo.svg"
# alt = "Your example logo alt text"
# [languages.es]
# title = "Hola Amigo!"
# keywords = ""
# copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
# readOtherPosts = "Read other posts"
# And you can even create generic menu
menu:
main:
- identifier : "00-all"
name : "All"
url : "/posts"
weight : 1
- identifier : "01-tags"
name : "Tags"
url : "/tags"
weight : 1
parent : "00-all"
- identifier : "02-cats"
name : "Categories"
url : "/categories"
weight : 2
parent : "00-all"
- identifier : "20-food"
name : "Food"
url : "/tags/food"
weight : 2
- identifier : "30-crafts"
name : "Crafts"
url : "/tags/crafts"
weight : 3
#[[menu.main]]
# identifier = "50-blog"
# name = "Blogposts"
# url = "/tags/blog"
# weight = 5
- identifier : "60-poetry"
name : "Poetry"
url : "/tags/poetry"
weight : 6
- identifier : "70-tech"
name : "Tech"
url : "/tags/tech"
weight : 7
- identifier : "80-books"
name : "Books"
url : "/tags/books" #"https://hyperling.com/books"
weight : 8
# End parameters related to:
# https://github.com/rhazdon/hugo-theme-hello-friend-ng?tab=readme-ov-file#how-to-configure
##
### End Theme ###
### Failed Themes ###
# Do not go back to these unless figuring out what was done wrong.
# not functioning well
#theme = "recipes"
# requires creating recipe objects?
#theme = "cookbook"
# not showing index files
#theme = "awesome"
# outdated
#theme = "simple-dark"
# too complicated? Failing to compile.
#theme = "congo"
# works, reads index files, shows cool header at the beginning of posts,
# but FAILS at monospace fonts in code blocks and CSS for URLs is horrible.
# Could maybe be modified to serve well enough.
#theme = "hugo-classic"
### End Failed Themes ###

View File

@@ -1,4 +1,4 @@
{{ $text := .Get "text" | default (.Get 0) {{ $url := .Get "url" | default (.Get 1) | default (.Get 0)
}}{{ $url := .Get "url" | default (.Get 1) }}{{ $text := .Get "text" | default (.Get 0) | default $url
}} }}
<a href="{{ $url }}" target="_blank" rel="noopener noreferrer">{{ $text | markdownify }}</a> <a href="{{ $url }}" target="_blank" rel="noopener noreferrer">{{ $text | markdownify }}</a>

View File

@@ -1,3 +1,4 @@
# Abandoned 2025-11-21 because it was not working as needed. Moved to YAML.
### My Params ### ### My Params ###
@@ -15,9 +16,10 @@ markup.goldmark.renderer.unsafe = true
# Prevent URLs from becoming links which open in the same tab. # Prevent URLs from becoming links which open in the same tab.
markup.goldmark.extensions.linkify = false markup.goldmark.extensions.linkify = false
#[markup.tableOfContents] [markup.tableOfContents]
# startLevel = 2 endLevel = 4
# endLevel = 5 ordered = false
startLevel = 2
### End My Params ### ### End My Params ###

View File

@@ -1,20 +1,20 @@
/* Prevent excess gaps underneath headers. Looks horrible! */ /* Prevent excess gaps underneath headers. Looks horrible! */
h1,h2,p,div,blockquote { h1,h2,p,div,blockquote {
margin-top: 8px; margin-top: 16px;
margin-bottom: 16px;
}
h3,h4 {
margin-top: 6px;
margin-bottom: 12px;
}
h5,h6 {
margin-top: 4px;
margin-bottom: 8px; margin-bottom: 8px;
} }
pre,strong { h3,h4 {
margin-top: 2px; margin-top: 12px;
margin-bottom: 6px;
}
h5,h6,ul,ol {
margin-top: 8px;
margin-bottom: 4px; margin-bottom: 4px;
} }
pre,strong {
margin-top: 4px;
margin-bottom: 2px;
}
pre { pre {
padding: 2px; padding: 2px;
@@ -22,6 +22,13 @@ pre {
} }
audio { audio {
padding-top: 5px; margin: 5px;
padding-bottom: 20px; }
.post-content {
margin-top: 10px;
}
.highlight {
margin: 10px auto;
} }