Also Orbán etc. also could throw a hissyfit, likening the initiative to people not being able to buy Adidas shoes and Levi's jeans in the Eastern Bloc - it was due to embargo, but those who suffer from Communism Derangement Syndrome like to rewrite history and claim it was a "boycott", so you must buy that Sodastream, that wizard game, and anything else boycotted by the left, or you're literally committing Stalinist genocide!
Now I wonder if he's in the Epstein files...
I think, to punish Micro$lop for its collaboration with fascists and its monopolistic behavior, the whole Windows codebase should be made public domain.
Is this loss?
Me (the guy) and who?
Entity Component System all the things!
I might write an XML ECS parser, as a joke. Practical? No! Probably even slower than the XML DOM? Yes! Funny? Yes!
Now someone needs to make it an entity component system!
Attempt 1:
public struct Entity {
bool isDog : 1;
bool isAircraftCarrier : 1;
bool isFlea : 1;
bool canFlyInAir : 1;
ubyte opt_numOfAircrafts : 4;
int entityID;
int opt_parentID;
static Entity createDog(int entityID) {
Entity result;
result.isDog = true;
result.entityID = entityID;
return result;
}
static Entity createFlea(int entityID) {
Entity result;
result.isFlea = true;
result.canFlyInAir = true;
result.entityID = entityID;
return result;
}
void addAirCraft(ref Entity aircraft) {
if (aircraft.canFlyInAir && this.isAircraftCarrier) {
aircraft.opt_parentID = this.entityID;
this.opt_numOfAircrafts++;
}
}
void woof() {
if (isDog) {
if (isAircraftCarrier) writeln("I'm a motherfucking aircraft carrier");
else writeln("Woof!");
}
}
}
void main() {
Entity dog = Entity.createDog(1);
Entity flea = Entity.createFlea(2);
dog.woof();
dog.isAircraftCarrier = true;
dog.addAirCraft(flea);
dog.woof();
}
Because you need to infer the fuzzy boolean as a type (I personally plan to make one that works between -127 and 127, on integers instead of floats), and then write an interpreter to use the values accordingly.
Now get ready for fuzzy logic!
- -1.0 = false
- 0.0 = neutral
- 1.0 = true
Also now you know more about AI than most AI bros on the internet.
Maybe they should give up the war...
Because it's AI slop.
A very-very one-sided war. You could even call it a genocide.