I guess it’s also my bad. After reading the text with a more neutral mindset it’s not that clear cut as I initially read it. My bs detector tends to get a bit sensitive when AI comes up and I interpreted the wording in the worst way possible.
I guess it’s also my bad. After reading the text with a more neutral mindset it’s not that clear cut as I initially read it. My bs detector tends to get a bit sensitive when AI comes up and I interpreted the wording in the worst way possible.
As the first AI-based mutation testing tool, Mutahunter surpasses traditional “dumb” AST-based methods. Our AI-driven approach provides a full contextual understanding of the entire codebase,
This is where I call bullshit. The AST is a precise representation of the code which should be easier to analyse and modify instead of the raw text. If you only rely on processing the text I have a hard time believing your AI has a deep understanding of the contextual interdependencies of the different parts of the code.
Edit: it kinda does use the AST if one of the preconditions is a treesitter grammar? Maybe the marketing wording is just very unfortunate?
That heavily depends on where you live though. The best answer to people objecting to that kind of work is the payroll. If you can support your family with whatever you’re doing it’s none of my business.
That’s so not how onlyfans nor deciding to become a mother works, I don’t even know how to respond to this
What exactly are the consequences relating to becoming a mother?
Yep but with the limitation that you will only ever have 4 people in one mission besides some special hubs
Oh it’s quite different! The gameplay loop is centered around PvE in a cooperative style with a handful of different modes and a ton of different maps. It does take place in space but there are also missions that feel less spacey like the planes of eidolon
Warframe! I haven’t played in a while but the art style and game in general will always have a place in my heart.
Of the ones on your list I have only played mass effect back in the xbox360 days. It was one of the first games I played. Super good memories. I might need to revisit those if my Xbox is still working
You don’t know that.
That’s not the tone I like to read even as an answer to a statement I don’t agree with. No need to get that personal.
I’m not saying nobody should work on this. There is obviously demand or at least big tech is assuming demand. I’m just saying it’s not surprising to me a lot of Foss developers don’t really care.
I think the biggest problem is that ai for now is not an exact tool that gets everything right. Because that’s just not what it is built to do. Which goes against much of the philosophy of most tools you’d find on your Linux PC.
Secondly: Many people who choose Linux or other foss operating system do so, at least partially, to stay in control over their system which includes knowing why stuff happens and being able to fix stuff. Again that is just not what AI can currently deliver and it’s unlikely it will ever do that.
So I see why people just choose to ignore the whole thing all together.
I really want to see the zygote approach worked out for electron. It’s working really well for android but with electron there are just too many different versions used by the different programs for that to make sense.
I guess but bios was a thing way before uefi and while it apparently also was a pain because people implemented it differently it did work.
Afaik the mein problem with arm is the discoverability of the hardware on the bus. For x86 it’s pretty dynamic but arm needs something called a device tree.
Especially with android I don’t get it. Every vendor has to maintain their own boot loader and modify the aosp code just to get it to boot on their devices. Is it just to avoid people slapping their own os on their phones?
I never understood why booting arm is such a pain. I mean I get that the current situation is that it is a pain but I don’t get why this is the situation.
Part of it could also be that Germany is exporting a lot of goods, so the wealth is accumulated in Germany but the profits are realized abroad, lending itself to the tax evasion. This situation is probably a result of what you described.
This point advocates against the use of mod with content in a file unless it is used for a testing module. A common pattern is to have the unit tests for a module inside the main module file. Tests in rust are just specially tagged functions. To avoid compilation costs in non-test builds and false unused code warnings you can put all test related code in a submodule and tag that module with [cfg(test)]
. That way the module will only be included and compiled if the crate is being compiled to run tests.
The Star wars thing refers to scrolling long text files similar to the intro of the starwars movies where a long text is scrolled for the viewer.
mod name
declares that the module should be compiled and reachable as a submodule of the current module. This assumes that you have a file or directory of the name in the right place. This is what you should do.
You can also declare a module like this: mod name {...}
where you just put the content in the block. The two are functionally equivalent, from the compilers perspective.
That’s hardly surprising