(activist OR advocate) AND NOT Nazi
(activist OR advocate) AND NOT Nazi
And some more advice from Mary E. Boole (1909, p. 33) which oddly reads as highly relevant for AI today … 👀
21/🧵
We're reporting. In the meantime, reply to this post free from the guilt of me getting a notification for it
type Options = {
a?: boolean;
b?: boolean;
c?: boolean;
}
✅
type Options = Partial<{
a: boolean;
b: boolean;
c: boolean;
}>
type Options = {
a?: boolean;
b?: boolean;
c?: boolean;
}
✅
type Options = Partial<{
a: boolean;
b: boolean;
c: boolean;
}>