Matej Kafka

Results 52 comments of Matej Kafka

I created a new repo with just the completers, updated to work in PowerShell 5+ and PowerShell Core. Hopefully it's useful for someone. :) https://github.com/MatejKafka/PowerShell-ArgumentCompleters

> If someone has physical access to a system then Secure Boot is useless period. In that case there's no difference in booting from USB or plugging in a SATA...

@pbatard Sorry, I should have explained my position clearer - I fully agree that the Secure Boot bypass Ventoy uses is not secure, and I'm not using Ventoy exactly because...

@pbatard > You were able to use TPM for disk encryption long before Secure Boot, and rightfully so, since the process of storing and using data encryption keys is completely...

> @MatejKafka it's a duplicate of #3669 No, I don't believe it is. The referenced issue discusses the case where output is NOT assigned to `$null` (or ignored in some...

I'd be OK with the last case being left as is (so that "return X" always returns X from the function). It's the first case that seems wrong to me,...

@jhoneill That's a very insightful explanation, thanks. :) I'd consider it more intuitive for the following code: ```powershell $Result = if ($true) { echo "value" return } ``` to be...

> One can even throw in the transformation if the input values aren't valid - to avoid repeating values in a validate set. However, `[ArgumentTransformation]` does not provide autocomplete, and...

Observations from testing and reading source: **Installation:** The installer .exe seems like an NSIS installer. By extracting it with 7zip (`7z x .\beaker-browser-setup-1.1.0.exe -obeaker`), we get `$PLUGINSDIR` dir inside `beaker`...

I don't think this should be implemented with `cycle()`, because it requires the iterator to be clonable, which is imo excessive (the method doesn't work with e.g. stdin `Lines` iterator)....