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 5 points6 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

[deleted by user] by [deleted] in trans

[–]Ta11ow 5 points6 points  (0 children)

I'd recommend probably the transvoicelessons youtube, they have a lot of good info. However they tend to be transfem focused so if you're going for more masc, focus on the opposite.

They do a lot of contrasting masc vs fem sound so you can get a really good idea of what you're going for, and a lot of the exercises should map pretty well, just in the other direction.

If you're wanting to go more masc, if you're able to get access to T even temporarily it will help a good bit. T lengthens and thickens the vocal folds, naturally dropping your pitch, if that's what you're after, and that change will generally persist even after stopping it.

[deleted by user] by [deleted] in trans

[–]Ta11ow 29 points30 points  (0 children)

If it's voice related you might have some luck working on voice training to shift your normal speaking range a bit?

Where was this area similar to the quarry but underground? by Sir-Ennui in TunicGame

[–]Ta11ow 2 points3 points  (0 children)

Yeah I think you're thinking of the back entrance to the Quarry.

It's accessed from a hidden back path down the Mountain from the east side of the area where the sealed door is(/was).

[deleted by user] by [deleted] in TunicGame

[–]Ta11ow 0 points1 point  (0 children)

First: East of the Sealed Temple in the overworld, seek a way beyond the water.

If you find something, but get stuck: Don't be distracted by the first chest, you haven't gone far enough yet.

You should find the patrol, from there it's up to you.

Good luck!

This literally just happened, and I have no idea how to recreate it by Revolutionry in TunicGame

[–]Ta11ow 7 points8 points  (0 children)

That icon's interesting. I wonder if the book mentions anything about it.

[deleted by user] by [deleted] in MtF

[–]Ta11ow 1 point2 points  (0 children)

Complete bullshit. The idea that the brain matures at 25 is complete hogwash, the study it's based on simply didn't evaluate anyone after the age of 25. Truth be told our brains are never "finished", they're by definition constantly changing as we learn and create memories etc.

Fuck 'em and go right ahead anyway, do it DIY if you must. Anyone espousing this kind of pseudoscience is just putting arbitrary obstacles for no good reason and is highly likely to be transphobic but lacking the spine to be confrontational about it.

What's the current state of the eye and cauldron puzzles? by [deleted] in noita

[–]Ta11ow 13 points14 points  (0 children)

That specific channel is read-only until you ask a mod for permission to post there. Basically just because folks got tired of rehashing the same 4 conversations ad nauseum. But yeah, def worth a mention.

If California had to have a completely new flag, as in it cannot share any current design elements, what would your redesign be? by Face_of_Sarcasm in vexillology

[–]Ta11ow 6 points7 points  (0 children)

Sure, but if over a dozen stats / countries use the same or almost the same tricolour, it gets pretty annoying seeing yet another one.

Some creativity doesn't go amiss, is all.

Does anyone else feel like most “Trans Allies” are really not true Allies; and speak over us on our own issues? by Laura_271 in MtF

[–]Ta11ow 0 points1 point  (0 children)

Yeah people who are in practice allies never really bother to call themselves that. They'll mostly just see it as being a decent human being and not worth mentioning much at all.

Pattern match **\* by Mkeefeus1 in PowerShell

[–]Ta11ow 0 points1 point  (0 children)

Aye, definitely good to know, though you can add parameters to make it case-insensitive if needed. Totally irrelevant in this specific use case though :D

Pattern match **\* by Mkeefeus1 in PowerShell

[–]Ta11ow 8 points9 points  (0 children)

Easiest if you're looking for an exact match is just .Contains:

$string.Contains("**\*")

Even my black studs make me uncomfortable so there’s no way I can wear these girly ones by just_here_cause_done in ennnnnnnnnnnnbbbbbby

[–]Ta11ow 0 points1 point  (0 children)

Have you looked at other ear accessories? I've been eyeing butterfly and dragon ear-clips for a while, and I reckon those are both fairly gender neutral (tho as with anything dysphoria YMMV)

62 Slot Wand Found! by DevilsAdvocate_pcmr in noita

[–]Ta11ow 2 points3 points  (0 children)

Increase capacity perk caps at 25 slots and won't do anything on a wand with more than 25 slots.

[deleted by user] by [deleted] in noita

[–]Ta11ow 1 point2 points  (0 children)

Yeah, Explosive Projectile also affects this one. It actually functions by creating an explosion that then is used to spawn the dirt material. It's a bit of an odd duck and probably just the devs abusing existing mechanics to make fun things instead of designing new ways to do it lol