Skip to content

Instantly share code, notes, and snippets.

View dylanmtaylor's full-sized avatar

Dylan M. Taylor dylanmtaylor

View GitHub Profile
@dylanmtaylor
dylanmtaylor / journal.txt
Created July 31, 2026 21:42
Diagnostic report 2026-07-31
This file has been truncated, but you can view the full file.
# System Logs
Generated: 2026-07-31T21:41:38Z
## Current Boot Kernel Errors
```
Jul 30 17:29:06 bluefin kernel: ahci 0000:00:0e.0: probe with driver ahci failed with error -12
Jul 30 17:29:07 bluefin kernel: Module hid_sensor_hub is blacklisted
Jul 30 17:29:07 bluefin kernel: Module hid_sensor_hub is blacklisted
Jul 30 17:29:12 bluefin kernel:
@dylanmtaylor
dylanmtaylor / journal.txt
Created July 29, 2026 00:11
Diagnostic report 2026-07-28
This file has been truncated, but you can view the full file.
# System Logs
Generated: 2026-07-29T00:08:29Z
## Current Boot Kernel Errors
```
Jul 27 08:01:37 bluefin kernel: ahci 0000:00:0e.0: probe with driver ahci failed with error -12
Jul 27 08:01:40 bluefin kernel: Module hid_sensor_hub is blacklisted
Jul 27 08:01:40 bluefin kernel: Module hid_sensor_hub is blacklisted
Jul 27 08:01:51 bluefin kernel: NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64 610.43.02 Release Build (dvs-builder@U22-I3-H05-01-2) Tue May 19 11:24:27 UTC 2026
@dylanmtaylor
dylanmtaylor / journal.txt
Created June 27, 2026 21:24
Diagnostic report 2026-06-27
# System Logs
Generated: 2026-06-27T21:23:51Z
## Current Boot Kernel Errors
```
Jun 27 11:10:59 bluefin kernel: ahci 0000:00:0e.0: probe with driver ahci failed with error -12
Jun 27 11:11:04 bluefin kernel: NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64 610.43.02 Release Build (dvs-builder@U22-I3-H05-01-2) Tue May 19 11:24:27 UTC 2026
Jun 27 13:45:40 bluefin kernel: nvidia 0000:01:00.0: PM: pci_pm_suspend(): nv_pmops_suspend [nvidia] returns -5
Jun 27 13:45:40 bluefin kernel: nvidia 0000:01:00.0: PM: dpm_run_callback(): pci_pm_suspend returns -5
@dylanmtaylor
dylanmtaylor / summary.md
Created June 18, 2026 00:46
Bluefin diagnostic report 2026-06-17

Bluefin / Dakota Diagnostic Report

Generated: 2026-06-18T00:46:40Z
Device ID: 959f1cd6 (anonymised — derived from machine-id, not reversible)

System

Field Value
Kernel 7.0.7
@dylanmtaylor
dylanmtaylor / summary.md
Created May 31, 2026 20:41
Bluefin diagnostic report 2026-05-31

Bluefin / Dakota Diagnostic Report

Generated: 2026-05-31T20:40:59Z
Device ID: 959f1cd6 (anonymised — derived from machine-id, not reversible)

System

Field Value
Kernel 7.0.7
@dylanmtaylor
dylanmtaylor / summary.md
Created May 31, 2026 20:32
Bluefin diagnostic report

Bluefin / Dakota Diagnostic Report

Generated: 2026-05-31T20:19:53Z
Device ID: 959f1cd6 (anonymised — derived from machine-id, not reversible)

System

Field Value
Kernel 7.0.7
curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | python3 -c "
import json, sys, ipaddress
data = json.load(sys.stdin)
targets = ['1.2.3.4']
for ip in targets:
addr = ipaddress.ip_address(ip)
matches = []
for prefix in data['prefixes']:
@dylanmtaylor
dylanmtaylor / gist:06c1b928a681d07bb649e0ccc9260e4d
Created March 23, 2026 02:30
Disable issues and PRs on all repos
gh repo list --fork --limit 1000 --json nameWithOwner -q '.[].nameWithOwner' | while read -r repo; do
echo "Disabling issues + PRs on $repo"
gh api -X PATCH "/repos/$repo" -F has_issues=false -F has_pull_requests=false --silent
done
sqlite3 ~/.local/share/kiro-cli/data.sqlite3 "DELETE FROM conversations_v2;"
#!/bin/bash
# This script installs the systemd service and timer units for rpm-ostree updates.
# It should be run as root or with sudo.
echo "Creating rpm-ostree-update.service..."
sudo tee /etc/systemd/system/rpm-ostree-update.service > /dev/null <<EOF
[Unit]
Description=Perform rpm-ostree update --reboot
Documentation=man:rpm-ostree(1)