Don't get jealous. How you use it is more important than size ; )
I was positive this was going to be the onion.
... I really wish this was the onion.
Aha, the separate breaker box is the part I wasn't thinking about. I'll need to do some thinking on how I could make that work for me. Thank you for the info.
Out of curiosity, how do you have that setup (at a high level)?
I've got a bluetti system for emergency power (12kWh, 6kW AC output) but I need to plug things directly into it. It'd be nice to feed it directly to my house wiring but ... selectively. That is, I wouldn't want to power the HVAC but it would be nice to not have to shuffle the fridge/freezer plugs from the wall to the inverter.
Dedicated circuit(s) with a manual switch from mains to inverter, I'm guessing? But then we get into all the extras required to do that safely and avoid back feeding the grid.
Granted, they have systems/setups specifically for whole house power but I don't want to feed the whole house, just the important circuits/appliances.
This is exactly the (hobbyist) motivation that led me to pick it up when I saw it in a store. I don't need it frequently enough for hobby projects to justify getting dykem/layout fluid, but this will work in a pinch and has alternative uses.
... I used it yesterday to mark some wood that needed to be routered flush to take off a high spot.
Approximately 1.5cm. I'm attaching a picture but with skew, perspective, scale, lighting, etc it's not a perfect example.

Seems the Debian chain (Debian, Ubuntu, Mint) hide it by default but there is an option to enable it. It's one of the first things I do because I use it a lot.
I think they're all using Nemo (depending on desktop)? Not at home to check it currently (Debian 13 at home, Mint on bootable USB drives).
... Don't trust me on Ubuntu, I haven't used it since the telemetry debacle.
Yeah, at the core it's just a hierarchy of directories/markdown files with a WYSIWYG/autorender web editor but then they kept adding more and more fancy stuff : )
The ad blocker was from the package manager built into OpenWRT. I think tailscale was too but I'm not 100% sure since it's been awhile.
Though, I just did a search and the first result from the OpenWRT docs shows the install from the package manager so that's most likely how I did it : https://openwrt.org/docs/guide-user/services/vpn/tailscale/start
So, yes, very simple.
I got the gl-mt6000/flint2 about 6 months ago. I'm definitely not a network expert but I unboxed it, powered it up, and immediately flashed OpenWRT. No problems.
The only slightly technical things I've done with it are to install a router level ad/tracking blocker when my RPi2 pihole stopped being reliable and install the tailscale client on it with exit node enabled. Everything works fine.
I use tailscale to get to my LAN (even though the desktop is also running tailscale) for many reasons (self hosting) but the main reason is my home server is disk level LUKS encrypted. The router restarts autonomously after a power outage so I use it to get to the server via tailscale+Dropbear to remote unlock the server disk after a power outage.
I've had zero complaints and would recommend.
The two biggest things I use it for are programmatically generating "lists of lists" (lists of pages, more accurately) and as a semi-hacky way to get text colors. Semi-related, the "Treeview" plugin gives you a folder hierarchy panel off to the left (by default) which is really, really nice.
I should probably clarify that I didn't write these, I stole them from the Silverbullet community forums... also I should reiterate that I suck at Lua so take my explanations with a grain of "this person may not know what they're talking about" ; )
Lists of Lists :
I have a bad memory so I create a LOT of lists. I even have a base page named "Lists" that I then nest different types of lists under (TODOs for home, for work, for school, for projects, for selfhosting, etc). Since the table is programmatically generated, it's always up to date on each load. This first snippet relies on using frontmatter on the respective pages along with the tags property.
${query[[
from index.tag "todolist"
order by lastModified desc
select {
List="[[" .. _.name .. "]]",
Modified=_.lastModified
}
]]}
This retrieves all pages from the space index with a tag of todolist (from the frontmatter), orders them by lastModified, descending, and renders a table that contains the name and lastModified date. This is excellent for providing a list of pages (based on tag, todolist in this case) related to a topic and ordering them by the last time they were changed. I use this in the base page for pretty much all of my "folders". Screenshot :

Text Color Hack :
Since the Silverbullet markdown interpreter doesn't (currently) support plain HTML, and the way we usually color specific areas of text within Markdown is <span style="color: #fff">white text</span>, they had to get inventive. Somebody came up with a way to provide Lua functions that will accept text as a parameter and then render it with the specified HTML color/style.
In my CONFIG page (that is applied to the entire space) I included a space-lua code block like :
function Red(text)
return widget.html(dom.span {
style="color:#e60000; font-weight: bold;",
text
})
end
// Also about 5 more for different colors I use, snipped for simplicity.
Then, anywhere in my Silverbullet space I can use a Lua code snippet like The following word is ${Red("red")} and it will invoke the space-lua function named Red() on the text red, apply the styling, and render it with CSS color #e60000. Hacky? Yeah... but it works for now. Screenshot : 
... I've been meaning to build a generic Colorize(text, hexColor) function (which would likely take all of 30 seconds : ) but haven't yet. Maybe tonight.
EDIT: That did, in fact, take 30 seconds. Function :
// This assumes "color" parameter is a valid/properly formatted CSS color, meaning a known word ("red"), hex ("#ff0000"), or presumably RGB/etc but so far I've only tested color names and hex (I typically use hex)
function Colorize(text, color)
return widget.html(dom.span {
style=string.format("color:%s; font-weight: bold;", color),
text
})
end
Usage : ${Colorize("any text", "#00ff00")}


This is absolutely evil.
... I love it and am stealing it.