Besides the bait, if the claim is that the evidence for treatment is weak (or well, "evil") a study with appropriate safeguards seems like it should be welcomed not eschewed.
In this case regretting it generally means stopping taking blockers and letting puberty progress as it would without the intervention. Puberty blockers give time to assess if further intervention is needed later (such as hormone replacement therapy)
Interesting that you apparently can’t distinguish between puberty blockers and HRT. When women use puberty blockers, it does not make them develop male traits.
What’s even more interesting is that you value Reddit as a citable source. What other valuable resources have you used to inform your opinion?
> Are you saying you believe if children use puberty blockers they will develop male traits?
They will fail to develop their respective sex-typical traits, which in turn is typical of the opposite sex.
> Are you saying you would cite Reddit as a valid source?
Is there any reason to think the Reddit report is fake? If not, it is fine for me to refer to it. Besides, you were the one asking for a reference. Do you think she should have posted this to the arxiv? You are moving the goal posts.
That’s not how puberty works. Delaying puberty doesn’t make a child develop the “opposite sex’s” puberty. A boy on puberty blockers doesn’t start growing breasts because of the blockers, and a girl doesn’t develop a deeper voice because of the blockers. Puberty blockers pause sex-hormone-driven development. They don’t replace testosterone with estrogen or vice versa. The absence of masculinization is not feminization, and the absence of feminization is not masculinization.
I’m not implying that the single Reddit post you refer to is fake. I’m stating that relying on a single Reddit post as the basis of your entire argument is factually weak.
> The absence of masculinization is not feminization, and the absence of feminization is not masculinization.
It is, to a certain degree. An man/woman who didn't develop several of their respective sex traits will automatically appear more feminine/masculine because these are polar opposites.
> And since gender transition is a lifelong process required to maintain a masculinized or feminized appearance, instances of medical detransition—reported by one study as reaching 30% within just 4 years of initiating treatment—is an alarming warning signal of high numbers of inappropriate transitions.
"The Society for Evidence-Based Gender Medicine (SEGM) is an anti-trans organization that is known for its opposition to gender-affirming care for transgender youth and for engaging in political lobbying. SEGM is known for transgender health care misinformation. It has falsely claimed that the majority of transgender children desist, argued that gender exploratory therapy should be the first line treatment for those under 25, and promoted the scientifically unsupported theory of rapid-onset gender dysphoria. SEGM is often cited in anti-transgender legislation and court cases, sometimes filing court briefs."
Dutch study (Steensma 2013) followed 127 children who were referred to the Gender Identity clinic in Amsterdam under the age of 12. The study looked to see if these children were still gender dysphoric by the time they reached adolescence at age fifteen. 37% of these children had persisted. However 64% of children had either desisted or were no longer traceable. Since there is only one Gender Identity clinic for children in Holland it can be assumed that the latter no longer required support and so had also desisted
The LaTeX source may be easily edited to impart any size/proportion desired --- not quite as straight-forward as re-sizing a browser window, but the same ultimate effect.
Not really. It's fixed at "compile time". Eg "A4" or "Letter". I guess it "changes" according to zoom level, but that's just enlarging or shrinking - no reflow required.
How long does a fast latex renderer take on a large document? It's been a few years since I worked with latex, but it's on the order of multiple seconds, right?
The Knuth-Plass line-breaking algorithm is applied per paragraph; performance is typically not going to be an issue at all.
If you apply it to all paragraphs, yes, you will get pathological performance on some extreme cases—the algorithm is quadratic, if I recall correctly. But there’s nothing preventing you from trying to apply it in general, and giving up if the input is too long. So your five or ten line paragraphs get KP, and longer paragraphs get greedy.
There is absolutely nothing stopping browsers from applying Knuth-Plass. In fact, Firefox has had a bug about implementing it for 14 years <https://bugzilla.mozilla.org/show_bug.cgi?id=630181>, and there’s some useful discussion of things there. And CSS itself is finally actually going ahead with `text-wrap: pretty`, which encourages such things. Long ago, IE apparently even had it via `text-justify: newspaper` <https://news.ycombinator.com/item?id=5189258>.
All the print books on my bookshelf use fully justified text. In contrast, my preference for ebooks are to render them as left-justified. So I think I intuitively arrived at a practice that matches your conclusion about justified text in browsers.