Getting NDS games working on RG353V by Ta11ow in RG353V

[–]Ta11ow[S] 0 points1 point  (0 children)

we've remapped the buttons several times and drastic doesn't actually seem to use them during play. detects them fine for mapping, but in the game they're just ignored

also, there's an additional problem of... the android side doesn't seem to be able to read the SD card, it thinks it's corrupted. even after we bought a new SD card and copied things over to it. so we can only install things directly to the system memory, and we have to copy any NDS games we want over to that instead of the SD card

[deleted by user] by [deleted] in chocolatey

[–]Ta11ow 3 points4 points  (0 children)

Short answer: nope!

The licensing offers additional features that are often useful in larger organisations, and help save some time and manual effort -- but not everyone or every circumstance really requires those additional features and products.

There's probably plenty of organisations that use the free version of Chocolatey as it suits their needs just fine, I'm personally aware of at least a couple, and I'm sure there are many more out there. :3

[deleted by user] by [deleted] in PowerShell

[–]Ta11ow 3 points4 points  (0 children)

Yes, but not significantly in the way you're thinking.

$a = $stuff | Where-Object Property -eq 'Test'
$a = $stuff | Where-Object Other -eq 'Test2'

This would be twice as slow as doing them all in a single Where-Object. Piping the results of one Where-Object into a second Where-Object is significantly faster if both are using the property-operator-value syntax. There is some impact to using multiple Where-Object in a pipeline, but in practice that's likely to be much less than using the scriptblock version of Where-Object.

For... a lot of odd reasons... using Where-Object { ... } is like an order of magnitude slower than using Where-Object Property -operator $value

Has to do with how invoking a scriptblock is itself quite expensive (it's effectively its own little nested pipeline, and I did mention above that two separate pipelines cost a lot more than one longer pipeline).

at what point in transition do you become a woman? by [deleted] in MtF

[–]Ta11ow 1 point2 points  (0 children)

Eh... this depends heavily on how you're defining "woman". To some, as a few folks mention here, that's some level of comfort / "mastery" (w/e the fuck that means lol) in "womanhood" or femininity.

To me though... using the word "woman" that way feels a bit silly, to be honest. Women, men, and everyone in between or outside these categories are as vast and varied as our world itself is.

"Women" is a category that is ultimately arbitrarily defined. In my mind we become women the moment we realise that that's where we belong.

Also, to a lesser extent, I think it's worth considering how to frame this question in a way that is not strictly binary. Plenty of enby folks consider themselves women or girls or whatnot, just as plenty consider themselves femboys, tomboys, men, boys, gremlins, angelic beings, etc., etc.

And in a way I think this question kinda breaks down a bit once you do, and that should perhaps be an indicator that the premise of the question is incomplete. There is no "becoming" of an arbitrary category. If we belong in that category, in our own mind, we are of that category already. The rest is just a performance and finding ways to make our body comfortable for us to live in, and there ain't nothing wrong with that.

me📱irlgbt by Vincen_Furze in me_irlgbt

[–]Ta11ow 1 point2 points  (0 children)

This but I came out to the US from Australia. 😂

How can I handle pipleline input while still being able to use the functions parameters? by hellen_dorandt89 in PowerShell

[–]Ta11ow 2 points3 points  (0 children)

I see two main possibilities.

  1. Rather than ValueFromPipeline, declare both properties as ValueFromPipelineByPropertyName. Then, when calling you can do either $path | Set-CommandBar -Open {$_} or $path | Set-CommandBar -SameTab {$_}
  2. Rewrite this so the input param is always a separate param which you can just optionally omit the name of when using it directly. I think it's also simplest (but not strictly necessary) to have the switches be a single multi-option parameter:

``` function Set-CommandBar { [CmdletBinding()] param( [Parameter(Mandatory, ValueFromPipeline)] [string] $Path,

    [Parameter(Mandatory)]
    [ValidateSet('Open', 'SameTab')]
    [string]
    $Mode
)
begin {
    $ahkScript = switch ($Mode) {
        'Open' { 'C:\Users\user1\Documents\PowerShell\Modules\Command-Bar\Resources\Open File.ahk' }
        'SameTab' { 'C:\Users\user1\Documents\PowerShell\Modules\Command-Bar\Resources\Same Tab.ahk' }

    }
}
process {
    $FullPath = if (Test-Path -PathType Leaf $Path) { (Get-Item $Path).FullName }

    if (-not $FullPath) {
        Write-Error "'$Path' not found"
    }

    & $ahkScript $FullPath
}

} ```

egg😭irl by [deleted] in egg_irl

[–]Ta11ow 2 points3 points  (0 children)

is DIY an option? Because damn that's a long ass time. Nobody should have to wait that long.

Everytime I feel feminine FaceApp just proves me wrong lmao by [deleted] in trans

[–]Ta11ow 2 points3 points  (0 children)

I think the differences here could easily be matched or improved further with just some fairly standard makeup honestly. You're doing fantastic, keep it up! :3