- 22 Posts
- 120 Comments
It’s the only possible interpretation left, like with
Spy multiplied by Family(Edit: Typo)
Correct. They haven’t even properly minimized their expression.
Yes it is. It’s not my daily driver but I had just been showing someone the awesome adwaita tab overview.
You can use
:terto open a new terminal buffer in nvim. The window/space management shortcuts for terminal buffers are different, so you may have to look them up.
Yes, not for real.
Apparently some people feel the “haha long hair, must be a grill” too much
I left it because
CW: Nonbinarywas listed as well, thought it may provide some value in that direction. I understand that you think the tag is pointless, should I remove it?
Yes it is. I realized the meme would be confusing because of the switching POVs only after posting it, too late. Happy it was accessible in some way though :]
Like the other commenter noted, in my experience, presenting hyper* is not necessary for this to happen.
I thought this was the correct way to tag since the community rules in the sidebar specifically request CWs for Transfem/Transmasc POVs.
Keine Auslinie-Hypertext-Auszeichnungssprache-Bearbeitung, sondern eins der zahlreichen Feuerfuchs-Stöberer Einstöpsler?
VegOwOtenks@lemmy.worldOPto
Trans@lemmy.blahaj.zone•Conflict between Gender Role Abolishment and Trans IdentityEnglish
1·1 month agoI like your notion of character archetypes that support defining oneself whilst not being the primary device to it.
Hope I got that right.
VegOwOtenks@lemmy.worldOPto
Trans@lemmy.blahaj.zone•Conflict between Gender Role Abolishment and Trans IdentityEnglish
2·1 month agoThe most important part is that this post made me, once again, realize, that the perfectionist mindset gets me nowhere.
It’s about the steps and the experience along the way.
I like reading up, have noted your recommendations and will check local libraries etc. :]
VegOwOtenks@lemmy.worldOPto
Trans@lemmy.blahaj.zone•Conflict between Gender Role Abolishment and Trans IdentityEnglish
1·1 month agoQuite an in-depth answer, more than I had hoped for.
I agree with your first point, though I feel obliged to point out that I would not have asked this question anywhere if the focus had been whether cisgender people encourage the usage of two gender stereotypes.
I think we already agree on the second point. I had hoped to bring that across with the following section:
I think these prejudices are actively harmful to non-conforming people, since they may be perceived as socially inept or weird (consider young adults/school).
My writing must’ve been to imprecise, sorry about the confusion. If you feel that I’ve misunderstood the point you made, please elaborate or try a different wording so that I may try again.
I cannot challenge your third point and will accept it on the basis that you have more experience and knowledge on the topic.
It’s always easy to clarify something after the fact (“I didn’t mean it that way”), but here I go.
It’s not my intention to vilify or blame trans people, whom you rightfully defend. I crafted this question with my mind set on the following: “If I were trans, would I be supporting gender stereotypes and/or how to avoid it”.
Not sure where you read me blaming trans people for their own mistreatment, I will probably not add clarifications to the post since it might undermine the authenticity of your response.
VegOwOtenks@lemmy.worldOPto
Trans@lemmy.blahaj.zone•Conflict between Gender Role Abolishment and Trans IdentityEnglish
3·1 month agoI’d like to thank you for sharing your pov.
I had read a little in the bible before, apparently not enough.
Great Thanks for the Link
VegOwOtenks@lemmy.worldOPto
Trans@lemmy.blahaj.zone•Conflict between Gender Role Abolishment and Trans IdentityEnglish
3·1 month agoThank you for the response.
I hope I didn’t give off the impression that I’d like to fry up trans people feeling good about themselves.
I like your pragmatic view and may just choose to adopt it.
Ah verstehe, für Datenintervalle weiß ich auch nichts vorgebautes.
Die Abkürzungen klingen praktisch, cool… und verwirrend. :]]
Abhängig von der Sprache mit Parser-Kombinatoren (megaparsec :: Haskell, nom: Rust) Paketen oder der Standardbibliothek (java DateFormat).





















Futhark + sed
Futhark can read only number and array types from stdin, the input data is often a non-starter. Therefore, I often massage it into the right format using
sed.Sed Script
This formats everything nicely, e.g. the example for part 1:
2456:rrrrrr ggGgGG bbbbBB 7689:rrRrrr ggGggg bbbBBB 3145:rrRrRr gggGgg bbbbBB 6710:rrrRRr ggGGGg bbBBbBis transformed into this:
[ [2456,0b000000,0b001011,0b000011] , [7689,0b001000,0b001000,0b000111] , [3145,0b001010,0b000100,0b000011] , [6710,0b000110,0b001110,0b001101] ]Futhark Solution
I had hoped that the input might get big enough for optimization purposes, but the calculations are likely too simple.