What really happened with Aaron Schwartz?
You can't talk about it or you're a conspiracy theorist, and will be harassed off the internet.
Whether or not Aaron Schwartz was murdered or died of suicide from law-fare, he symbolizes a generation of coders and hackers who watched massive tech monopolies turn open-source into fauxpen-source.
He died trying to make a public free-as-in-freedom-and-beer database of research and legal records - all things paid for by tax dollars and on the public record - that other monopolies still keep behind paywalls.
Aaron Schwartz thought open source was for everyone, not just for servers.
It looks like Marak thought that conversation was more important than server tests making up endless fake people's fake emails.
If you're uncomfortable thinking about that and just want some fake people, it looks some people took Marak's work and made money off it from these backers
npm install --save-dev @faker-js/faker
Here's an example of how to use it:
import { faker } from '@faker-js/faker';
// import { faker } from '@faker-js/faker/locale/de';
export const USERS: User[] = [];
export function createRandomUser(): User {
return {
userId: faker.datatype.uuid(),
username: faker.internet.userName(),
email: faker.internet.email(),
avatar: faker.image.avatar(),
password: faker.internet.password(),
birthdate: faker.date.birthdate(),
registeredAt: faker.date.past(),
};
}
Array.from({ length: 10 }).forEach(() => {
USERS.push(createRandomUser());
});