HackerTrans
TopNewTrendsCommentsPastAskShowJobs

xyzzy4747

no profile record

comments

xyzzy4747
·पिछला वर्ष·discuss
My point though is that if a person renders themselves unable to have offspring, especially before they have any, then from a purely biological perspective it's a form of illness. The same view would apply to all animals. If every member of a group acted the same way then the group would also die out. The functional impairment you mention includes the inability to attract a mate and reproduce. Hormones and sex reassignment surgery also severely hamper fertility.

Also trans people tend to have many other correlated mental issues and for example have high suicide attempt rates.
xyzzy4747
·पिछला वर्ष·discuss
>accuse people of being mentally ill based on their sexuality or gender identity

But the question is, are trans people actually mentally ill objectively? It certainly doesn't help them reproduce (a form of survival) from a biological perspective, for example.

This Johns Hopkins professor thinks it's mental illness:

https://www.boarddocs.com/vsba/scpsva/Board.nsf/files/B8UR4X...
xyzzy4747
·पिछला वर्ष·discuss
Yea it’s odd how so many people have become pro-censorship.
xyzzy4747
·2 वर्ष पहले·discuss
It's interesting when you have these old, large, sprawling bureaucratic organizations and the employees hardly give a sh!t anymore and allow for these large vulnerabilities. It's not a money issue, it's a caring issue I think.
xyzzy4747
·2 वर्ष पहले·discuss
"The crypto bubble is bursting" - Hacker News in 2011
xyzzy4747
·4 वर्ष पहले·discuss
xyzzy4747
·4 वर्ष पहले·discuss
If it was CPU bound and multi-threaded then wouldn’t Rust be a lot better? Since it has no runtime or garbage collection, in addition to having good built-in thread safety. Hence my original point.
xyzzy4747
·4 वर्ष पहले·discuss
But those are instances where you can use TypeScript/node.js which is less verbose than Java and has better native async support. Also easier to write tests for.

Also VSCode with Rust Analyzer works decently as an IDE.
xyzzy4747
·4 वर्ष पहले·discuss
You can do everything better in either TypeScript (for cognitively simple things) or Rust (for complex things that need to work correctly and be fast).
xyzzy4747
·4 वर्ष पहले·discuss
The difference is you need to explicitly handle cases that would cause runtime errors where you have to use .unwrap() or match selectors, which makes it safer in general. Since the values are wrapped in Result or Option enums. Code that doesn’t create these types isn’t possible to have runtime errors which reduces cognitive burden when coding.

And yes you can write non-idiomatic Rust that lets you leak memory but it doesn’t happen by accident like in C/C++.
xyzzy4747
·4 वर्ष पहले·discuss
Go is not a fast language compared to C/C++/Rust. It’s more in line with Java as it’s also garbage collected.
xyzzy4747
·4 वर्ष पहले·discuss
I think Rust is what you need. It basically won’t compile if your code would have runtime errors or memory leaks, except for cases you need to explicitly handle. The linters in VSCode also make it pretty practical to use. It’s been a joy to program in since I started about a month ago.
xyzzy4747
·4 वर्ष पहले·discuss
I’d much rather use a safe language such as Rust that has the same speed without all the worries.

Probably a harder learning curve than Odin or Go but more likely to work and also run faster (than Go at least). It also has zero cost functional programming paradigms.