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.
He/Him | Hu/En/some Jp | ASD | Bi | C/C++/D/C#/Java
- 42 Posts
- 1.02K Comments
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.
I think, to punish Micro$lop for its collaboration with fascists and its monopolistic behavior, the whole Windows codebase should be made public domain.
ZILtoid1991@lemmy.worldto
Technology@lemmy.world•Epstein Files: X Users Are Asking Grok to 'Unblur' Photos of ChildrenEnglish
42·2 days agoSome liberal on BlueSky tried to use genAI to unmask ICE agents.
ZILtoid1991@lemmy.worldto
Technology@lemmy.world•A “QuitGPT” campaign is urging people to cancel their ChatGPT subscriptions— Backlash against ICE is fueling a broader movement against AI companies’ ties to President Trump.English
13·2 days agoI 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(); }
ZILtoid1991@lemmy.worldto
A Boring Dystopia@lemmy.world•An ice dance duo skated to AI music at the Olympics | TechCrunch
141·3 days agoNot with that attitude.
ZILtoid1991@lemmy.worldto
A Boring Dystopia@lemmy.world•An ice dance duo skated to AI music at the Olympics | TechCrunch
9·3 days agoGo back to Xitter to post your AI slop there!
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.
Because it’s AI slop.
ZILtoid1991@lemmy.worldto
Technology@lemmy.world•CEO of Palantir Says AI Means You’ll Have to Work With Your Hands Like a PeasantEnglish
2·8 days agoAll while all the corporations tried to adapt AI are getting burned with it.
Replacing me my ass. It’s just a lot of anti-intellectualist workers are cheering on the tech, because the ruling class convinced them that the “elite” meant “person with ternary education”.
ZILtoid1991@lemmy.worldto
Technology@lemmy.world•CEO of Palantir Says AI Means You’ll Have to Work With Your Hands Like a PeasantEnglish
17·8 days agoBecause these billionaires convinced the manual workers that intellectual workers are the real problem, so now they’re cheering that the “gay office workers will finally be cured of their homosexuality through pain therapy” (I know way too many people believing “getting spoiled as a kid” or not being taught how to be a man is responsible for queerness, which includes “not being the manliest man on the earth”).
ZILtoid1991@lemmy.worldto
Technology@lemmy.world•CEO of Palantir Says AI Means You’ll Have to Work With Your Hands Like a PeasantEnglish
1·8 days agoThese people operate by the “rules for thee, not for me” rule.
Free software as in free speech vs. free software as in I acquired it for free.
ZILtoid1991@lemmy.worldto
linuxmemes@lemmy.world•What do you mean it's not $139.00 for an OS?
12·9 days agoAll while technically selling alpha versions…



It’s a plugin, and it’s disabled by default even.