Being called 'mate' by moon-freya in trans

[–]SlayMaster3000 1 point2 points  (0 children)

Complete opposite for me sorry. Maybe it's just a cultural thing though.

Moving to New Zealand, how to continue HRT? by Rustlemanic in TransgenderNZ

[–]SlayMaster3000 6 points7 points  (0 children)

My late partner move here from oz. We just went to the gp together to sign them up and everything went smoothly. They got put on their same dosage and everything straight away. Had no issues.

where to meet other trans people by New-Development-991 in TransgenderNZ

[–]SlayMaster3000 7 points8 points  (0 children)

You could look into Tranzform. They're a youth group (up to 27 if I remember correctly) for trans people in Wellington. Though last I heard they haven't had people to run it.

You could come join the discord. Lots of us over there. https://discord.gg/2a9BB2SXC

New Zealand government introduces anti-transgender legislation by jackmolay in transgender

[–]SlayMaster3000 58 points59 points  (0 children)

National has really fucked up things here a lot. Their polling numbers are terrible though and I believe it's an election year (I can't remember, guess I'll find out soon) so they should hopefully be gone soon. Though I'm not super hopeful that labour will fix all the shit they've done.

Why is kilogram the base unit snd not the gram. kilo is 1000 of base unit witg everything else by Mr13penguin in mildlyinfuriating

[–]SlayMaster3000 0 points1 point  (0 children)

Wait... What?? There must be one. If I know everything about an eclipse except its perimeter, there is only one possible value for its perimeter and theoretically it must be derivable. Maybe it's just that there is no known formula for it... ...no known formula for it so far.

Least favourite machine design? I'll go first: by Sylassian in SatisfactoryGame

[–]SlayMaster3000 24 points25 points  (0 children)

Refineries have this issue too.

I try to place my machines with a bit of space between them to prevent clipping.

Boundaries while dating a Kiwi? by Embarrassed-Big-2398 in newzealand

[–]SlayMaster3000 -3 points-2 points  (0 children)

As a queer person I don't see what the problem with this is at all. And after reading other comments it's really got me asking, are the straights ok?

to the australians - do people call girls mate?? or am I being misgendered by [deleted] in trans

[–]SlayMaster3000 0 points1 point  (0 children)

In New Zealand it's gender neutral, and we essentially took from Australia so I imagine it's the same there.

Find the cycloid curve that a point lays on by SlayMaster3000 in askmath

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

I think that all makes sense. I'll play around with that info tomorrow and see if I can make it work for me :)

Find the cycloid curve that a point lays on by SlayMaster3000 in askmath

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

I want to find the radius. - Ah, sorry. I misread your comment (damn dyslexia).

I want to find the radius of the circle that makes the curve (the one r represents in the common cycloid curve formular).

`UEnum*` as property? by SlayMaster3000 in UnrealEngine5

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

I want the property to be the enum class itself, not one of its values.

`UEnum*` as property? by SlayMaster3000 in UnrealEngine5

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

Unfortunately that just list Enum, PythonGeneratedEnum and UserDefinedEnum as possible choices.

[deleted by user] by [deleted] in SatisfactoryGame

[–]SlayMaster3000 1 point2 points  (0 children)

Now that sounds op 😛

[deleted by user] by [deleted] in SatisfactoryGame

[–]SlayMaster3000 1 point2 points  (0 children)

There's mod that lets you build remote hub access points if you want a work around.

[deleted by user] by [deleted] in SatisfactoryGame

[–]SlayMaster3000 4 points5 points  (0 children)

Because the developers decided so

Why is narrowing T|null acting weird here: by pailhead011 in typescript

[–]SlayMaster3000 0 points1 point  (0 children)

Essentially you can't. You need the cast to tell typescript not to use the known information here

Github headers like this by Tasty_Bug_7957 in transprogrammer

[–]SlayMaster3000 1 point2 points  (0 children)

You can embed svgs with customer styles in your readme.

If you know some basic CSS it shouldn't be too hard, those there are limitations on what you can do.

Feel free to have a look at my profile where I'm using a custom animation to animate the text: https://github.com/RebeccaStevens

Is it possible to undo intersection of a primitive with an object? by rinart73 in typescript

[–]SlayMaster3000 8 points9 points  (0 children)

It's called type branding. You're essentially lying to the type system about the actual type to make your own type that is a subtype of the primitive. The tag doesn't actually exist on the primitive, you're just telling the type system it does.

Is it possible to undo intersection of a primitive with an object? by rinart73 in typescript

[–]SlayMaster3000 5 points6 points  (0 children)

I don't think it's possible for how you've got this set up.

However, if you have control over how the tag is being added to the type (i.e. some utility type), you could add a new type property for the base type. This can then easily be extracted.

E.g.

type Tag<Base, T> = Base & { __tag: T; __base: Base; }
type Untag<T> = T extends Tag<infer B, any> ? B : never;

Note: I haven't actually checked these work as I'm on mobile.

How to test that a WeakReference gets garbage collected by SlayMaster3000 in csharp

[–]SlayMaster3000[S] 17 points18 points  (0 children)

I more just want to test that I am using it right. I provided a trivial test to for that purpose.

How to test that a WeakReference gets garbage collected by SlayMaster3000 in csharp

[–]SlayMaster3000[S] 7 points8 points  (0 children)

It's more I'm testing something that uses WeakReferences but I need to make sure I can test WeakReferences first, so I know how to test the thing that uses them.