Joel Bennett
Joel Bennett
Just to update: I never did the drive provider for those others, but I did add them as _entities_ that are handled by Pansies' `New-Text` and `Write-Host` commands, so you...
Sort-of. I think the actual method is an underlying framework thing (although I can't find documentation of it). PowerShell lets you use _property_ syntax to see the overloads of methods,...
@BrucePay I can see your point about hiding the member, the problem is that it's actually really hard to figure out where the thing came from. It's an **ugly** surprise....
I don't want to end up having `braceStyle` take a name: * Allman/Petzold * Whitesmiths * GNU/Stallman * 1TBS/OTBS (K&R) * Ratliff * Stroustroup * Java ... Many of the...
> I would prefer: > > ```PowerShell > if ($TestBool -eq $True) { > Write-Output '$TestBool is TRUE.' > } elseif ($TestBool -eq $False) { > Write-Output '$TestBool is FALSE.'...
For what it's worth, this only happens when the history buffer is full.
Are we really trying to convert between hashtables and objects, or is this for _serialization_? That is, do you want actual hashtables, or string representation of hashtables? If it's the...
First: The private module functions seem like a bad idea to me. It introduces a new concept (the hidden module) and new magic (the special folder name), but to what...
| Verb | Group | Description | Why / Why not | | ---- | ----- | ----------- | ------- | | New | Common | Creates a resource |...
Why would it need a PropertyName value? Wouldn't you just hard code that into the script?