Thayne McCombs

Results 592 comments of Thayne McCombs

A couple of reasons. First of all, getting a list of windows from a wayland protocol is out of scope for a program like bemenu or tofi, so being able...

Using the `host` configuration seems to work. Although, I'm a little nervous about using an undocumented/unsupported feature like that. I also figured out that in order for it to work...

I tried something like the first snippet on systemd 256: ```bash sudo ip l a dns-route type dummy sudo ip l s dns-route up sudo resolvectl dns dns-route 127.0.0.2:9053 sudo...

I'm seeing something that may be the same issue, but with an `OnCalendar` timer. it has ``` OnCalendar=daily AccuracySec=12h Persistent=true ``` After booting up with a stamp file that is...

Another possibility could be something like: ```rust // core::panic: pub trait PanicHandler { fn panic_handler(&self, _: &PanicInfo) -> !; } pub extern static panic_handler: &'static dyn PanicHandler; // user: struct...

> If the trait is used, it results in a hard error because it can't be used how would that work? Would the compiler generate an impl of the trait...

That could result in some interesting behavior where debug builds fail to link, because the include a function that calls the un-implemented trait, but release builds succeed, because that function...

It looks like using a dummy interface no longer works, probably due to https://github.com/systemd/systemd/commit/d301c52383ca7cfa6b7cda87d7a4209c234a532c. If I run: ``` $ sudo nmcli connection add con-name dns-test type dummy ifname dummy-dns ipv4.method...

If you are referring to " I've got something that sort of works by registering a StackTransformation that adds import to the resource options." I meant that my program using...

basically I have a funciton like this: ``` export async function registerImportTransformation(imports: Imports): Promise { registerStackTransformation((args: ResourceTransformationArgs) => { const fullName = args.type + '$' + args.name; let id =...