Coil whin is unfortunately common on low end induction stoves, but medium to high end stoves usually donāt.
Coil whines usually comes from microvibrations due to the current going through the coils, but depending on the build quality it can be almost imperceptible.
Thatās not how LLMs work either.
An LLM had no knowledge, but has the statically probability of a token to follow another token, and given an overall context it create the statically most likely text.
To calculate such probability as accurently as possible you need as much examples as possible, to determine how often word A follow word B. Thus the immense datasets required.
Luckily for us programmers, computer programs are inherently statically similar, which makes LLMs quite good at it.
Now, the programs it create arenāt perfect, but it allows to write long, boring code fast, and even explain it if you require it to. This way Iāve learned a lot of new things that I wouldnāt have unless I had the time and energy to screw around with my programs (which I wished I had, but donāt), or looked around Open Source programs source code, which would take years to an average human.
Now there is the problem of the ethic use of AI, which is a whole other aspect. I use only local models, which I run on my own hardware (usually using Ollama, but Iām looking into NPU enabled alternatives).
Yeah, you can do pagination, but you need two request : one to select everything, the second to only return the results between id x and id y. Needless to say, the performances are far from ideal.
But in recent version you do skip and take x, which is far easier to write. But my codebase date back to the 2000ās, and it uses the old ways.
As an example, an SQL request to filter on an handful of parameters, and paginate, easily amount to 40-50 lines of SQL. And thatās the easy ones, because some request uses multiple view, in which case I wouldnāt be surprised to find a request doing more than 100 lines of SQL, maybe without even factoring the view in.
I work with a client using an Oracle DB. You have to do multiple request to even do something basic as pagination š.
They improved it over the years, but given the choice, Iād advice for anything else than Oracle. Iād even prefer MS Sql, which, given Iām pretty anti-MS, is a miracle.