At least my game engine, PixelPerfectEngine, is being tested on the Raspberry Pi 400, so a stronger hardware with Linux shouldn’t be an obstacle, but that engine isn’t made for that kind of spectacle if you can decode its name.
He/Him | Hu/En/some Jp | ASD | Bi | C/C++/D/C#/Java
- 2 Posts
- 23 Comments
Yes, but not many games run on ARM natively.
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Asahi Lina Pausing Work On Apple GPU Linux Driver Development167·4 months agoRemoved by mod
ZILtoid1991@lemmy.worldto Open Source@lemmy.ml•I don't know why but it pissed me off so much that they called gimp "freeware"42·4 months agoThere’s some non-freeware FOSS projects, especially in pursuit of some support. While the better ones either have an easy to use build system and/or just negwares if you download their “trial” version, projects like Ardour is a lot more involved. It has actual noise injected into the sound output, it has a convoluted build system (for which they don’t provide build manuals - after forking, you’ll find out it will also need a specific version of VS to build), and on top of that, an expensive subscription model.
ZILtoid1991@lemmy.worldto United Kingdom@feddit.uk•Jobless, isolated, fed misogynistic porn… where is the love for Britain’s lost boys?English5·4 months agoA lot of those boys turn to god, only to become even more misogynistic, and now they have the irrationality of religion in their arsenal. No need for logical arguments anymore, just scream “god said so” until you get what you wanted, also they become much harder to convince that their ways are the wrong ones.
ZILtoid1991@lemmy.worldto Open Source@lemmy.ml•Codeberg is currently suffering from hate campaigns due to far-right forces2·5 months agoDo you think one should also show acceptance of highly defamatory speech, and only punish the very people that act out on them?
ZILtoid1991@lemmy.worldto Open Source@lemmy.ml•Codeberg is currently suffering from hate campaigns due to far-right forces3·5 months agoBelieving that certain groups must be eradicated isn’t covered under my tolerance of “diverse opinions”.
ZILtoid1991@lemmy.worldto Open Source@lemmy.ml•Codeberg is currently suffering from hate campaigns due to far-right forces5·5 months agoDude, do you think a group that hates “diversity” in its every shape and form is just “moderate”?
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Asahi Linux Lead Developer Hector Martin Steps Down As Upstream Apple Silicon Maintainer12·5 months ago- Dumb culture wars around programming languages.
- It a lot different from C. In C, you have
Typeidentifier variable;
, in Rust you havelet mut variable : Typeidentifier;
, and it’s just the tip of the iceberg. - Some of its safety features (including RAII - a favorite feature of marcan) are both detrimental to the performance and hard or impossible to opt out from.
ZILtoid1991@lemmy.worldto Open Source@lemmy.ml•US Bill proposed to jail people who download Deepseek28·5 months ago> be european > deepseek gets banned > "hardfork" it to a european hosted gitlab instance > see openai and xai tears flowing again
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Debian is Ditching X (Twitter) Citing These Reasons22·5 months agoDoes Wayland has its own Mastodon instance? If yes, they could do a funny.
ZILtoid1991@lemmy.worldto Technology@lemmy.ml•An Open Source Mirrorless Camera You’d Want To Use1·9 months agoNow I need two things:
- Wait until it becomes available.
- Get my Zenit Helios lens cleaned in the inside and reassembly it correectly from my attempt at trying to get into it to clean it myself.
ZILtoid1991@lemmy.worldto Technology@lemmy.ml•Generative AI is reportedly tripling carbon dioxide emissions from data centers4·10 months agoI actually got into a fight over suggesting someone to use stock photos instead of grungy-smeary AI generated images for their (sh)articles, so at least I won’t believe it was too AI generated. Then they insisted on it being their own creation, and how they became an artist through words.
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Rust in Linux lead retires rather than deal with more “nontechnical nonsense”2·10 months agohttps://github.com/ZILtoid1991/newxml/tree/main
This XML parser of mine uses safe by default.
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Rust in Linux lead retires rather than deal with more “nontechnical nonsense”1·10 months agoPointers are not guaranteed to be safe. DIP1000 was supposed to solve the issue of a pointer referencing to a now expired variable (see example below), but it’s being replaced by something else instead.
int* p; { int q = 42; p = &q; } writeln(*p); //ERROR: This will cause memory leakage, due to q no longer existing
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Rust in Linux lead retires rather than deal with more “nontechnical nonsense”11·10 months agoD has many memory safety features. For local variables, one should use pointers, otherwise
ref
does references that are guaranteed to be valid to their lifetime, and thus have said limitations.
ZILtoid1991@lemmy.worldto Linux@lemmy.ml•Rust in Linux lead retires rather than deal with more “nontechnical nonsense”313·10 months agoThat’s why I often recommend D instead.
Has a much more C-style syntax, except much more refined from the years of hindsight. The catch? No corporate backing, didn’t jump on the “immutable by default” trend when functional programming evangelists said
for
loops are a bad practice and instead we should just write recursive functions as a workaround, memory safety is opt-in (although “safe by default” can be done by starting your files with@safe:
), some of the lead devs are “naive centrists” who want to “give everyone a chance at coding even if they’re bad people (nazis)”, implementing new changes to the lang has slowed down significantly up until the departure of Adam D Ruppe and the drama surrounding it, etc.
I personally needed the Pi for its Arm architecture.