tech communities
no shade against applications programming or ui/ux dev but most of my nonprofessional work is extremely not that and i don’t have anyone i can say “hey check out this datatype implementation isn’t it cool” to rn
tech communities
i mean i do :—
const getDataViewBuffer =
Object.getOwnPropertyDescriptor(
DataView.prototype,
"buffer",
).get;
// later…
const buffer = Reflect.apply(
getDataViewBuffer,
myDataView,
[],
);
—: and that’s not even a weird edge case really that’s just a normal feature of the language
but i feel like most developers would look at that, say “it is not obvious to me what is happening here”, and move on rather than try learning
re: tech communities
@Lady types.pl?
tech communities
the other problem is that while i try not to make my code incomprehensible to people who are willing to learn about niche uses for edge cases in the ecmascript spec, it definitely is incomprehensible to the sort of person who has no interest in ever learning stuff like that