It’s a plugin, and it’s disabled by default even.
He/Him | Hu/En/some Jp | ASD | Bi | C/C++/D/C#/Java
It’s a plugin, and it’s disabled by default even.
It’s almost on par with VSCode nowadays, and that little loss of a few plugins worth it for the exchange of less resource usage, and not trying its best to force you to do vibe coding.
KATE does have a plugin, that allows you to use it in a similar fashion to Vi at least.
KDE also has a pretty good VSCode alternative, KATE. You can actually disable the AI agent, takes up much less resources, only thing it lacks is a DAB plugin, which I’m working on the sides.


Some yes, those whose only political view is “America bad”, and doesn’t think about the potential fallout of the US disappearing from the world.
When the Soviet Union fell apart, the USA and EU filled its place for the most part.
If the USA falls apart, get ready for traditional Chinese medicine and faux gay conversion therapies pushed by Russia to get mainstreamed by the WHO.
I can understand if someone, to reduce harm, voted (or will vote) for Kamala Harris. Sometimes I even think that would have been the obvious choice, but she and Biden didn’t do the obvious of arresting diddler Don. I cannot really think the same with Gavin Newsom.


Because if anyone remotely left did that, Trump would have sent in the National Guard.


lead
That explains the rise of the far-right.


Finally, the people’s girlboss leader!
I think, to punish Micro$lop for its collaboration with fascists and its monopolistic behavior, the whole Windows codebase should be made public domain.


Some liberal on BlueSky tried to use genAI to unmask ICE agents.


I would, if I found even a remotely good usecase for LLMs. Would be useful for contextual search on a bunch of API documentation and books on algorithms, but I don’t want a sychophantic “copilot” or “assistant”, that does job so bad I would be fired for, all while being called ableist slurs and getting blacklisted from the industry.
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();
}


Isopropyl alcohol damages certain plastics.


Idiocracy’s biggest mistake was claiming that intelligence is way more genetically heritable than it actually is.
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!
Also now you know more about AI than most AI bros on the internet.


XML isn’t that bad, it’s just it’s more suited for “markup”, than for configuration files. JSON5 outright defeats it, otherwise regular JSON is too strict and does not allow comments.
This man should be arrested, then executed for crimes against humanity and treason.