hardware
directory
Hello people. I'd like to highlight a small concern. My concern is that a random nutcase will descend onto this project, and make furious demands for things like a "Code of Conduct", a "safe space", banning "microaggressions" and other extremist nonsense that has nothing to do with the project itself.
I wouldn't have a problem with this if such codes didn't imply things along the lines of "power + prejudice = racism therefore, it's impossible to be racist to white people"
And yes, certain people use this to give themselves free license to treat people like garbage just because they're either white or male.
No, I'm not kidding, these things exist and they're ridiculous, but the threat of being attacked in our own jobs, being fired, etc is very real, look at what happened to the biologist Tim Hunt or the Philae Lander Guy a.k.a Shirtstorm (god that was stupid... all that outrage over a shirt)
I was wondering if it might be a good idea, as unlikely as it might be to happen (it seems to be happening at random), to pre-empt any kind of politicking or rubbish like that with a "code of merit" instead?
This one was written as an alternative to codes of conduct: https://github.com/rosarior/Code-of-Merit
I just really like this project, I don't want to see it destroyed by ideologues, sorry if my concern is misplaced or unwanted.
// Check if a client has connected
WiFiClient client = server.available();
if (!client) {
return(20);
}
Serial.println("");
Serial.println("New client");
// Wait for data from client to become available
while(client.connected() && !client.available()){
delay(1);
}
Also if you have
MDNSResponder mdns;
This needs to be removed.